@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --navy: #003087;
  --navy-dk: #001f5b;
  --navy-lt: #0044b3;
  --red: #CC0000;
  --red-lt: #e60000;
  --green: #16a34a;
  --green-lt: #22c55e;
  --white: #FFFFFF;
  --grey-100: #F5F5F5;
  --grey-200: #EBEBEB;
  --grey-400: #AAAAAA;
  --grey-600: #666666;
  --grey-800: #333333;
  --text: #222222;
  --f: 'Poppins', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --max: 1200px;
  --pad: clamp(16px, 4vw, 40px);
  --sh-sm: 0 2px 8px rgba(0, 0, 0, .10);
  --sh-md: 0 4px 20px rgba(0, 0, 0, .13);
  --sh-lg: 0 8px 40px rgba(0, 0, 0, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--f);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img,
svg,
video,
iframe {
  max-width: 100%;
  display: block
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

ul,
ol {
  list-style: none
}

::selection {
  background: var(--navy);
  color: #fff
}

.aps-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.aps-section {
  padding: 72px 0
}

.aps-section-sm {
  padding: 48px 0
}

.aps-bg-white {
  background: var(--white)
}

.aps-bg-grey {
  background: var(--grey-100)
}

.aps-bg-navy {
  background: var(--navy)
}

/* TOP BAR */
.aps-topbar {
  background: var(--navy-dk);
  padding: 7px 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .75)
}

.aps-topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.aps-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px
}

.aps-topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px
}

.aps-topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px
}

.aps-topbar-socials a {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  transition: color .2s;
  display: flex
}

.aps-topbar-socials a:hover {
  color: #fff
}

@media(max-width:600px) {
  .aps-topbar-inner {
    justify-content: center
  }
  .aps-topbar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px
  }
}

/* HEADER */
#aps-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: box-shadow .3s
}

#aps-header.scrolled {
  box-shadow: var(--sh-md)
}

.aps-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.aps-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.aps-logo img {
  height: 48px;
  width: auto
}

.aps-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.aps-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em
}

.aps-logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-400)
}

.aps-nav {
  display: flex;
  align-items: center;
  gap: 0
}

.aps-nav>li {
  position: relative
}

.aps-nav>li>a {
  display: block;
  padding: 0 14px;
  height: 78px;
  line-height: 78px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-800);
  white-space: nowrap;
  transition: color .2s, background .2s;
  border-bottom: 3px solid transparent;
  position: relative
}

.aps-nav>li>a:hover,
.aps-nav>li.active>a {
  color: var(--navy);
  border-bottom-color: var(--red);
  background: rgba(0, 48, 135, .03)
}

.aps-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--sh-lg);
  min-width: 220px;
  border-top: 3px solid var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .22s var(--ease);
  z-index: 200
}

.aps-nav>li:hover .aps-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.aps-dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey-800);
  border-left: 3px solid transparent;
  transition: all .18s
}

.aps-dropdown li a:hover {
  color: var(--navy);
  background: var(--grey-100);
  border-left-color: var(--red);
  padding-left: 24px
}

.aps-nav-cta>a {
  background: var(--green) !important;
  color: var(--white) !important;
  border-bottom: none !important;
  margin-left: 10px;
  padding: 0 20px !important;
  height: 40px !important;
  line-height: 40px !important;
  align-self: center;
  display: block;
  border-radius: 2px;
  transition: background .2s !important
}

.aps-nav-cta>a:hover {
  background: var(--green-lt) !important
}

.aps-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 0;
  flex-shrink: 0
}

.aps-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s var(--ease)
}

.aps-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.aps-toggle.open span:nth-child(2) {
  opacity: 0
}

.aps-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.aps-mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 0 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 998;
  border-top: 1px solid var(--grey-200);
  box-shadow: var(--sh-lg)
}

.aps-mobile-nav.open {
  display: block
}

.aps-mobile-nav>ul>li {
  border-bottom: 1px solid var(--grey-200)
}

.aps-mobile-nav>ul>li>a {
  display: block;
  padding: 16px var(--pad);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--grey-800)
}

.aps-mobile-nav>ul>li>a:hover {
  color: var(--navy);
  background: var(--grey-100)
}

