@charset "UTF-8";
/*
Theme Name: Community Colleges of Illinois 2025
Author:
Author URI:
Description: This site was built by Central States Marketing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: comm-coll
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
      - Reset
      - Colors
      - Sizing
      - Typography
02 - UTILITIES
      - Variables
      - Helpers
03 - COMPONENTS
      - Buttons
      - Icons
      - Animations
04 - LAYOUT
      - Layout
      - Header
      - Footer
05 - PAGES
      - Home
      - Inside Pages
06 - PLUGINS

***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/* ----- RESET ----- */
/*
  HTML / Body
*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  position: relative;
}

* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

:after,
:before {
  box-sizing: border-box;
}

button {
  border: none;
  box-shadow: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

hr {
  height: 3px;
  margin: 2rem 0;
  border: none;
  background: var(--black-60);
}

/* ----- COLORS ----- */
/*
 Colors / Typography @ root
*/
:root {
  /*
    Neutral Colors
  */
  --black-dk: #242424;
  --black: #333;
  --black-20: #4f4f4f;
  --black-40: #828282;
  --black-60: #bdbdbd;
  --white-60: #e0e0e0;
  --white-40: #f2f2f2;
  --white-20: #f5f4f6;
  --white: #fff;
  /*
    Site Specific Color Palette
  */
  --red: oklch(63.27% 0.212 27.68);
  --red-dark: oklch(58% 0.212 27.68);
  --red-hover: oklch(73.27% 0.212 27.68);
  --grey: oklch(54.17% 0 0);
  --grey-med: oklch(90.67% 0 0);
  --grey-light: oklch(96.42% 0 0);
  --white: oklch(100% 0 0);
  /*
    Gradients
  */
  --red-gradient: linear-gradient(
    to bottom,
    var(--red) 0%,
    var(--red-dark) 100%
  );
  
  /*
    Global Font Colors
  */
  --primary-font-color: var(--grey);
  --primary-color: var(--primary-font-color);
  --h-color: var(--grey);
  --p-color: var(--primary-font-color);
  --nav-color: var(--white);
  --accent-color: var(--black);
}

/*
    Color specific classes
/*
  Red Gradient
*/
.red-gradient {
  background: var(--red-gradient);
}

/* ----- SIZING ----- */
/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width: 82.3rem;
  --wrapper-max-width--sm: 70.59rem;
  --wrapper-max-width--lg: 91.2rem;
}

html {
  /* Gap */
  --gap: 2rem;
  --neg-gap: 2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
}
@media (max-width: 1500px) {
  html {
    --gap-fluid: 2rem;
    --neg-gap-fluid: -2rem;
  }
}
@media (min-width: 2000px) {
  html {
    --gap-fluid: 10vw;
    --neg-gap-fluid: -10vw;
  }
}
@media (min-width: 3000px) {
  html {
    --gap-fluid: 15vw;
    --neg-gap-fluid: -15vw;
  }
}
@media (min-width: 3500px) {
  html {
    --gap-fluid: 20vw;
    --neg-gap-fluid: -20vw;
  }
}

/* ----- TYPOGRAPHY ----- */
/*
  Responsive font sizing
*/
html {
  font-size: 17px;
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 15.5px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 15px;
  }
}
/*
    Global Font Sizing
*/
:root {
  --baseFontSize: 1rem;
  --baseNavSize: 0.94rem;
  --smallFontSize: 0.8rem;
  --smallestFontSize: 0.512rem;
  --big-boss-heading: 3.052rem;
  --boss-heading: 2.441rem;
  --heading-1: 3.8rem;
  --heading-2: 3rem;
  --heading-3: 2.4rem;
  --heading-4: 1.9rem;
  --heading-5: 1.5rem;
  --heading-6: 1.2rem;
  --heading-7: var(--smallestFontSize);
}

/*
    Global Font Styles
*/
@font-face {
  font-family: PlutoCondRegular;
  src: url("fonts/PlutoCondRegular.otf");
}
@font-face {
  font-family: TungstenRounded-Bold;
  src: url("fonts/TungstenRounded-Bold.otf");
}
:root {
  --primary-font: "PlutoCondRegular";
  --h-font: "TungstenRounded-Bold", sans-serif;
  --sub-h-font: "TungstenRounded-Boldz", sans-serif;
  --btn-font: "PlutoCondRegular";
  --p-font: "PlutoCondRegular";
  --nav-font: "PlutoCondRegular";
  --accent-font: "PlutoCondRegular";
}

