/*====================================================
  1. DESIGN SYSTEM
====================================================*/

:root {
  /* Fleet Colors */
  --fleet-blue: #3669AD;
  --fleet-red: #EA1C1F;

  /* Background */
  --page-bg: #F8F9FB;

  /* Text */
  --text-color: #1A1A1A;

  /* Blue Palette */
  --blue-1: #5B92CB;
  --blue-2: #78A8D8;
  --blue-3: #95bde5;
  --blue-bg: #DCEAF8;

  /* Red Palette */
  --red-1: #EC6769;
  --red-2: #F08A8C;
  --red-3: #F4A9AA;

  /* Neutrals */
  --white: #FFFFFF;
  --black: #000000;
  --label-yellow: #FFD84D;

  /* Page Layout */
  --page-max-width: 800px;
  --desktop-gutter: 30px;

}

/*====================================================
  2. FOUNDATION
====================================================*/

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background: var(--blue-bg);
}

/* Phone/default */

.page-wrap {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: var(--page-bg);
  overflow: hidden;
}

/*====================================================
  3. GLOBAL STYLES
====================================================*/

.content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 15px 24px 15px;
}

/* to address spacing between hero and text in different viewports */

.content > p:first-child {
  margin-top: 0;
}

p {
    font-size: clamp(24px, 2.8vw, 30px);
    line-height: 1.45;
    margin: 20px 0 25px;
}

.content-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -10px;
}

strong {
    font-weight: 700;
}

.highlight-red {
    color: var(--fleet-red);
}

.label {
    color: var(--label-yellow);
}

.label-link {
    color: var(--fleet-blue);
    text-decoration: none;
}

.label-link:hover,
.label-link:focus {
  color: var(--fleet-red);
  text-decoration: none;
}

h2 {
    color: var(--fleet-blue);
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  color: var(--fleet-red);
  margin-bottom: -12px
}

/*====================================================
  4. HEADER
====================================================*/

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  max-width: none;
  width: 100%;

  padding: 0;
  margin: 0;
  background: transparent;

  z-index: 1002;
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;

  z-index: 2;
}

.header-menu-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;

  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: 0;

  cursor: pointer;
}

.page-brand {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/*====================================================
  5. HERO
====================================================*/

.hero-container {
    width: 100%;
    max-width: none;
    margin-top: 0;
}    

.hero-video.overlap {
    width: 100%;
    height: auto;
    margin-top: 140px;
    margin-bottom: 15px;
    display: block;
}

.hero-video {
    display: block;
    width: 100%;
    height: auto;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: -30px;
    margin-bottom: 15px;
    display: block;
}

/*====================================================
  6. NAVIGATION
====================================================*/

.site-navigation {
  position: absolute;
  max-height: 100dvh;
  overflow-y: auto;

  /* Begin behind the header artwork */
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  flex-direction: column;

  /*
    White begins at the top, but the links begin
    below the complete responsive SVG header.
  */
  padding:
    calc(var(--actual-header-height, 220px) - 10px)
    20px
    20px
    28px;

  background: var(--white);

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;

  z-index: 1;
}

.site-navigation.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-navigation a {
  display: block;
  width: 100%;
  padding: 7px;

  color: var(--fleet-blue);

  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;

  text-align: right;
  text-decoration: none;

  transition: color .2s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
  color: var(--fleet-red);
}

/*====================================================
  7. COMPONENTS
====================================================*/
/* Shared card structure */

.resource-card {
  width: calc(100% + 48px);
  max-width: none;
  margin: 32px -24px;
  padding: 16px 24px 28px;
}

.resource-card.blue {
  background: var(--fleet-blue);
}

.resource-card.red {
  background: var(--fleet-red);
}

.resource-card h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}


/* Shared link layout and typography */

.resource-links {
  display: flex;
  flex-direction: column;
}

.resource-links a {
  display: block;
  width: 100%;
  padding: 13px 12px;

  color: #ffffff;

  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}


/* Blue card links */

.resource-card.blue .resource-links a {
  border-bottom: 1px solid rgba(54, 105, 173, 0.7);
}

.resource-card.blue .resource-links a:nth-child(3n + 1) {
  background: var(--blue-1);
}

.resource-card.blue .resource-links a:nth-child(3n + 2) {
  background: var(--blue-2);
}

.resource-card.blue .resource-links a:nth-child(3n) {
  background: var(--blue-3);
}

/* Red card links */

.resource-card.red .resource-links a {
  border-bottom: 1px solid rgba(234, 28, 31, 0.7);
}

.resource-card.red .resource-links a:nth-child(3n + 1) {
  background: var(--red-1);
}

.resource-card.red .resource-links a:nth-child(3n + 2) {
  background: var(--red-2);
}

.resource-card.red .resource-links a:nth-child(3n) {
  background: var(--red-3);
}

/* Hover and active states */

.resource-card.blue .resource-links a:hover,
.resource-card.blue .resource-links a:focus-visible,
.resource-card.blue .resource-links a:active {
  background: var(--fleet-red);
  color: #ffffff;
}

.resource-card.red .resource-links a:hover,
.resource-card.red .resource-links a:focus-visible,
.resource-card.red .resource-links a:active {
  background: var(--fleet-red);
}

/* Navigation Buttons */

.archive-section {
  margin-top: 45px;
}

.archive-section h2 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fleet-blue);
}

.archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--fleet-blue);
}

.archive-list li {
  border-bottom: 1px solid rgba(54, 105, 173, .35);
}

.archive-list a {
  display: block;
  padding: 16px 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fleet-blue);
  text-decoration: none;
}

.archive-list a:hover,
.archive-list a:focus-visible {
  color: var(--fleet-red);
  background: rgba(234, 28, 31, .06);
}

/* Button Groups */


/* Media Link Bar */

/* Hero Buttons */

/* Navigation Buttons */

/*====================================================
  8. EMBEDDED CONTENT
====================================================*/
.airtable-table {
  display: block;
  width: 100%;
  border: 5px solid var(--fleet-blue);
  background: transparent;
}

.embed-spreadsheet {
  display: block;
  width: 100%;
  border: 1px solid var(--fleet-blue);
}

.embed-pdf {
  display: block;
  width: 100%;
}

.embed-video {
  display: block;
  width: 100%;
}


/*====================================================
  9. FOOTER
====================================================*/

.site-footer {
  padding: 15px;
  text-align: center;
  background: var(--blue-bg);
}

.footer-domain {
  text-align: center;
  margin: 15px 0 15px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fleet-blue);
}

.footer-copyright {
  text-align: center;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
}

.footer-domain a {
  color: inherit;
  text-decoration: none;   
}

.footer-domain a:hover,
.footer-domain a:focus {
  color: var(--fleet-red); 
}

/*====================================================
 10. MEDIA QUERIES
====================================================*/

@media (min-width: 700px) {

  body {
    padding: 0 var(--desktop-gutter);
    background: #e5e5e5;
  }

  .page-wrap {
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
  }

  .site-header {
    left: var(--desktop-gutter);
    right: var(--desktop-gutter);
    width: auto;
    max-width: var(--page-max-width);
    margin: 0 auto;
    transform: none;
  }

  .resource-card {
    width: 100%;
    margin: 32px 0;
  }
}