.aps-mobile-sub {
  background: var(--grey-100)
}

.aps-mobile-sub li a {
  display: block;
  padding: 11px calc(var(--pad) + 16px);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey-600);
  border-left: 3px solid transparent
}

.aps-mobile-sub li a:hover {
  color: var(--navy);
  border-left-color: var(--red);
  background: var(--grey-200)
}

@media(max-width:1024px) {
  .aps-nav {
    display: none
  }

  .aps-toggle {
    display: flex
  }
}

@media(max-width:480px) {
  .aps-logo img {
    height: 38px
  }

  .aps-logo-name {
    font-size: .88rem
  }

  .aps-logo-sub {
    display: none
  }

  .aps-header-inner {
    height: 66px
  }

  .aps-mobile-nav {
    inset: 66px 0 0
  }
}

/* HERO SLIDER */
.aps-hero {
  position: relative;
  background: var(--navy-dk);
  overflow: hidden;
  height: calc(100vh - 78px);
  min-height: 480px;
  max-height: 780px
}

.aps-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease)
}

.aps-slide.active {
  opacity: 1;
  z-index: 1
}

.aps-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.9);
  transform: scale(1.05);
  transition: transform 7s var(--ease)
}

.aps-slide.active .aps-slide-bg {
  transform: scale(1)
}

.aps-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 31, 91, .8) 0%, rgba(0, 31, 91, .3) 60%, rgba(0, 31, 91, .1) 100%);
  z-index: 1
}

.aps-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  max-width: calc(var(--max) + var(--pad)*2);
  margin: 0 auto;
  left: 0;
  right: 0
}

.aps-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.aps-slide.active .aps-slide-tag {
  opacity: 1;
  transform: translateY(0)
}

.aps-slide-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red)
}

.aps-slide-h {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .12s var(--ease), transform .7s .12s var(--ease)
}

.aps-slide.active .aps-slide-h {
  opacity: 1;
  transform: translateY(0)
}

.aps-slide-sub {
  font-size: clamp(.85rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s .24s var(--ease), transform .7s .24s var(--ease)
}

.aps-slide.active .aps-slide-sub {
  opacity: 1;
  transform: translateY(0)
}

.aps-slide-btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s .36s var(--ease), transform .7s .36s var(--ease)
}

.aps-slide.active .aps-slide-btns {
  opacity: 1;
  transform: translateY(0)
}

.aps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--f);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .22s;
  border: none;
  text-decoration: none
}

.aps-btn-primary {
  background: var(--red);
  color: var(--white)
}

.aps-btn-primary:hover {
  background: var(--red-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, .35)
}

a[href="contact.html"].aps-btn-primary {
  background: var(--green);
  color: var(--white)
}

a[href="contact.html"].aps-btn-primary:hover {
  background: var(--green-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, .35)
}

.aps-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7)
}

.aps-btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px)
}

.aps-btn-navy {
  background: var(--navy);
  color: var(--white)
}

.aps-btn-navy:hover {
  background: var(--navy-lt);
  color: var(--white);
  transform: translateY(-2px)
}

.aps-btn svg {
  transition: transform .2s
}

.aps-btn:hover svg {
  transform: translateX(4px)
}

.aps-hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px
}

.aps-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: 2px solid rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .25s;
  padding: 0
}

.aps-hero-dot.active {
  background: var(--red);
  border-color: var(--red);
  width: 28px;
  border-radius: 5px
}

.aps-hero-arrows {
  position: absolute;
  bottom: 20px;
  right: var(--pad);
  z-index: 10;
  display: flex;
  gap: 6px
}

.aps-hero-arr {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s
}

.aps-hero-arr:hover {
  background: var(--red);
  border-color: var(--red)
}

@media(max-width:900px) {
  .aps-hero {
    height: 75vh;
    max-height: none
  }

  .aps-slide-sub {
    display: none
  }

  .aps-slide-h {
    font-size: clamp(1.5rem, 6vw, 2.4rem)
  }
}