/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font);
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1;
  letter-spacing: 4px;
  text-wrap: balance;
}

h1,
.h1 {
  font-size: var(--heading-1);
  text-rendering: optimizeLegibility;
  font-weight: 600;
  color: var(--h-color);
}

h2,
.h2 {
  font-size: var(--heading-2);
  font-weight: 600;
}

h3,
.h3 {
  font-size: var(--heading-3);
  font-weight: 600;
}

h4,
.h4 {
  font-size: var(--heading-4);
  font-weight: 600;
}

h5,
.h5 {
  font-size: var(--heading-5);
  font-weight: 600;
}

h6,
.h6 {
  font-size: var(--heading-6);
  font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  opacity: 0.65;
}

.content h1 {
  text-transform: unset;
}

.content h2 {
  text-transform: unset;
}

.content h3 {
  text-transform: unset;
}

.content h4 {
  text-transform: unset;
}

.content h5 {
  text-transform: unset;
}

.content h6 {
  text-transform: unset;
}

.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a {
  color: inherit;
  text-decoration: none;
}

.content h1 a:focus,
.content h1 a:hover,
.content h2 a:focus,
.content h2 a:hover,
.content h3 a:focus,
.content h3 a:hover,
.content h4 a:focus,
.content h4 a:hover,
.content h5 a:focus,
.content h5 a:hover,
.content h6 a:focus,
.content h6 a:hover {
  opacity: 0.88;
}

/*
  Links - Global --------------------
*/
a {
  font-family: var(--primary-font);
  font-size: inherit;
  color: inherit;
}
a:hover, a:focus {
  opacity: 0.7;
}

.content a:not(.btn, .button) {
  color: var(--primary-font-color);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
}

.content a:hover:not(.btn, .button),
.content a:focus:not(.btn, .button) {
  opacity: 0.65;
}

/*
  Basic title link usually on block title
*/
.title-link {
  text-transform: uppercase;
  border-bottom: 2px solid var(--black-20);
  transition: color 0.25s ease-in-out;
}
.title-link:hover {
  color: var(--black-60);
}

/*
  Text --------------------
*/
/*
  Content class global styles
*/
.content {
  font-family: var(--p-font);
  font-style: normal;
  font-size: var(--baseFontSize);
  color: var(--p-color);
}

/*
  Paragraph text
*/
p {
  margin-bottom: 0.75rem;
}

p:not(.content *) {
  font-family: var(--p-font);
  color: var(--p-color);
  font-size: var(--baseFontSize);
  margin-bottom: 1.5rem;
}
p:not(.content *)::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p:not(.content *)::selection {
  background-color: var(--black-60);
  color: white;
}

/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  font-size: var(--baseFontSize);
  margin-bottom: 0.5rem;
}

.content ul,
.post-content ul {
  padding: 0 0 1.5rem 40px;
}

.content ul li,
.post-content ul li {
  list-style: disc;
}

/*
  Span
*/
span {
  font-family: var(--primary-font);
  font-size: var(--baseFontSize);
}

/*
  Bold Text
*/
b {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent {
  font-family: var(--accent-font);
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/* ----- VARIABLES ----- */
/*
  Random Custom Properties
*/
:root {
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  /* Border-radius */
  --radius: 30px;
}

/* ----- HELPERS ----- */
/*
  Helper classes
*/
/*
  Remove / Show content
*/
.hide {
  display: none;
}

.show {
  display: block;
}

/*
  Margin / Padding Resets
*/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-border {
  border: none;
}

/*
  Shadows
*/
.header-shadow {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

/*
  PAGINATION STYLES for WP
*/
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #666 !important;
  background: #d5d5d5;
}

.pagination a:hover {
  color: #fff !important;
  background: #000;
}

.pagination span {
  background: #666;
  color: #fff !important;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #000;
  color: #fff !important;
}

/*
  SEARCH RESULTS STYLES for WP
*/
.search-results h1 {
  font-size: 1.2rem;
}

/*
  BREADCRUMBS (Yoast)
*/
#breadcrumbs {
  margin: 0;
  list-style: none;
  border-radius: 4px;
}

#breadcrumbs a {
  color: var(--black-20);
  text-decoration: none;
}
#breadcrumbs a:hover {
  color: var(--white-60);
}

/*
  BORDER FRAME
*/
.border-frame {
  position: relative;
}
.border-frame::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 50%;
  border-left: 5px solid var(--white);
  border-top: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  pointer-events: none;
  z-index: 1;
}
/* ==========================================================================
   Style new reCAPTCHA disclosure (Gravity Forms)
   ========================================================================== */
