/* globals.css */
@import url("https://use.typekit.net/qos6iun.css");

:root {
  /* Colors */
  --white: #FAFAFA;
  --black: #101B30;
  --primary: #0348A2;
  --secondary: #0072F7;
  --yellow: #FAA916;
  --vibrant-blue: #184FDB;
  --off-white-blue: #F0F3F8;
  --light-blue: #E0FBFC;
  --aqua: #9BF8F4;
  --text: #2C23DE;
  --light-gray: #F5F5F5;
  --light-gray-secondary: #E6EDF6;
  --dark-gray: #37435A;

  /* Gradients */
  --heading-gradient: linear-gradient(94deg, #184FDB 0.58%, #37435A 97.87%);
  --customer-story-hero: linear-gradient(94deg, #E0FBFC 0.58%, #96AFEE 97.87%);
  --button-primary-blue: linear-gradient(95deg, #4C77E2 0%, #184FDB 100%);
  --button-primary-blue-hover: linear-gradient(0deg, rgba(55, 67, 90, 0.20) 0%, rgba(55, 67, 90, 0.20) 100%), linear-gradient(95deg, #184FDB 0%, #184FDB 100%);
  --button-primary-orange: linear-gradient(87deg, rgba(250, 169, 22, 0.90) 5.16%, #FAA916 28.05%, #F4845F 70.55%, rgba(242, 112, 89, 0.90) 94.84%);
  --button-primary-orange-hover: linear-gradient(87deg, #FAA916 5.16%, #FAA916 28.05%, #FAA916 70.55%, #FAA916 94.84%);
  --button-primary-white: linear-gradient(94deg, #F0F3F8 0.58%, #E6EDF6 97.87%);
  
  /* Sizing */
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 24px;
  --spacing-xlarge: 48px;
  --spacing-xxl: 64px;

  /* Shadows */
  --shadow: 0px 10px 40px rgba(16, 27, 48, 0.2);
  --blue-shadow: 0px 10px 30px -30px rgba(24, 79, 219, 0.15), 0px 15px 35px -10px rgba(24, 79, 219, 0.25);
  --orange-shadow: 0px 10px 30px -30px rgba(238, 187, 64, 0.15), 0px 15px 35px -10px rgba(239, 89, 20, 0.35);
  --white-shadow: 0px 15px 40px 0px rgba(16, 27, 48, 0.30);
}

.block-container {
  max-width: 1024px;
  margin: 4rem auto;
}

.eyebrow {
  display: block;
  font: bold calc(12rem / 16)/calc(23 / 12);
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
  