<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
Theme Name: Lightspeed
Author: Mike Bernier
Description: Lightspeed
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lightspeed
*/
/*--------------------------------------------------------------
&gt;&gt;&gt; TABLE OF CONTENTS:
----------------------------------------------------------------

&gt;&gt; Lightspeed
# Header
# Footer
# General Styles
  # Page Structure
  # Flex
  # Typeography
  # Columns &amp; Padding
  # Forms
# Page Templates
  # Post Archive Page
  # Search
  # Team Member Page
# Blog Page / Loop
  # Pagination
  # Comments
  # 404
# WooCommerce
  # Product Loop
  # Single Product
  # Cart
  # Checkout
  # My Account
# Partial &gt; Flexible Content 
  # Accordian
  # Alternating Section
  # Background Image Section
  # Column Layout
  # Empty Space
  # Post Loop
  # Team Post Loop
  # Video Wrapper

&gt;&gt; UnderScores
# Normalize
# Typeography
# Elements
# Forms
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Comments
# Infinite scroll
# Media
  ## Captions
    ## Galleries

&gt;&gt; WooCommerce

--------------------------------------------------------------*/
/*--------------------------------------------------------------
&gt;&gt; Lightspeed
--------------------------------------------------------------*/

/*====================================================================
  # Header
====================================================================*/

/* Main Navigation Setup
     ============== */

.site-header {
  height: 60px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: block;
  z-index: 999;
  background: #fff;
  width: 100%;
  box-shadow: 10px 8px 16px -6px rgba(0, 0, 0, 0.43);
}

.site-header .container {
  height: 100%;
}

@media only screen and (min-width: 1026px) {
  nav#site-navigation {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-left: auto;
  }
}

.branding-nav-wrapper {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.menu-main-menu-container {
  height: 100%;
  display: flex;
  margin-left: auto;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
}

@media only screen and (min-width: 1026px) {
  .main-navigation a {
    display: block;
    text-decoration: none;
  }

  .main-navigation li {
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
  }

  .main-navigation li:last-of-type {
    padding-right: 30px;
  }

  li.menu-item-has-children &gt; a:after {
    font-family: FontAwesome;
    content: "\f107";
    margin-left: 5px;
    color: #000;
  }
}

@media only screen and (max-width: 1210px) {
  .main-navigation a {
      font-size: 16px;
  }

  .main-navigation li {
      padding: 0 10px;
  }
}

header#masthead a {
  text-decoration: none;
}

.current-menu-item &gt; a {
  font-weight: 600;
}

/* Logo
     ============== */

@media only screen and (min-width: 769px) {
  .custom-logo {
    max-width: 203px;
  }
}

@media only screen and (max-width: 768px) {
  .custom-logo {
    max-width: 200px;
  }
}

.site-branding {
  height: 100%;
}

a.custom-logo-link {
  height: 100%;
  display: flex;
}

img.custom-logo {
  max-height: 100%;
  object-fit: contain;
  width: auto;
}

/* Main Menu - Sub Menu
     ============== */

ul.sub-menu {
  height: auto !important;
  width: 300px;
  display: flex;
  flex-direction: column;
  z-index: 99999;
  background: #fff;
  display: none;
}

@media only screen and (min-width: 1026px) {
  .main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    padding: 15px;
  }
}

@media only screen and (max-width: 1025px) {
  .sub-menu .menu-item-has-children {
    padding: 0 10px !important;
  }

  ul.sub-menu .sub-menu {
    padding: 0 !important;
    margin-bottom: 15px;
  }

  ul.sub-menu .sub-menu li {
    border-left: none;
    padding: 0;
  }
}

.main-navigation .sub-menu &gt; li &gt; a:hover {
  background: #eee;
}

.main-navigation .sub-menu li:focus {
  border: 1px solid #f45b5b;
}

/* Setting hover states */

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover &gt; ul,
.main-navigation ul ul li.focus &gt; ul {
  left: 100%;
}

@media only screen and (min-width: 1141px) {
  .main-navigation ul li:hover &gt; ul,
  .main-navigation ul li.focus &gt; ul,
  .main-navigation ul li:focus-within &gt; ul {
    left: auto;
    display: block;
  }
}