.gform-footer.gform_footer.top_label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.gform_wrapper.gravity-theme .gform_footer input {
    align-self: flex-start !important;
}
.recaptcha-disclosure {
    display: block;
    margin: 0;
    font-size: 12px;
}

/*-------------------------------------
  03 - COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/* ----- BUTTONS ----- */
/*
  Buttons
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit] :not(.search-form),
.gform_button.button,
.wp-block-kadence-advancedbtn .kb-button {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  transition: none !important;
  position: relative;
}
.btn::after,
a.btn::after,
.wp-block-button__link::after,
input[type=submit] :not(.search-form)::after,
.gform_button::after,
.wp-block-kadence-advancedbtn .kb-button::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  background: url("img/icons/white-arrow-up.svg") center/80% no-repeat;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn:hover, .btn:focus,
a.btn:hover,
a.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type=submit] :not(.search-form):hover,
input[type=submit] :not(.search-form):focus,
.gform_button:hover,
.gform_button:focus,
.wp-block-kadence-advancedbtn .kb-button:hover,
.wp-block-kadence-advancedbtn .kb-button:focus {
  background: var(--red-hover);
  opacity: 1;
}
.btn:hover::after,
a.btn:hover::after,
.wp-block-button__link:hover::after,
input[type=submit] :not(.search-form):hover::after,
.gform_button:hover::after,
.wp-block-kadence-advancedbtn .kb-button:hover::after {
  transform: translate(3px, -3px);
}

/* Kadence Blocks buttons – apply primary button styling */
.btn.btn--secondary {
  background: var(--white);
  color: var(--primary-font-color);
}
.btn.btn--secondary::after {
  background: url("img/icons/red-arrow-up.svg") center/80% no-repeat;
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  background: var(--grey-light);
  opacity: 1;
}

