/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
 Colors / Typography @ root
*/
:root {
  --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;
  --red: #cf2030;
  --navy: rgba(13, 35, 64, 1);
}

/*
  Resets
*/
* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in-out;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

/*
    Global Font Sizing
  */
:root {
  --baseFontSize: 0.9rem;
  --baseNavSize: 0.94rem;
  --smallFontSize: 0.8rem;
  --smallestFontSize: 0.512rem;
  --big-boss-heading: 3.052rem;
  --boss-heading: 2.441rem;
  --heading-1: 2.5rem;
  --heading-2: 2rem;
  --heading-3: 1.7rem;
  --heading-4: 1.4rem;
  --heading-5: 1.2rem;
  --heading-6: 1.2rem;
  --heading-7: var(--smallestFontSize);
}

/*
  HTML / Body
*/
html {
  /* Gap */
  --gap: 2rem;
  --neg-gap: -2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
  scroll-behavior: smooth;
}
@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;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  position: relative;
}

/*
  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;
  }
}
/*
  Links - Global --------------------
*/
a {
  font-family: "Montserrat", sans-serif;
  font-size: var(--baseFontSize);
  color: var(--black-20);
  transition: all 0.25s ease-in-out;
}
/*
  Text --------------------
*/
/*
  Paragraph text
*/
p {
  font-family: "Montserrat", sans-serif;
  color: var(--black-20);
  font-size: var(--baseFontSize);
  margin-bottom: 1.5rem;
}
p::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p::selection {
  background-color: var(--black-60);
  color: white;
}

/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: "Montserrat", sans-serif;
  color: var(--black-20);
  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: "Montserrat", sans-serif;
  font-size: var(--baseFontSize);
}

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

strong {
  font-weight: 700;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/*
  Remove / Show content --------------------
*/
.hide {
  display: none;
}

.show {
  display: block;
}

/*
  Shadows
*/
.shadow-bottom-inset {
  box-shadow: inset 0 -35px 35px -20px rgba(60, 60, 60, 0.3);
}

.shadow-bottom {
  box-shadow: 0px 10px 6px -10px rgba(60, 60, 60, 0.3);
}

/*
  Horizontal Rule
*/
hr {
  height: 3px;
  margin: 20px 0;
  border: none;
  background: var(--black-60);
}

/*-------------------------------------
  03 - 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: 1400px;
}

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

.wrapper-inner {
  padding: 30px 2rem;
}

/*-------------------------------------
  04 - COMPONENTS COMPONENTS COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/*
  Buttons --------------------
*/
.btn {
  display: inline-block;
  background: none;
  color: var(--white);
  font-weight: 500;
  background: var(--red);
  border-radius: 3px;
  border: 2px solid var(--red);
  padding: 12px 15px;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out !important;
}
.btn:hover, .btn:focus {
  opacity: .65;
}

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

/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/


/*
  Site Header
*/
.site-header {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  inset: 0;
  padding-block: .75rem;
  box-shadow: 0 25px 25px -20px rgba(60, 60, 60, 0.3);
  z-index: 1000;
}
.site-header .site-header-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
  place-items: center;

}
.site-header .site-header-inner .main-logo {
  width: 225px;
  text-align: center;
}


/* Add styles here to shrink down header after scroll */
.site-header.shrink {
  box-shadow: 0 25px 25px -20px rgba(60, 60, 60, 0.3);
}
.site-header.shrink .site-header-inner .main-logo {
  width: 150px;
}




@media (max-width: 990px) {
  .site-header .site-header-inner {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }
  .site-header .site-header-inner .main-logo {
    grid-column: 1/-1;
    justify-self: center;
  }
  .site-header .site-header-inner .main-logo img {
    width: 200px;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    grid-column: 1/-1;
    justify-self: start;
    align-self: center;
    display: inline-block;
  }
}
@media (min-width: 990px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/

/*
  HERO
*/
/*
  HERO IMAGE
*/
.hero {
  display: grid;
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .3) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3rem;
  width: 500px;
  height: 550px;
  background: url("img/headshot.png") center/100% no-repeat;
  z-index: 10;
}
.hero img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  min-height: 30vh;
  max-height: 600px;
  object-fit: cover;
  object-position: 10% center;
  /* filter: blur(2px); */
}
@media (max-width: 800px) {
  .hero::after {
    width: 350px;
    height: 400px;
  }
}
@media (max-width: 600px) {
  .hero::after {
    width: 300px;
    height: 450px;
  bottom: -6rem;
  }
}


/*
  MAIN
*/

/*
  INTRO SECTION
*/
.intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.intro h1 {
  grid-column: 1 / -1;
  color: var(--red);
  /* margin-bottom: 1rem; */
  line-height: 1.3;
  text-wrap: balance;
}
.intro img {
  max-width: 300px;
}

@media (max-width: 800px) {
  .intro {
    grid-template-columns: 1fr;
  }
  .intro img {
    display: none;
  }
}

/*
  ACCOMPLISHMENTS
*/
.accomplishments {
  padding-block: 3rem;
  background: rgba(13, 35, 64, .8);
}
.accomplishments .inner > * {
  color: var(--white);
}
.accomplishments .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 4rem;
}
.accomplishments .inner h2 {
  grid-column: 1 / -1;
  background: var(--navy);
  margin-inline: -1rem;
  margin-bottom: 1rem;
  padding-inline: 1rem;
  border-radius: 10px;
}
.accomplishments .inner p.title {
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 3px solid var(--red);
}
.accomplishments .inner ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: .9rem;
  list-style-position: inside;
  margin-bottom: .8rem;
  line-height: 1.4;
  position: relative;
}
.accomplishments .inner ul li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  margin-top: 5px;
  vertical-align: middle;
  background: url("img/check.svg") center no-repeat;
}
@media (max-width: 767px) {
  .accomplishments .inner {
    grid-template-columns: 1fr;
  }
}


/*
  QUOTES
*/
.quotes {
  background: #f5f5f5;
  padding-block: 4rem;
  clear: right;
}
.quotes li.splide__slide {
  background: var(--white);
  /* max-width: 400px; */
  padding: 1rem;
  text-align: center;
}
.quotes li strong {
  padding-top: 1rem;
}
.splide {
  margin-inline: auto;
}
.quotes li.splide__slide.is-active {
  background: var(--red);
  color: var(--white);
}
.splide__pagination__page {
  background: var(--black-20);
}
.splide__pagination__page.is-active {
  background: var(--red);
}
.splide__arrow {
  background: red;
}
.splide__pagination {
  margin-bottom: 2rem;
  background: none !important;
}
.splide__arrow--prev,
.splide__arrow--next {
}

/*
  ENDORSEMENT
*/
.endorsements {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 4rem;
}
.endorsements .left img {
  margin-bottom: 1rem;
}
.endorsements .left .links {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 10px;
}
.endorsements .left .links li {
  line-height: 1.2;
  margin-bottom: .5rem;
}
.endorsements .left .links a {
  font-size: 1rem;

}
.endorsements .left .links a:hover {
  color: var(--red);
}

@media (max-width: 800px) {
  .endorsements {
    grid-template-columns: 1fr;
  }
}

/*
  FORMSITE
*/
.form-table .q {
  float: none !important;
  width: 50%;
}


/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/
/* Main Footer Area */

.site-footer {
  background: rgba(13, 35, 64, .8);
  padding-block: 2rem;
}

@media (max-width: 1000px) {

}

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