@media only screen and (max-width: 1140px) and (min-width: 769px) {
  .main-navigation ul li.mega-menu:hover &gt; ul,
  .main-navigation ul li.mega-menu.focus &gt; ul {
    left: -181px;
  }
}

/* Mega Menu
     ============== */
@media only screen and (min-width: 1026px) {
  /*mega menu*/
  .mega-menu .sub-menu .sub-menu {
    position: relative;
    left: initial;
    float: none;
    padding: 0;
  }

  .mega-menu &gt; .sub-menu {
    display: flex;
    flex-wrap: wrap;
    height: 470px !important;
    flex-direction: column;
    width: 810px;
  }

  .mega-menu &gt; .sub-menu &gt; li {
    display: block;
    height: initial;
  }

  .mega-menu &gt; .sub-menu &gt; li &gt; a::after {
    display: none;
  }

  .mega-menu ul.sub-menu .sub-menu {
    display: block !important;
    padding: 0 !important;
    margin-bottom: 15px;
  }

  .main-navigation .sub-menu li {
    background: #fff;
    padding: 0;
  }
  
  .main-navigation .sub-menu li a {
  padding: 7.5px;
  width: 100%;
  }

  @media only screen and (min-width: 1026px) {
    .mega-menu ul.sub-menu .sub-menu {
      display: block !important;
    }
  }

  .mega-menu ul.sub-menu .sub-menu li {
    padding: 0;
  }

  .mega-menu .sub-menu .menu-item-has-children &gt; a {
    font-weight: 900;
  }

  .mega-menu a {
    padding: 2px;
  }
}

@media only screen and (max-width: 1025px) {
  .mega-menu .sub-menu {
    margin-left: 15px;
  }

  .mega-menu .sub-menu li {
    margin-bottom: 0;
  }
}

/* Search Bar
     ============== */

.search-container__desktop {
  margin-left: auto;
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.search-container__desktop .search-toggle.opened {
  display: none;
}

.search-container__desktop.open .search-toggle.closed {
  display: none;
}

.search-container__desktop.open .search-toggle.opened {
  display: block;
  margin-right: 15px;
}

.search-container__desktop .seach-form {
  display: none;
}

.search-container__desktop.open .seach-form {
  display: flex;
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  height: 100%;
  align-items: center;
}

.seach-form form {
  display: flex;
  width: 100%;
  height: 50px;
}

.seach-form form label {
  width: 100%;
  display: flex;
}

input.search-field {
    width: 100%;
}

@media only screen and (max-width: 1062px) {
  .search-form input[type="search"] {
    margin-bottom: 15px;
  }

  i.fas.fa-search {
    margin-right: 15px;
  }
}

.search-form input[type="submit"] {
  padding: 8px 20px;
  border-radius: 30px;
  text-align: center;
  line-height: 1em;
  border: 2px solid;
  font-size: 16px;
  width: auto;
}

.search-form input[type="submit"]:hover {
  background: #333;
  color: #fff;
}

.site-header .search-form input[type="submit"] {
    margin-left: 15px;
}

/* Main Menu - Mobile Menu
     ============== */

@media only screen and (max-width: 769px) {
  nav#site-navigation {
      display: none;
  }

  div#responsive-menu-container {
      display: flex;
      top: 72px;
      justify-content: center;
      text-align: center;
  }
  
  #responsive-menu-container #responsive-menu-wrapper li.responsive-menu-item a {
    display: flex;
  }
  
  #responsive-menu-container #responsive-menu li.responsive-menu-item a .responsive-menu-subarrow {
      right: -45px !important;
  }

  #responsive-menu-container li.responsive-menu-item {
      display: inline-flex;
      width: 100%;
      list-style: none;
      text-align: center;
      justify-content: center;
    padding: 18px 0 !important;
    flex-wrap: wrap;
  }

    #responsive-menu-container li.responsive-menu-item {
      
  }

  #responsive-menu-container li.responsive-menu-item a {
      width: auto !important;
      padding: 0 !important;
      height: auto !important;
      line-height: 20px;
  }
}

/* Hiding Admin Bar on mobile
     ============== */

@media screen and (max-width: 782px) {
  html #wpadminbar {
      display: none;
  }

  body.admin-bar {
      margin-top: -46px;
  }
}

/*====================================================================
  # Footer
====================================================================*/