.btn-full {
  width: 100%;
  margin: 0 0 10px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.btn-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/*
  Basic text link usually inline
*/
.link {
  display: inline-block;
  color: var(--black-20);
  text-align: center;
}
.link:hover, .link:focus {
  color: var(--black-60);
}

/* ----- ICONS ----- */
/*
  Icons
*/
/*
  Icon before text
*/
.icon-before {
  position: relative;
}
.icon-before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icons/red-arrow-down.svg") center no-repeat;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*
  Icon after text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icons/red-arrow-up.svg") center/80% no-repeat;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*
  Social Icons
*/
/* ----- ANIMATIONS ----- */
/*
  Animations
*/
/* Logo Marquee */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
/* Hero Text Entrance */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Typewriter Effect */
@keyframes typewriterIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.typewriter {
  display: inline-block;
}
.typewriter .typewriter-char {
  display: inline-block;
  opacity: 0;
  animation: typewriterIn 0.15s ease-out forwards;
}

/* Scroll Reveal */
@keyframes scrollReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-reveal {
  opacity: 0;
}
.scroll-reveal.is-visible {
  animation: scrollReveal 0.6s ease-out forwards;
}

.scroll-reveal-stagger > * {
  opacity: 0;
}
.scroll-reveal-stagger.is-visible > * {
  animation: scrollReveal 0.5s ease-out forwards;
}
.scroll-reveal-stagger.is-visible > *:nth-child(1) {
  animation-delay: 0s;
}
.scroll-reveal-stagger.is-visible > *:nth-child(2) {
  animation-delay: 0.15s;
}
.scroll-reveal-stagger.is-visible > *:nth-child(3) {
  animation-delay: 0.3s;
}
.scroll-reveal-stagger.is-visible > *:nth-child(4) {
  animation-delay: 0.45s;
}
.scroll-reveal-stagger.is-visible > *:nth-child(5) {
  animation-delay: 0.6s;
}
.scroll-reveal-stagger.is-visible > *:nth-child(6) {
  animation-delay: 0.75s;
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.scroll-reveal-left > * {
  opacity: 0;
}
.scroll-reveal-left.is-visible > * {
  animation: slideInLeft 0.4s ease-out forwards;
}
.scroll-reveal-left.is-visible > *:nth-child(1) {
  animation-delay: 0s;
}
.scroll-reveal-left.is-visible > *:nth-child(2) {
  animation-delay: 0.1s;
}
.scroll-reveal-left.is-visible > *:nth-child(3) {
  animation-delay: 0.2s;
}
.scroll-reveal-left.is-visible > *:nth-child(4) {
  animation-delay: 0.3s;
}
.scroll-reveal-left.is-visible > *:nth-child(5) {
  animation-delay: 0.4s;
}
.scroll-reveal-left.is-visible > *:nth-child(6) {
  animation-delay: 0.5s;
}
.scroll-reveal-left.is-visible > *:nth-child(7) {
  animation-delay: 0.6s;
}
.scroll-reveal-left.is-visible > *:nth-child(8) {
  animation-delay: 0.7s;
}
.scroll-reveal-left.is-visible > *:nth-child(9) {
  animation-delay: 0.8s;
}
.scroll-reveal-left.is-visible > *:nth-child(10) {
  animation-delay: 0.9s;
}

/*-------------------------------------
  04 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/* ----- LAYOUT ----- */
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
/* Creates a wrapper around main sections of content */
.wrapper {
  margin: 0 auto;
  padding: 0 var(--gap);
  max-width: var(--wrapper-max-width);
}

.wrapper.wrapper--sm {
  max-width: var(--wrapper-max-width--sm);
}

/* Removes max-width for larger-fluid design */
.wrapper-fluid {
  margin: 0 auto;
  padding: 0 var(--gap-fluid);
}

/*
  Grid Layouts
*/
.grid-auto-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.grid-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .grid-auto-1 {
    grid-template-columns: 1fr;
  }
}
/*
  Flex Layouts
*/
.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/*
  Sections  - generally affect vertical spacing
*/
/* used for normal section to create space between */
.section {
  margin-bottom: 4rem;
}

.section-sm {
  margin-bottom: 3rem;
}

/* used for section within another block or section */
.section-block {
  margin-bottom: 2rem;
}

/* used to create space within a section when 2 sections touch eachother
     eg: 2 sections with diff bg colors */
.section-spacer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-spacer-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-spacer-lg {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section-spacer-top {
  padding-top: 3rem;
}

.section-spacer-bottom {
  padding-top: 3rem;
}

/*
  Alignment
*/
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/*
  Text Blocks
*/
.text-block {
  margin: 0 0 3rem;
}

.text-block-narrow {
  margin: 0 0 3rem;
  /* Adjust max-width as needed */
  max-width: 43rem;
}

.text-block-center {
  margin: 0 auto 3rem;
  /* Adjust max-width as needed or eliminate if already in a parent container */
  max-width: 43rem;
}

/*
  Full Width
*/
/* Breaks out of wrapper for full-width content - extending bg color for example*/
.full-width {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  padding: 0;
}

body:has(.full-width) {
  overflow-x: hidden;
}

/* Kadence Blocks - adds back the 2rem inline pad needed */
.full-width .kt-row-column-wrap .kt-row-column-wrap {
  padding-inline: 2rem;
}

/* Kadence Blocks - when using the full-width class this fixes extra padding */
.full-width.kt-row-has-bg > .kt-row-column-wrap {
  padding-inline: 0;
}

.full-width-fluid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 var(--gap-fluid);
}

/* ----- SITE HEADER ----- */
/*
  Alert - ACF Option - Site Settings in Admin bar
*/
.alert {
  padding-block: 10px;
  background: var(--white-40);
}

.alert .inner p {
  color: var(--black);
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/*
  Site Header
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.08) 85%, rgba(0, 0, 0, 0.02) 95%, rgba(0, 0, 0, 0) 100%);
}
.site-header .inner {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 0px 10px;
  align-items: start;
  padding-block: 1rem;
}
.site-header .inner .main-logo {
  z-index: 10;
}
.site-header .inner .main-logo img {
  width: 225px;
}
.site-header .inner .btn {
  background: var(--white);
  color: var(--grey);
  font-size: 0.875rem;
}
.site-header .inner .btn:hover {
  background: var(--grey-med);
}

/* Add styles here to shrink down header after scroll */
.site-header.shrink .inner .main-logo img {
  width: 175px;
}
/*
  Main Navigation
*/
.main-nav {
  justify-self: center;
  width: 100%;
}
.main-nav > ul {
  display: flex;
  justify-content: center;
}
.main-nav > ul > li {
  display: flex;
  margin-left: 4%;
  padding-bottom: 1rem;
  position: relative;
}
.main-nav > ul > li > a {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: 0.95rem;
  color: var(--nav-color);
  padding: 0.5rem;
  margin-bottom: 0;
  position: relative;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a:focus {
  color: var(--red);
  opacity: 1;
}
.main-nav > ul > li.menu-item-has-children:hover > a {
  color: var(--red);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  margin: 0;
  position: absolute;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  background-color: var(--grey);
  border-radius: 0 0 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.main-nav ul ul li {
  margin: 0;
  height: auto;
}

.main-nav ul ul li:hover {
  background: var(--red);
}
.main-nav ul ul li:hover a {
  color: var(--white);
  opacity: 1;
}

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  padding: 0.6rem 1rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 0.8rem;
}

.main-nav ul ul li:first-of-type {
  position: relative;
}

/* third level */
.main-nav ul ul ul {
  top: 0;
  left: 100%;
  margin-top: 0;
}

/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON
*/
/*
  Search Trigger Icon
*/
.search-trigger {
  display: inline-block;
  padding: 5px 5px 5px 5px;
  width: 25px;
  height: 30px;
  background: url("img/icon-search.svg") center/100% no-repeat;
  cursor: pointer;
}

/*
  Mobile Menu Icon
*/
.menu-icon {
  cursor: pointer;
  display: none;
  z-index: 6000;
}
.menu-icon span {
  display: block;
  width: 40px;
  height: 3px;
  margin-block: 9px;
  background: var(--white);
  transition: var(--transition);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span {
  background: var(--red);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(1) {
  transform: translate(0, 12px) rotate(-45deg);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(2) {
  opacity: 0;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(3) {
  transform: translate(0, -12px) rotate(45deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 2rem 2rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
  background: var(--grey);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
}

.mobile-nav .exit {
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
  background: url("img/close.svg") center/100% no-repeat;
}

.mobile-nav nav {
  width: 100%;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul li {
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open ul > li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open ul > li:nth-child(1) {
  transition-delay: 0.16s;
}
.mobile-nav.open ul > li:nth-child(2) {
  transition-delay: 0.22s;
}
.mobile-nav.open ul > li:nth-child(3) {
  transition-delay: 0.28s;
}
.mobile-nav.open ul > li:nth-child(4) {
  transition-delay: 0.34s;
}
.mobile-nav.open ul > li:nth-child(5) {
  transition-delay: 0.4s;
}
.mobile-nav.open ul > li:nth-child(6) {
  transition-delay: 0.46s;
}
.mobile-nav.open ul > li:nth-child(7) {
  transition-delay: 0.52s;
}
.mobile-nav.open ul > li:nth-child(8) {
  transition-delay: 0.58s;
}
.mobile-nav.open ul > li:nth-child(9) {
  transition-delay: 0.64s;
}
.mobile-nav.open ul > li:nth-child(10) {
  transition-delay: 0.7s;
}


.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--white);
  padding: 8px 15px;
  position: relative;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  opacity: 0.65;
}

/*
  Mobile DropDown
*/
.mobile-nav ul.sub-menu li {
  border-bottom: none;
}

.mobile-nav ul ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

/* .mobile-nav li.menu-item-has-children.is-open > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
} */

.mobile-nav ul ul li {
  display: block;
  margin-bottom: 5px;
}

.mobile-nav ul ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-light);
  border-bottom: none;
  margin-bottom: 0;
}

/* .mobile-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  vertical-align: middle;
  background: url("img/icons/white-arrow-up.svg") center/100% no-repeat;
  transform: rotate(90deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
} */

/* .mobile-nav .menu-item-has-children.is-open > a::after {
  transform: rotate(-15deg);
} */



/*
  Search Form
*/
.search-form {
  display: grid;
  grid-template-columns: 5fr auto;
  align-content: center;
  padding: 3px;
  right: 0;
  overflow: hidden;
  transition: var(--transition);
  z-index: 20;
}

.search-icon {
  width: 35px;
  height: 35px;
  background: url("img/icon-search.svg") center/60% no-repeat;
  cursor: pointer;
  border: none;
}

.search-box {
  border: 0;
  grid-column: 1/span 1;
  grid-row: 1;
  padding-left: 10px;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  text-align: center;
}

input.search-box {
  color: var(--black-20);
  font-size: 0.8rem;
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .site-header .inner {
    grid-template-columns: auto 1fr;
  }
  .site-header .inner .main-logo img {
    width: 175px;
  }
  .site-header.shrink .inner .main-logo img {
    width: 125px;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
  a.college-finder {
    display: none;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/* ----- SITE FOOTER ----- */
/*
  Site Footer
*/
/*
  HOME COLLEGE FINDER SECTION - located on home and student stories pages
*/
body.page-id-225 .find-college {
  background: var(--grey-med);
}

.find-college {
  padding-inline: var(--gap);
}
.find-college .inner {
  background: url("img/find-college-bg-2.jpg") center/100% no-repeat;
  background-size: cover;
  background-position: 50% 20%;
  height: 100%;
  width: 100%;
  padding: 3rem 2rem;
  min-height: 400px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.find-college .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grey);
  opacity: 0.7;
  z-index: 0;
}
.find-college .inner *:not(.btn) {
  color: var(--white);
}
.find-college .inner .copy {
  max-width: 30ch;
  position: relative;
  z-index: 1;
}
.find-college .inner .copy h4 {
  color: var(--white);
}

/* Main Footer Area */
.site-footer {
  background: var(--grey-light);
}
.site-footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem 3rem;
  padding-block: 2rem 4rem;
}
.site-footer .inner .footer-brand {
  display: flex;
  flex-direction: column;
  width: 300px;
  gap: 1.5rem;
}
.site-footer .inner .footer-brand .footer-logo img {
  width: 100%;
}
.site-footer .inner .footer-brand .socials {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.site-footer .inner .footer-brand .socials .social-link {
  display: block;
  width: 25px;
  height: 25px;
  transition: opacity 0.3s ease;
}
.site-footer .inner .footer-brand .socials .social-link:hover {
  opacity: 0.7;
}
.site-footer .inner .footer-brand .socials .social-link.instagram {
  background: url("img/socials/insta.svg") center/95% no-repeat;
}
.site-footer .inner .footer-brand .socials .social-link.linkedin {
  background: url("img/socials/linkedin.svg") center/100% no-repeat;
}
.site-footer .inner .footer-brand .socials .social-link.facebook {
  background: url("img/socials/fb.svg") center/95% no-repeat;
}
.site-footer .inner .ctas {
  align-self: end;
  justify-content: flex-end;
  display: flex;
}
.site-footer .inner .ctas .btn {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.site-footer .inner .ctas .btn.contact {
  border: 1px solid var(--red);
}
.site-footer .cred {
  background: var(--grey);
}
.site-footer .cred .inner {
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
}
.site-footer .cred .inner p {
  display: inline-block;
  margin: 0;
  color: var(--white);
  font-size: 0.875rem;
	text-align: center;
}
.site-footer .cred .inner a.privacy {
  color: var(--white);
  font-size: 0.875rem;
}

@media (max-width: 800px) {
  .site-footer .inner {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
  }
  .site-footer .inner .footer-brand,
  .site-footer .inner .ctas {
    align-self: center;
  }
  .site-footer .inner .footer-brand .socials {
    margin-bottom: 1.5rem;
	  justify-content: center;
  }
  .site-footer .inner .ctas {
    flex-direction: column;
    align-items: center;
  }
}
/*-------------------------------------
  05 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/* ----- HOME PAGE ----- */
/*
  HERO
*/
.hero {
  display: grid;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.hero .video-wrapper,
.hero .image-wrapper {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  height: 100%;
  width: 100%;
}
.hero .video-wrapper::before,
.hero .image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}
.hero .video-wrapper::after,
.hero .image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.02) 5%, rgba(255, 255, 255, 0.08) 15%, rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.75) 100%);
  z-index: 1;
}
.hero .video-wrapper video,
.hero .image-wrapper video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 400px;
  height: 100vh;
}
.hero .message-box.wrapper {
  padding-inline: 4rem;
}
.hero .message-box {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  max-width: 1000px;
  transform: translateY(3rem);
  z-index: 2;
  position: relative;
}
.hero .message-box span {
  display: inline-block;
  color: var(--white);
  font-size: clamp(7rem, 4.857rem + 5.714vw, 10rem);
  font-family: var(--h-font);
  letter-spacing: 5px;
  line-height: 1;
}
.hero .message-box .message {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
}
.hero .message-box .message h1 {
  color: var(--red);
  margin-bottom: 1rem;
  font-family: var(--primary-font);
  font-weight: 300;
  text-transform: unset;
}
.hero .message-box .message a.college-finder {
  display: none;
  max-width: 500px;
  text-wrap: balance;
}
.hero .message-box .message p {
  padding: 1rem;
}
.hero .message-box::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 0;
  width: 143px;
  height: 228px;
  background: url("img/hero-red-state.png") center/70% no-repeat;
  z-index: 10;
}
.hero .red-bar {
  grid-column: 1/-1;
  grid-row: 2;
  background: var(--red-gradient);
  padding-block: 5rem;
}

.hero:not(.feature-student-stories) .message-box .message {
  opacity: 0;
  animation: heroReveal 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

@media (max-width: 1050px) {
  .hero .message-box .message a.college-finder {
    display: block;
  }
}
@media (max-width: 600px) {
  .hero .message-box.wrapper {
    padding-inline: 2rem;
  }
  .hero .message-box::after {
    right: 1rem;
    top: 25%;
    width: 73px;
    height: 158px;
  }
}
/*
  HOME VIDEO SECTION
*/
.video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.video-section .copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  max-width: 600px;
  text-align: center;
}
.video-section .copy span {
  font-size: 0.9rem;
}
.video-section .copy h2 {
  text-transform: uppercase;
}
.video-section .video-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  padding: 4px 4px;
  position: relative;
}
.video-section .video-wrapper video {
  grid-column: 1/-1;
  grid-row: 1;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}
.video-section .video-wrapper::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 50%;
  border-left: 5px solid var(--red);
  border-top: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  pointer-events: none;
  z-index: 1;
}
.video-section .video-wrapper .play {
  grid-column: 1/-1;
  grid-row: 1;
  place-self: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: url("img/icons/play.png") center/100% no-repeat;
  z-index: 2;
  border: none;
  padding: 0;
  transition: opacity var(--transition);
}
.video-section .video-wrapper .play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 850px) {
  .video-section {
    grid-template-columns: 1fr;
  }
  .video-section .copy {
    max-width: unset;
  }
}
/*
  HOME IMPACT SECTION
*/
.statewide-impact {
  display: flex;
  justify-content: center;
  background: var(--grey-med);
}
.statewide-impact .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  padding-inline: clamp(2rem, 8vw, 6rem);
  padding-block: 3rem;
  margin-inline: 2rem;
  background: var(--red-gradient);
  border-radius: var(--radius);
}
.statewide-impact .inner .stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.statewide-impact .inner .stats .stat .number {
  display: inline-block;
  color: var(--white);
  font-family: "TungstenRounded-Bold", sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
}
.statewide-impact .inner .stats .stat .number.icon-after::after {
  width: 60px;
  height: 60px;
  margin: 0 0 0 1rem;
}
.statewide-impact .inner .stats .stat:nth-child(1) .number.icon-after::after {
  background: url("img/icons/students.svg") center/100% no-repeat;
}
.statewide-impact .inner .stats .stat:nth-child(2) .number.icon-after::after {
  background: url("img/icons/pin.svg") center/60% no-repeat;
}
.statewide-impact .inner .stats .stat:nth-child(3) .number.icon-after::after {
  background: url("img/icons/open-book.svg") center/100% no-repeat;
}
.statewide-impact .inner .stats .stat:nth-child(4) .number.icon-after::after {
  background: url("img/icons/stock.svg") center/100% no-repeat;
  margin-bottom: 1rem;
}
.statewide-impact .inner .stats .stat .number.icon-after:hover::after {
  transform: unset;
}
.statewide-impact .inner .stats .stat p {
  color: var(--black);
  max-width: 24rem;
}
.statewide-impact .inner .stats .stat:not(:last-child) {
  border-bottom: 1px solid var(--black);
}