@media(max-width:600px) {
  .aps-hero {
    height: 65vh;
    min-height: 360px
  }

  .aps-slide-content {
    padding: 0 16px
  }

  .aps-slide-tag {
    font-size: 10px
  }

  .aps-slide-h {
    font-size: clamp(1.25rem, 7vw, 1.9rem);
    max-width: 100%
  }

  .aps-slide-btns {
    gap: 8px
  }

  .aps-btn {
    padding: 11px 20px;
    font-size: 11.5px
  }

  .aps-hero-arrows {
    display: none
  }
}

@media(max-width:480px) {
  .aps-hero {
    height: 60vh
  }

  .aps-hero-dots {
    bottom: 16px
  }
}

/* SERVICE ICON BAR */
.aps-services-bar {
  background: var(--navy);
  position: relative;
  z-index: 5
}

.aps-services-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.aps-service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 12px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  transition: background .22s;
  text-align: center;
  cursor: pointer
}

.aps-service-icon:last-child {
  border-right: none
}

.aps-service-icon:hover {
  background: rgba(255, 255, 255, .08)
}

.aps-si-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, .8);
  transition: transform .25s
}

.aps-service-icon:hover .aps-si-icon {
  transform: scale(1.1)
}

.aps-si-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  line-height: 1.3
}

@media(max-width:640px) {
  .aps-service-icon {
    padding: 16px 6px;
    gap: 6px
  }

  .aps-si-icon {
    width: 30px;
    height: 30px;
    font-size: 17px
  }

  .aps-si-label {
    font-size: 8.5px;
    letter-spacing: .02em
  }
}

@media(max-width:400px) {
  .aps-si-label {
    display: none
  }

  .aps-service-icon {
    padding: 14px 4px
  }
}

/* SECTION HEADINGS */
.aps-section-head {
  margin-bottom: 48px
}

.aps-section-head--center {
  text-align: center
}

.aps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px
}

.aps-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red)
}

.aps-h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em
}

.aps-lead {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--grey-600);
  margin-top: 14px
}

.aps-underline {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 14px 0 0;
  display: block
}

.aps-section-head--center .aps-underline {
  margin: 14px auto 0
}

/* SPLIT CONTENT */
.aps-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.aps-split--rev {
  direction: rtl
}

.aps-split--rev>* {
  direction: ltr
}

.aps-split-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--sh-lg)
}

.aps-split-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease)
}

.aps-split-img:hover img {
  transform: scale(1.04)
}

.aps-split-img-badge {
  position: absolute;
  bottom: 24px;
  right: -1px;
  background: var(--red);
  color: var(--white);
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3
}

.aps-split-img-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em
}

.aps-split-body p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 14px
}

.aps-split-body p:last-of-type {
  margin-bottom: 24px
}

@media(max-width:900px) {
  .aps-split {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .aps-split--rev {
    direction: ltr
  }

  .aps-split-img img {
    height: 280px
  }
}

@media(max-width:480px) {
  .aps-split-img img {
    height: 220px
  }
}

/* STATS ROW */
.aps-stats-row {
  background: var(--navy);
  padding: 52px 0
}

.aps-stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.aps-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.aps-stat:last-child {
  border-right: none
}

.aps-stat-n {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  letter-spacing: -.03em
}

.aps-stat-n span {
  color: var(--red)
}

.aps-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 8px;
  display: block;
  line-height: 1.4
}

@media(max-width:760px) {
  .aps-stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .aps-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 24px
  }

  .aps-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .12)
  }

  .aps-stat:last-child,
  .aps-stat:nth-last-child(2) {
    border-bottom: none
  }
}

@media(max-width:400px) {
  .aps-stat {
    padding: 18px 12px
  }

  .aps-stat-n {
    font-size: 1.8rem
  }
}

/* SERVICE CARDS */
.aps-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.aps-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .28s var(--ease);
  display: flex;
  flex-direction: column
}

.aps-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--navy)
}

.aps-card-img {
  aspect-ratio: 4/3;
  overflow: hidden
}

.aps-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease)
}

.aps-card:hover .aps-card-img img {
  transform: scale(1.06)
}

.aps-card-body {
  padding: 22px 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.aps-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px
}

.aps-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px
}

.aps-card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey-600);
  flex: 1;
  margin-bottom: 16px
}

.aps-card-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s
}

.aps-card-link:hover {
  color: var(--red);
  gap: 10px
}