/* Main Footer
     ============== */

.site-footer {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
}

.site-footer .container {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }
}

.footer-column {
  padding: 0 15px;
  flex: 1;
}

@media only screen and (max-width: 769px) {
  .footer-column {
      margin-bottom: 32px;
  }
}

.site-footer a.search-toggle.opened {
    display: none;
}



/* Subfooter
     ============== */

 .subfooter {
    width: 100%;
    text-align: center;
    padding: 24px;
}

.subfooter p {
    max-width: 1300px;
    margin: 0 auto;
}

@media only screen and (max-width: 769px) {
  .subfooter {
      margin-bottom: 68px;
  }
}

/*====================================================================
  # General Styles
====================================================================*/

/*==================================
  # Page Structure
===================================*/

/* Page Setup
     ============== */

.site-content {
    overflow-x: hidden;
}

.site-content {
    position: relative;
}

body:not(.page-template-fullwidth) .entry-content {
  margin-top: 50px;
}

.entry-content {
    min-height: calc(100vh - 617px);
}

/* Bootstrap QoL Fixes
     ============== */

.container {
    display: flex;
    flex-wrap: wrap;
}

.row .container {
  max-width: 1320px;
}

@media only screen and (max-width: 770px) {
  .row .container {
      padding: 0px 36px;
  }
}

/* Rows
     ============== */

.row, .ls-row {
  margin-bottom: 100px;
}


/* Reuseable Classes
     ============== */

@media only screen and (min-width: 770px) {
  .hide-desktop {
    display: none !important;
  }
}

@media only screen and (max-width: 769px) {
  .hide-mobile {
    display: none !important;
  }
}

.margin0bottom {
  margin-bottom: 0 !important;
}

.padding0bottom {
  padding-bottom: 0 !important;
}

@media only screen and (min-width: 770px) {
  .column-count-2 {
    column-count: 2;
  }

  .column-count-3 {
    column-count: 3;
  }

  .column-count-4 {
    column-count: 4;
  }
}

.aligncenter {
    display: block;
    margin: 0 auto;
}


/*==================================
  # Flex
===================================*/

.flex {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/*==================================
  # Typeography
===================================*/

/* Font styling
     ============== */

/*setting global fonts*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 32px;
}

h1 {
  line-height: 1em;
  font-weight: 900;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 36px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

h5 {
  font-size: 22px;
  font-weight: 700;
}

@media only screen and (min-width: 769px) {
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  body,
  button,
  input,
  select,
  optgroup,
  textarea {
    font-size: 16px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 32px;
}

body blockquote,
body dl,
body dt,
body figcaption,
body li,
body p,
body textarea {
  word-break: break-word;
}

h1, h2, h3, h4, h5, h6, p, ul {
    margin-bottom: 24px;
    line-height: 1.2em;
}

/* Text Alignment
     ============== */

.textLeft {
  text-align: left;
}

.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

/*==================================
  ## Columns &amp; Padding
===================================*/

@media only screen and (min-width: 770px) {
  .column {
    padding: 0 15px;
  }

  .column.col-1 {
    width: 8.33%;
  }

  .column.col-2 {
    width: 16.66%;
  }

  .column.col-3 {
    width: 25%;
  }

  .column.col-4 {
    width: 33.33%;
  }

  .column.col-5 {
    width: 41.66%;
  }

  .column.col-6 {
    width: 50%;
  }

  .column.col-7 {
    width: 58.33%;
  }

  .column.col-8 {
    width: 66.66%;
  }

  .column.col-9 {
    width: 75%;
  }

  .column.col-10 {
    width: 83.33%;
  }

  .column.col-11 {
    width: 91.66%;
  }

  .column.col-12 {
    width: 100%;
  }
}

@media only screen and (max-width: 769px) {
  .column {
    width: 100%;
  }
}

/*==================================
  # Forms
===================================*/

.gform_button {
  border: none;
}

.gform_body input:hover, .gform_body select:hover, .gform_body textarea:hover  {
  box-shadow: 0px 3px 6px #00000029;
}

.gform_body input:focus, .gform_body select:focus, .gform_body textarea:focus {
    box-shadow: 0px 0px 6px #202D8E !important;
}

.gform_body input:not(.button), .gform_body select, .gform_body textarea {
  border: 2px solid #CDCDCD;
  padding: 5px 4px !important;
}

input {
    outline: none !important;
}

.gform_wrapper .gfield_required {
    color: #e54242;
    margin-left: 4px;
}

/*===================================================================
  #Page Templates
===================================================================*/

/*==================================
  # Post Archive Page
===================================*/
.archive-header {
  margin-top: 32px;
}

@media only screen and (min-width: 769px) {
  .archive-sidebar {
    width: 34%;
    display: inline-block;
    vertical-align: top;
    padding: 50px 15px;
  }
}

/*==================================
  # Search
===================================*/

.search-main {
  margin: 50px 0;
}

/*==================================
  # Team Member Page
===================================*/

.single-team main.post-content {
  display: flex;
  margin: 50px 0;
}

@media only screen and (max-width: 768px) {
  .single-team main.post-content {
    flex-direction: column;
  }
}

@media only screen and (min-width: 769px) {
  .team-image {
    width: 30%;
  }

  .team-content {
    width: 70%;
  }
}

.team-content {
  padding: 0 50px;
}

.team-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}