@media (max-width: 850px) {
  .statewide-impact .inner {
    grid-template-columns: 1fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
/*
  HOME ADVOCACY SECTION
*/
.advocacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
}
.advocacy img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
}
.advocacy .copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 4rem;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}
.advocacy .copy h3 {
  color: var(--red);
}

@media (max-width: 850px) {
  .advocacy {
    grid-template-columns: 1fr;
  }
}
/*
  HOME EXPLORE SECTION
*/
.explore {
  background: var(--grey-light);
  padding-inline: var(--gap);
}
.explore .inner {
  background: var(--grey);
  border-radius: var(--radius);
}
.explore .inner .nested-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
}
.explore .inner .nested-inner .copy-wrap {
  padding-block: 3rem;
}
.explore .inner .nested-inner .copy-wrap .copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 4rem;
  max-width: 40ch;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}
.explore .inner .nested-inner .copy-wrap .copy h4,
.explore .inner .nested-inner .copy-wrap .copy p {
  color: var(--white);
}
.explore .inner .nested-inner .college-feed {
  display: flex;
  gap: 4rem;
  height: 600px;
  overflow: hidden;
}
.explore .inner .nested-inner .college-feed .logo-marquee {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.explore .inner .nested-inner .college-feed .logo-marquee .logos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.explore .inner .nested-inner .college-feed .logo-marquee .logo-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  aspect-ratio: 1/1;
  text-decoration: none;
  cursor: pointer;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}