@media(max-width:1000px) {
  .aps-cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:580px) {
  .aps-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

/* NEWS CARDS */
.aps-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.aps-news-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .28s var(--ease);
  display: flex;
  flex-direction: column
}

.aps-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg)
}

.aps-news-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative
}

.aps-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s
}

.aps-news-card:hover .aps-news-img img {
  transform: scale(1.05)
}

.aps-news-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px
}

.aps-news-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.aps-news-date {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: .06em;
  margin-bottom: 8px;
  text-transform: uppercase
}

.aps-news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
  transition: color .2s
}

.aps-news-card:hover .aps-news-title {
  color: var(--red)
}

.aps-news-excerpt {
  font-size: 12.5px;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 16px
}

.aps-news-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s
}

.aps-news-link:hover {
  color: var(--red);
  gap: 10px
}

@media(max-width:900px) {
  .aps-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }
}

@media(max-width:560px) {
  .aps-news-grid {
    grid-template-columns: 1fr
  }
}

/* PARTNERS */
.aps-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200)
}

.aps-partner {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.aps-partner:hover {
  background: var(--grey-100)
}

.aps-partner img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .3s
}

.aps-partner:hover img {
  filter: grayscale(0) opacity(1)
}

@media(max-width:760px) {
  .aps-partners-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:400px) {
  .aps-partner {
    padding: 22px 16px
  }

  .aps-partner img {
    max-width: 100px;
    max-height: 44px
  }
}

/* TEAM */
.aps-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.aps-team-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .28s;
  text-align: center
}

.aps-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg)
}

.aps-team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--grey-100)
}

.aps-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .45s;
  filter: saturate(.9)
}

.aps-team-card:hover .aps-team-photo img {
  transform: scale(1.05)
}

.aps-team-initials {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--grey-400);
  background: var(--grey-100)
}

.aps-team-info {
  padding: 18px 16px 22px;
  border-top: 3px solid var(--navy)
}

.aps-team-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.aps-team-role {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.4
}

.aps-team-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px
}

.aps-team-badge--navy {
  background: var(--navy)
}

@media(max-width:1000px) {
  .aps-team-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:720px) {
  .aps-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }
}

@media(max-width:420px) {
  .aps-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }
}

/* VALUES */
.aps-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.aps-value-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  border-top: 4px solid var(--navy);
  transition: all .25s
}

.aps-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-top-color: var(--red)
}

.aps-value-icon {
  width: 52px;
  height: 52px;
  background: var(--grey-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--navy);
  transition: background .25s
}

.aps-value-card:hover .aps-value-icon {
  background: var(--navy);
  color: var(--white)
}

.aps-value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.aps-value-desc {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.7
}

@media(max-width:900px) {
  .aps-values-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .aps-values-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

/* TIMELINE */
.aps-timeline {
  position: relative;
  padding-left: 36px
}

.aps-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--grey-200)
}

.aps-tl-item {
  position: relative;
  padding: 0 0 36px 28px
}

.aps-tl-item:last-child {
  padding-bottom: 0
}

.aps-tl-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--grey-200);
  transition: border-color .25s, background .25s
}

.aps-tl-item:hover::before {
  border-color: var(--red);
  background: var(--red)
}

.aps-tl-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px
}

.aps-tl-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.aps-tl-text {
  font-size: 13.5px;
  color: var(--grey-600);
  line-height: 1.75
}

@media(max-width:600px) {
  .aps-timeline {
    padding-left: 24px
  }

  .aps-tl-item {
    padding-left: 20px
  }

  .aps-tl-item::before {
    left: -24px;
    width: 12px;
    height: 12px
  }
}

/* CONTACT */
.aps-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start
}

.aps-contact-info-card {
  background: var(--navy);
  padding: 40px 36px;
  border-radius: 4px;
  color: var(--white)
}

.aps-contact-info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.aps-contact-info-card>p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 28px
}

.aps-contact-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: flex-start
}

.aps-contact-item:first-of-type {
  padding-top: 0
}

.aps-contact-item:last-of-type {
  border-bottom: none
}

.aps-contact-ic {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0
}

.aps-contact-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 3px
}

.aps-contact-val {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5
}

.aps-contact-val a {
  color: inherit
}

.aps-contact-val a:hover {
  color: var(--white);
  text-decoration: underline
}