/*===================================================================
  # Blog Page / Loop
===================================================================*/

.blog-featured-image {
  overflow: hidden;
  margin-bottom: 36px;
  text-align: center;
  padding: 50px;
  color: #fff;
  background-size: cover;
  background-position: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media only screen and (min-width: 770px) {
  .blog-featured-image {
    min-height: 500px;
  }
}

.blog-featured-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.blog-featured-image &gt; .container {
  position: relative;
  z-index: 100;
  flex-direction: column; 
}

.blog-category {
    width: 100%;
}

.blog-category a {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 400 !important;
  display: inline-block;
}

.blog-date {
  font-weight: 700;
  margin-bottom: 36px;
}

.single-post .post-content {
    margin-bottom: 50px;
}

/*==================================
 #Pagination
===================================*/

/*==================================
 #Comments
===================================*/

#comments {
  background: #fff;
  padding: 32px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.comment-body {
  padding: 16px 0;
  border-top: 1px solid #eee;
}

.avatar {
  display: none;
}

.comment-author {
  padding-left: 4px;
}

/*====================
  # 404
=======================*/

section.error-404.not-found a.search-toggle.opened {
    display: none;
}

/*===================================================================
  # WooCommerce
===================================================================*/

.woocommerce main#main {
  max-width: 1300px;
  width: 100%;
  padding: 0 50px;
  margin: 50px auto;
}

.woocommerce-store-notice {
  position: fixed !important;
  bottom: 0;
  top: initial !important;
  padding: 32px 50px !important;
}

a.woocommerce-store-notice__dismiss-link {
  background: #fff;
  color: #e80000 !important;
  font-size: 15px;
  padding: 2.5px 5px;
  text-decoration: none !important;
}

/*==================================
 #Product Loop
===================================*/

.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  display: block;
}

.woocommerce ul.products li.product a img {
  height: 200px;
  object-fit: contain;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding: 0 15px 50px;
}

.woocommerce ul.products li.product .button {
  position: absolute;
  bottom: 0;
  width: calc(100% - 30px);
}

/*==================================
 #Single Product
===================================*/



/*==================================
 #Cart
===================================*/

/*==================================
 #Checkout
===================================*/

/*==================================
 #My Account
===================================*/

/*===================================================================
  # Partial &gt; Flexible Content 
===================================================================*/

/*==================================
 #Accordian
===================================*/

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 10px;
  border: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion .active,