.explore .inner .nested-inner .college-feed .logo-marquee .logo-card:hover {
  transform: scale(1);
}
.explore .inner .nested-inner .college-feed .logo-marquee .logo-card img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.explore .inner .nested-inner .college-feed .logo-marquee--up .logos {
  animation: scrollUp 120s linear infinite;
}
.explore .inner .nested-inner .college-feed .logo-marquee--down .logos {
  animation: scrollDown 120s linear infinite;
}
.explore .inner .nested-inner .college-feed .logo-marquee:hover .logos,
.explore .inner .nested-inner .college-feed .logo-card:hover {
  animation-play-state: paused;
}

@media (max-width: 850px) {
  .explore .inner .nested-inner {
    grid-template-columns: 1fr;
  }
}
/*
  HOME MEMBERSHIPS SECTION
*/
.memberships {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem 10%;
  flex-wrap: wrap;
}
.memberships img {
  max-width: 250px;
}

/*
  HOME TESTIMONIALS SECTION
*/
.testimonials {
  background: var(--red-gradient);
}
.testimonials .inner h4 {
  grid-column: 1/-1;
  color: var(--white);
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.testimonials .inner h4 span {
  font-size: 2.3rem;
  font-weight: 300;
  text-transform: lowercase;
}
.testimonials .inner .testimonial-track {
  margin-bottom: 4rem;
}

/* ----- INSIDE PAGE ----- */
/*
  FEATURE IMAGE
*/
.feature {
  position: relative;
}
.feature .inner {
  display: grid;
  position: relative;
}
.feature .inner::before {
  content: "";
  grid-column: 1/-1;
  grid-row: 1/-1;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.feature .inner img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  min-height: 50vh;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
}
.feature .inner .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: end;
  display: inline-block;
  background: var(--blue-lighter);
  padding: 2rem;
  margin-right: var(--gap-fluid);
  border-radius: 3px;
  z-index: 100;
}
.feature .inner .title h1 {
  color: var(--white-20);
  margin-bottom: 0;
  font-size: clamp(3rem, 1.214rem + 4.762vw, 5.5rem);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1050px) {
  .feature {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .feature .title h1 {
    font-size: 1.3rem;
  }
}
/*
  FEATURE - STUDENT STORIES
  This section uses styles for template part hero.php (front-page.scss) as a base,
    these styles alter it for the student stories page.
*/
.hero.feature-student-stories {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 0;
/*   padding-bottom: 4rem; */
  position: relative;
}
.hero.feature-student-stories .image-wrapper img {
  width: 100%;
  min-height: 50vh;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}
.hero.feature-student-stories .message-box {
  grid-row: 2;
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
  transform: translateY(-3rem); /* override base hero translate */
}
.hero.feature-student-stories .message-box .message h1 {
  font-family: var(--h-font);
  font-size: clamp(3rem, 2.286rem + 1.905vw, 4rem);
  text-align: center;
}
.hero.feature-student-stories .red-bar {
  padding-block: 10rem;
}

/*
  CONTENT / CONTENT-POSTS STYLES
*/
/* Styles for post entry meta - (date) */
.entry-meta {
  margin-bottom: 30px;
}

/* Styles for WP category list */
.entry-category {
  display: inline-block;
}

.entry-category ul {
  display: inline-block;
}

.entry-category ul li {
  display: inline-block;
  margin-left: 5px;
}

/*-------------------------------------
  06 - PLUGINS PLUGINS PLUGINS PLUGINS
--------------------------------------*/
/* ----- KADENCE ----- */
/* ----- STRONG TESTIMONIALS ----- */
.strong-view-id-1 .testimonial {
  height: 100% !important;
}
.strong-view-id-1 .testimonial-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
}
.strong-view-id-1 .testimonial-inner .testimonial-content {
  /* holds image and excerpt */
}
.strong-view-id-1 .testimonial-inner .testimonial-content .testimonial-image img {
  margin-bottom: 0.5rem;
  width: 80px;
	border-radius: 50%;
}
.strong-view-id-1 .testimonial-inner .testimonial-content p {
  font-size: 0.9rem;
}
.strong-view-id-1 .testimonial-inner .testimonial-name {
  line-height: 1;
}

.cmplz-message p {
	margin: 0;
	font-size: calc(var(--baseFontSize) * .92);
	line-height: 1.4;
}


/*# sourceMappingURL=style.css.map */