.aps-form-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 40px 36px;
  box-shadow: var(--sh-sm)
}

.aps-form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.aps-form-card>p {
  font-size: 13.5px;
  color: var(--grey-600);
  margin-bottom: 24px
}

.aps-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.aps-form-group {
  margin-bottom: 16px
}

.aps-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 8px
}

.aps-form-group input,
.aps-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: 3px;
  font-family: var(--f);
  font-size: 13.5px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.aps-form-group input:focus,
.aps-form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 48, 135, .08)
}

.aps-form-group textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.6
}

.aps-form-msg {
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
  margin-bottom: 12px
}

@media(max-width:900px) {
  .aps-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media(max-width:560px) {
  .aps-form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .aps-contact-info-card {
    padding: 28px 22px
  }

  .aps-form-card {
    padding: 28px 22px
  }
}

/* MAP */
.aps-map {
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  height: 380px
}

.aps-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none
}

@media(max-width:760px) {
  .aps-map {
    height: 260px
  }
}

@media(max-width:480px) {
  .aps-map {
    height: 220px
  }
}

/* ORG CHART */
.aps-org {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 32px;
  overflow-x: auto;
  box-shadow: var(--sh-sm)
}

.aps-org img {
  max-width: 100%;
  height: auto;
  margin: 0 auto
}

@media(max-width:600px) {
  .aps-org {
    padding: 16px
  }
}

/* PAGE HERO */
.aps-page-hero {
  position: relative;
  background: var(--navy-dk);
  padding: 80px 0 56px;
  overflow: hidden
}

.aps-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.25) saturate(.6)
}

.aps-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 31, 91, .85) 0%, rgba(0, 31, 91, .4) 100%)
}

.aps-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.aps-page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-top: 10px
}

.aps-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45)
}

.aps-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s
}

.aps-breadcrumb a:hover {
  color: var(--white)
}

.aps-breadcrumb .sep {
  color: rgba(255, 255, 255, .25)
}

.aps-breadcrumb .cur {
  color: rgba(255, 255, 255, .85)
}

@media(max-width:760px) {
  .aps-page-hero {
    padding: 64px 0 44px
  }

  .aps-page-hero h1 {
    font-size: clamp(1.4rem, 6vw, 2rem)
  }
}

@media(max-width:480px) {
  .aps-page-hero {
    padding: 52px 0 36px
  }

  .aps-page-hero h1 {
    font-size: clamp(1.2rem, 7vw, 1.6rem)
  }
}

/* BLOG DETAIL */
.aps-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start
}

.aps-article {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-sm)
}

.aps-article-cover {
  aspect-ratio: 16/8;
  overflow: hidden
}

.aps-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.aps-article-body {
  padding: 36px
}

.aps-article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-200)
}

.aps-article-meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 6px
}

.aps-article-h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px
}

.aps-article-p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 16px
}

.aps-article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  background: var(--grey-100);
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  border-radius: 0 4px 4px 0
}

.aps-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-bottom: 24px
}

.aps-sidebar-head {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}

.aps-sidebar-post {
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200)
}

.aps-sidebar-post:last-child {
  border-bottom: none
}

.aps-sidebar-post a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: block;
  transition: color .2s
}

.aps-sidebar-post a:hover {
  color: var(--red)
}

.aps-sidebar-post time {
  display: block;
  font-size: 10px;
  color: var(--grey-400);
  margin-top: 3px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.aps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 18px
}

.aps-tag {
  padding: 5px 12px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-600);
  transition: all .2s
}

.aps-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white)
}

@media(max-width:900px) {
  .aps-detail-layout {
    grid-template-columns: 1fr
  }

  .aps-article-body {
    padding: 24px
  }
}

@media(max-width:480px) {
  .aps-article-body {
    padding: 18px
  }

  .aps-article-h1 {
    font-size: 1.2rem
  }
}

/* AWARD */
.aps-award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px
}

.aps-award-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .28s;
  display: flex;
  flex-direction: column
}

.aps-award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--navy)
}

.aps-award-media {
  aspect-ratio: 4/3;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden
}

.aps-award-media img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 2px
}

.aps-award-body {
  padding: 20px 20px 24px;
  border-top: 3px solid var(--red);
  flex: 1
}

