/* ================================
   VARIABLES
================================ */

:root {
  --blue: #005bbb;
  --dark-blue: #003d58;
  --teal: #007b80;
  --purple: #4b006e;
  --purple-dark: #470a68;
  --text: #05051f;
  --muted: #555;
  --footer-line: linear-gradient(90deg, #4b006e, #005bbb);
}

/* ================================
   RESET / GLOBAL
================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: var(--purple-dark);
  font-weight: 700;
}

/* ================================
   NOTICE BAR
================================ */

.notice {
  min-height: 126px;
  background: linear-gradient(90deg, #003d58, #005bbb);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 15px;
}

.notice h1 {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 500;
}

/* ================================
   BUTTONS
================================ */

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 33px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: .80rem;
  font-weight: 650;
}

/* ================================
   HERO
================================ */

.hero {
  height: 535px;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-bg::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 600px;
  margin-left: 14%;
  padding-top: 130px;
  color: #fff;
}

.hero h2 {
  font-size: 53px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 95px;
}

/* ================================
   CAPABILITIES
================================ */

.capabilities {
  padding: 76px 24px 86px;
  background: #fff;
}

.capabilities-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.capabilities h2 {
  color: var(--blue);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 34px;
}

.capabilities-subtitle {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 35px;
}

.capability-row {
  display: grid;
  gap: 15px;
  margin: 0 0 48px;
}

.capability-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 20px;
}

.capability-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.capability-item p {
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

/* ================================
   PARTNER SECTION
================================ */

.partner {
  position: relative;
  display: grid;
  grid-template-columns: 50.5% 49.5%;
  min-height: 680px;
  overflow: hidden;
  background: #fff;
}

.partner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 390px;
  background: #e6e6e6;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 0;
}

.partner-text {
  position: relative;
  z-index: 1;
  padding: 106px 44px 120px 142px;
}

.partner-text h2 {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 30px;
  max-width: 650px;
  color: #25272d;
}

.partner-underline {
  display: inline;
  background-image: linear-gradient(
    90deg,
    #00a8e8 0%,
    #00a8e8 62%,
    rgba(0, 168, 232, 0.18) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 86%;
}

.partner-text ul {
  margin: 0 0 34px;
  padding-left: 27px;
}

.partner-text li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 11px;
}

.partner-text li::marker {
  font-size: 18px;
}