.accordion:hover,
button:focus {
  background-color: #ccc;
  background: #ccc;
  border: none;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordian-holder {
  max-width: 1300px;
  margin: 50px auto;
}

/*==================================
 #Alternating Section
===================================*/

@media only screen and (min-width: 770px) {
  .alternating-section .content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 769px) {
  .alternating-section .content {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 770px) {
  .alternating-section.image-left .image {
    order: 0;
  }

  .alternating-section.image-left .content {
    order: 1;
  }

  .alternating-section.image-right .image {
    order: 1;
  }

  .alternating-section.image-right .content {
    order: 0;
  }
}

@media only screen and (max-width: 769px) {

  .alternating-section .ls-column {
    width: 100%;
  }

  .alternating-section .image {
    order: 0;
    height: 300px;
  }

  .alternating-section .content {
    order: 1;
  }
}

.alternating-section .image {
  background-size: cover;
  background-position: 50%;
}

@media only screen and (min-width: 770px) {
  .alternating-section .image {
    min-height: 0;
    max-height: 100%;
  }
}

/*==================================
 #Background Image Section
===================================*/

.background-image-section .content {
  color: #fff;
  z-index: 101;
  position: relative;
}

.background-image-section:after {
  content: "";
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 99;
  top: 0;
  left: 0;
}

.background-image-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 50px 0; 
}

.background-image-section .column-content {
  position: relative;
  z-index: 100;
}

/* Page Section: removing overlay when no background image to override parent theme */
.background-image-section.no-background-image:after {
  opacity: 0;
}

/*==================================
  # Card Row
===================================*/

.card {
    background: #fff;
    box-shadow: 0 13px 27px -5px rgb(50 50 93 / 25%), 0 8px 16px -8px rgb(0 0 0 / 30%);
    transition-property: color,background-color,box-shadow,transform,-webkit-box-shadow,-webkit-transform;
    transition-duration: .15s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgb(50 50 93 / 25%), 0 18px 36px -18px rgb(0 0 0 / 30%);
}

@media only screen and (min-width: 770px) {
  .card {
      width: 30%;
      margin: 1.5%;
    }
}

@media only screen and (max-width: 769px) {
  .card {
      width: 100%;
    }
}

.card_background {
    height: 250px;
    background-size: cover;
    
    background-position: center;
}

.card__content {
    padding: 15px;
}

.card__content h2 {
    margin-bottom: 15px;
}

/*==================================
 #Column Layout
===================================*/

.row .container {
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
}

.image.contain {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.row, .column, .ls-row, .ls-column {
  background-size: cover;
  background-position: center;
  position: relative;
}

.column-content {
  position: relative;
  z-index: 100;
}

/*==================================
 #Empty Space
===================================*/

.empty-space {
  padding-top: 50px;
  display: block;
}

/*==================================
  # Post Loop
===================================*/

.container.post-loop {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 769px) {
  .post-loop {
    flex-direction: column;
  }
}

.post__link-holder {
  text-decoration: none;
}

.post__link-holder {
  margin: 0 1.5%;
  background-color: #eee;
  margin-bottom: 32px;
}

@media only screen and (min-width: 770px) {
  .post__link-holder {
    width: 30.33%;
  }
}

.post__link-holder {
  display: flex;
  flex-direction: column;
}

.post__featured-image {
  background-size: cover;
  background-position: 50%;
  position: relative;
  height: 200px;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}

.post__info {
  z-index: 100;
  position: relative;
  padding: 32px;
}

p.post__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

nav.pagination {
    width: 100%;
}

nav.pagination li {
    list-style: none;
    display: inline-block;
}

.blog-category a {
  display: inline-block;
}

/*==================================
 Team Post Loop
===================================*/

.team-loop {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .team-loop {
    flex-direction: column;
  }
}

a.team-member__link-holder {
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  a.team-member__link-holder {
    width: 30%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
}

@media only screen and (max-width: 768px) {
  a.team-member__link-holder {
    width: 100%;
  }
}

.team-member__featured-image {
  background-size: cover;
  background-position: 50%;
  position: relative;
  height: 500px;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}

.team-member__featured-image:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  z-index: 99;
  transition: all 0.5s ease;
}

a.team-member__link-holder:hover .team-member__featured-image:after {
  background-color: rgba(40, 169, 224, 0.51);
  transition: all 0.5s ease;
}

.team-member__info {
  z-index: 100;
  position: relative;
}

.team-member__info p {
  margin-bottom: 0;
}

.team-member__title {
  font-size: 50px;
  font-weight: 700;
}

p.team-member__position {
  font-size: 30px;
}

.link-arrow {
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 100;
  display: none;
}

a.team-member__link-holder:hover .link-arrow {
  display: flex;
}

/*==================================
  # Video Wrapper
==================================*/

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 50px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
&gt;&gt; Underscores
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 32px 1em;
}

li {
  position: relative;
}

ol {
  list-style: decimal;
}

li &gt; ul,
li &gt; ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/


.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}</pre></body></html>