

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Nav Bar 
- Summary Bands
- Hero Band 


*/






/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 72.5%; }
body {
  font-size: 1.5em;  
  line-height: 1.6;
  font-weight: 500;
  font-family: Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.55;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.5; letter-spacing: -.1rem; }
h3 { font-size: 3.25rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #0FA0CE;
  text-decoration: none;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }





/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }




/* 
-------------------------------------
NAVBAR CONTAINER  
----------------------

*/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(47, 54, 69, 0.08);
}

/* Main navigation */
.nav-links {
  list-style: none;
  display: inline-flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  color: rgb(47, 54, 69);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.7rem 0;
  transition: color 0.2s ease;
}

/* subtle underline effect */
.nav-links > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgb(47, 54, 69);
  transition: width 0.2s ease;
  margin-top: 0.2rem;
}

.nav-links > li:hover > a::after {
  width: 100%;
}

.nav-links a:hover {
  color: rgb(20, 25, 35);
}

/* Dropdown panel */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 120px;
  background-color: #ffffff;
  border: 1px solid rgba(47, 54, 69, 0.08);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 0.6rem 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* dropdown items */
.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.65rem 1rem;
  white-space: nowrap;
  color: rgb(47, 54, 69);
}

.dropdown-menu a:hover {
  background-color: rgba(47, 54, 69, 0.04);
  color: rgb(20, 25, 35);
}


/* Mobile Responsiveness */


@media screen and (max-width: 600px) {
  .nav-links {
    display: none; /* Simple mobile fix: hide links or use a hamburger menu */
  }
}

/* Main Content Adjustment */
.content {
  padding-top: 90px; /* Must be at least the height of the navbar to avoid overlap */
  padding-left: 20px;
  /* Example height to demonstrate scrolling */
}




/* =========================
   LARGE HEADLINE ROTATOR
   ========================= */

.sliding-text-container {
    display: flex;
    align-items: center;

    /* Larger headline size */
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: Arial, Helvetica, sans-serif;

    color: #1587a3;

    white-space: nowrap;
}

/* Visible window */
.sliding-text-wrapper {
    position: relative;

    /* Must match phrase height */
    height: 3.8rem;

    overflow: hidden;
    margin-left: px;6
}
/* Animated stack */
.sliding-text-inner {
    display: flex;
    flex-direction: column;

    animation-name: healthcareHeadlineRotateSlow !important;
    animation-duration: 90s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
}

/* Individual phrase */
.phrase {
    display: flex;
    align-items: center;

    height: 3.8rem;
    line-height: 3.8rem;

    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;

    color: #1587a3;

    animation: none !important;
    transform: none;
}
/* =========================
   13 PHRASE ANIMATION
   ========================= */

@keyframes healthcareHeadlineRotateSlow {
    0%, 6%        { transform: translateY(0); }
    7.7%, 13.7%   { transform: translateY(-3.8rem); }
    15.4%, 21.4%  { transform: translateY(-7.6rem); }
    23.1%, 29.1%  { transform: translateY(-11.4rem); }
    30.8%, 36.8%  { transform: translateY(-15.2rem); }
    38.5%, 44.5%  { transform: translateY(-19rem); }
    46.2%, 52.2%  { transform: translateY(-22.8rem); }
    53.9%, 59.9%  { transform: translateY(-26.6rem); }
    61.6%, 67.6%  { transform: translateY(-30.4rem); }
    69.3%, 75.3%  { transform: translateY(-34.2rem); }
    77%, 83%      { transform: translateY(-38rem); }
    84.7%, 90.7%  { transform: translateY(-41.8rem); }
    92.4%, 98.4%  { transform: translateY(-45.6rem); }
    100%          { transform: translateY(0); }
}

  .connect-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem;
    font-family: Helvetica, Arial, sans-serif;
    box-sizing: border-box;
  }
  .connect-form * {
    box-sizing: border-box;
  }
  .connect-form h2 {
    margin: 0 0 1.5rem;
    font-size: 1.8rem;
  }
  .connect-form .field {
    margin-bottom: 1.25rem;
  }
  .connect-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .connect-form input,
  .connect-form select,
  .connect-form textarea {
    display: block;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
  }
  .connect-form textarea {
    min-height: 110px;
    resize: vertical;
  }
  .connect-form .checkbox-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
  }
  .connect-form .checkbox-field input {
    width: auto;
  }
  .connect-form button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: #173042;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
  }
  .connect-form button:hover {
    background-color: #25506b;
  }