.partner-image {
  position: relative;
  z-index: 1;
  height: 560px;
  margin-top: 55px;
  background-image: url("../../images/Home/HomePartnering.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 6px solid #00a8e8;
  opacity: 0;
  transform: translateX(90px);
}

.partner.is-visible .partner-image {
  animation: partnerImageIn 900ms ease-out both;
}

@keyframes partnerImageIn {
  from {
    opacity: 0;
    transform: translateX(90px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================
   GSA SECTION
================================ */

.gsa {
  padding: 100px 24px 50px;
}

.gsa-inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.gsa h2 {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  color: #0057b8;
  margin: 0 0 46px;
}

.gsa p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.gsa ul {
  padding-left: 22px;
  margin: 0 0 30px;
}

.gsa li {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.gsa li::marker {
  color: var(--purple);
}

.button-row {
  display: flex;
  gap: 28px;
  margin-top: 40px;
}

/* ================================
  COLLABORATION SECTION
================================ */
.collaboration {
 padding: 95px 24px 80px;
 overflow: hidden;
}
.collab-inner {
 width: min(100%, 900px);
 margin: 0 auto;
}
.collaboration h2 {
 color: var(--blue);
 font-size: 43px;
 line-height: 1.18;
 font-weight: 400;
 margin: 0 0 28px;
}
.collaboration p {
 max-width: 720px;
 font-size: 15px;
 line-height: 1.55;
 margin: 0 0 70px;
}
.collaboration a {
 color: var(--blue);
}
.collab-graphic {
 min-height: 700px;
 display: grid;
 place-items: center;
 overflow: visible;
}
.collab-circle {
 width: 350px;
 height: 350px;
 position: relative;
 display: grid;
 place-items: center;
}
.collab-center-image {
 width: 350px;
 height: 350px;
 object-fit: contain;
 display: block;
 position: relative;
 z-index: 1;
}
.collab-bubble {
 position: absolute;
 z-index: 2;
 width: 215px;
 height: 215px;
 display: grid;
 place-items: center;
 opacity: 0;
 transition:
   opacity 700ms ease,
   transform 850ms cubic-bezier(.22, 1, .36, 1);
}
.collab-bubble > img {
 width: 215px;
 height: 215px;
 object-fit: contain;
 display: block;
}
.bubble-top {
 --start-x: 0px;
 --start-y: -90px;
 top: -180px;
 left: 50%;
 transform: translateX(-50%) translate(var(--start-x), var(--start-y));
}
.bubble-left {
 --start-x: -100px;
 --start-y: -40px;
 left: -145px;
 top: -10px;
 transform: translate(var(--start-x), var(--start-y));
}
.bubble-right {
 --start-x: 100px;
 --start-y: -40px;
 right: -150px;
 top: -10px;
 transform: translate(var(--start-x), var(--start-y));
}
.bubble-bottom-left {
 --start-x: -80px;
 --start-y: 90px;
 left: -75px;
 bottom: -130px;
 transform: translate(var(--start-x), var(--start-y));
}
.bubble-bottom-right {
 --start-x: 80px;
 --start-y: 90px;
 right: -70px;
 bottom: -130px;
 transform: translate(var(--start-x), var(--start-y));
}
.collaboration.is-visible .collab-bubble {
 opacity: 1;
}
.collaboration.is-visible .bubble-top {
 transform: translateX(-50%) translate(0, 0);
 transition-delay: 80ms;
}
.collaboration.is-visible .bubble-left {
 transform: translate(0, 0);
 transition-delay: 160ms;
}
.collaboration.is-visible .bubble-right {
 transform: translate(0, 0);
 transition-delay: 240ms;
}
.collaboration.is-visible .bubble-bottom-left {
 transform: translate(0, 0);
 transition-delay: 320ms;
}
.collaboration.is-visible .bubble-bottom-right {
 transform: translate(0, 0);
 transition-delay: 400ms;
}
.hover-card {
 position: absolute;
 left: 50%;
 top: 50%;
 width: 175px;
 height: 175px;
 transform: translate(-50%, -50%) scale(.9);
 border-radius: 50%;
 background: #063d59;
 border: 2px solid #0a9876;
 color: #fff;
 padding: 30px 22px;
 font-size: 12px;
 line-height: 1.35;
 opacity: 0;
 visibility: hidden;
 transition:
   opacity .25s ease,
   transform .25s ease,
   visibility .25s ease;
 z-index: 5;
}
.collab-bubble:hover .hover-card {
 opacity: 1;
 visibility: visible;
 transform: translate(-50%, -50%) scale(1);
}
/* ================================
   RESPONSIVE: TABLET / MOBILE
================================ */

@media (max-width: 900px) {
  .notice h1 {
    font-size: 25px;
  }

.hero {
  height: 380px;
}

.hero-content {
  width: auto;
  max-width: 55%;
  margin-left: 5%;
  padding-top: 80px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 28px;
}

  .capability-row {
    grid-template-columns: 1fr 1fr;
  }

  .partner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .partner-text {
    padding: 60px 28px 80px;
  }

  .partner-text h2,
  .capabilities h2,
  .gsa h2,
  .collaboration h2 {
    font-size: 34px;
  }

  .partner-image {
    height: 330px;
    margin-top: 0;
  }

  .gsa {
    padding: 80px 28px;
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

   .collaboration {
   padding: 60px 24px 70px;
 }
 .collab-inner {
   width: 100%;
   max-width: 420px;
   margin: 0 auto;
 }
 .collaboration h2 {
   font-size: 34px;
   line-height: 1.18;
   margin-bottom: 24px;
 }
 .collaboration p {
   font-size: 14px;
   line-height: 1.5;
   margin-bottom: 72px;
 }
 .collab-graphic {
   min-height: 560px;
 }
 .collab-circle,
 .collab-center-image {
   width: 240px;
   height: 240px;
 }
 .collab-bubble,
 .collab-bubble > img {
   width: 135px;
   height: 135px;
 }
 .bubble-top {
   --start-x: 0px;
   --start-y: -60px;
   top: -118px;
   left: 50%;
   transform: translateX(-50%) translate(var(--start-x), var(--start-y));
 }
 .bubble-left {
   --start-x: -60px;
   --start-y: -25px;
   left: -92px;
   top: -2px;
   transform: translate(var(--start-x), var(--start-y));
 }
 .bubble-right {
   --start-x: 60px;
   --start-y: -25px;
   right: -92px;
   top: -2px;
   transform: translate(var(--start-x), var(--start-y));
 }
 .bubble-bottom-left {
   --start-x: -45px;
   --start-y: 60px;
   left: -48px;
   bottom: -96px;
   transform: translate(var(--start-x), var(--start-y));
 }
 .bubble-bottom-right {
   --start-x: 45px;
   --start-y: 60px;
   right: -48px;
   bottom: -96px;
   transform: translate(var(--start-x), var(--start-y));
 }
 .collaboration.is-visible .bubble-top {
   transform: translateX(-50%) translate(0, 0);
 }
 .collaboration.is-visible .bubble-left,
 .collaboration.is-visible .bubble-right,
 .collaboration.is-visible .bubble-bottom-left,
 .collaboration.is-visible .bubble-bottom-right {
   transform: translate(0, 0);
 }
 .hover-card {
   width: 130px;
   height: 130px;
   padding: 24px 18px;
   font-size: 10px;
   line-height: 1.3;
 }
}

/* ================================
   RESPONSIVE: SMALL MOBILE
================================ */

@media (max-width: 560px) {
  .brand strong {
    font-size: 23px;
  }

  .capability-row {
    grid-template-columns: 1fr;
  }
.hero {
  height: 260px;
}

.hero h2 {
  font-size: 22px;
}
.partner-text h2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 0 30px;
  max-width: 480px;
  color: #25272d;
}

.partner-underline {
  display: inline;
  background-image: linear-gradient(
    90deg,
    #00a8e8 0%,
    #00a8e8 62%,
    rgba(0, 168, 232, 0.18) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: 0 100%;
}

  .collaboration {
   padding-inline: 20px;
 }
 .collab-inner {
   max-width: 360px;
 }
 .collaboration h2 {
   font-size: 30px;
 }
 .collab-graphic {
   min-height: 520px;
 }
 .collab-circle,
 .collab-center-image {
   width: 210px;
   height: 210px;
 }
 .collab-bubble,
 .collab-bubble > img {
   width: 120px;
   height: 120px;
 }
 .bubble-top {
   top: -104px;
 }
 .bubble-left {
   left: -78px;
   top: -4px;
 }
 .bubble-right {
   right: -78px;
   top: -4px;
 }
 .bubble-bottom-left {
   left: -20px;
   bottom: -80px;
 }
 .bubble-bottom-right {
   right: -20px;
   bottom: -80px;
 }
}