.aps-award-year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px
}

.aps-award-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px
}

.aps-award-desc {
  font-size: 12.5px;
  color: var(--grey-600);
  line-height: 1.7
}

/* CTA BAND */
.aps-cta {
  background: var(--navy);
  padding: 64px 0
}

.aps-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.aps-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25
}

.aps-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 24px
}

@media(max-width:760px) {
  .aps-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .aps-cta {
    padding: 48px 0
  }
}

/* FOOTER */
.aps-footer {
  background: var(--navy-dk);
  color: rgba(255, 255, 255, .7)
}

.aps-footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.aps-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.aps-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.aps-footer-logo img {
  height: 40px;
  width: auto
}

.aps-footer-logo-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white)
}

.aps-footer-tagline {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px
}

.aps-footer-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  max-width: 280px
}

.aps-footer-socials {
  display: flex;
  gap: 6px;
  margin-top: 20px
}

.aps-footer-social {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  transition: all .2s
}

.aps-footer-social:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white)
}

.aps-footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.aps-footer-col ul li {
  margin-bottom: 8px
}

.aps-footer-col ul li a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  transition: color .2s
}

.aps-footer-col ul li a:hover {
  color: rgba(255, 255, 255, .9)
}

.aps-footer-recent li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.aps-footer-recent li:last-child {
  border-bottom: none
}

.aps-footer-recent .date {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 3px
}

.aps-footer-recent a {
  font-size: 12px !important;
  line-height: 1.4
}

.aps-footer-bottom {
  padding: 18px 0
}

.aps-footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .3)
}

.aps-footer-bottom-inner strong {
  color: rgba(255, 255, 255, .55)
}

@media(max-width:960px) {
  .aps-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:560px) {
  .aps-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .aps-footer-desc {
    max-width: 100%
  }

  .aps-footer-bottom-inner {
    flex-direction: column;
    text-align: center
  }
}

/* MISC */
#aps-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  z-index: 500;
  text-decoration: none;
  box-shadow: var(--sh-md)
}

#aps-scroll-top.visible {
  opacity: 1;
  pointer-events: auto
}

#aps-scroll-top:hover {
  background: var(--red);
  transform: translateY(-3px)
}

#aps-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s, visibility .5s
}

#aps-preloader.done {
  opacity: 0;
  visibility: hidden
}

.aps-preloader-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  animation: apPulse 1.3s ease-in-out infinite
}

.aps-preloader-logo::before {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  background: url('../img/logo1.png') center/contain no-repeat;
}

.aps-preloader-logo span {
  color: var(--navy);
}

@keyframes apPulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

.aps-preloader-bar {
  width: 120px;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto
}

.aps-preloader-fill {
  height: 100%;
  background: var(--red);
  animation: apLoad 1.1s ease forwards
}

@keyframes apLoad {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

#aps-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  transition: width .08s linear
}

.aps-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform
}

.aps-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

@supports(padding:max(0px)) {

  .aps-header-inner,
  .aps-wrap,
  .aps-footer-grid,
  .aps-footer-bottom-inner,
  .aps-cta-inner,
  .aps-stats-inner {
    padding-left: max(var(--pad), env(safe-area-inset-left));
    padding-right: max(var(--pad), env(safe-area-inset-right))
  }

  .aps-mobile-nav {
    padding-bottom: max(24px, env(safe-area-inset-bottom))
  }

  #aps-header {
    top: env(safe-area-inset-top, 0px)
  }

  #aps-header::before {
    content: "";
    position: absolute;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background: var(--white)
  }

  .aps-topbar {
    padding-top: calc(7px + env(safe-area-inset-top, 0px))
  }
}

@media(hover:none) {

  .aps-card:hover,
  .aps-news-card:hover,
  .aps-team-card:hover,
  .aps-award-card:hover,
  .aps-value-card:hover {
    transform: none
  }

  .aps-partner:hover img {
    filter: grayscale(0) opacity(1)
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }
}

@media print {

  #aps-header,
  .aps-footer,
  #aps-scroll-top,
  #aps-preloader,
  #aps-progress,
  .aps-services-bar,
  .aps-hero-arrows {
    display: none !important
  }
}