/*
Theme Name: Gait Belt 2023
Author: Central States Media
Author URI: http://www.centralstatesmedia.com/
Description: This site was built by Central States Media
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gb
*/
/***************************************
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;
  /*
    Site Specific Color Palette
  */
  --blue: rgba(41, 96, 158, 1);
  --blue-light: rgba(134, 187, 216, 1);
  --navy: rgba(47, 72, 88, 1);
  --orange: rgba(241, 102, 34, 1);
  --orange-light: rgba(245, 174, 43, 1);
  --white: rgba(255, 255, 254, 1);
  /*
    Text Colors
  */
  --primary-text: #878784;
}

/*
    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);
}

/*
  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;
}

/*
  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: "Lato", 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;
  }
}
/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--blue);
  margin: 0 0 1rem;
  line-height: 1;
}

h1 {
  font-size: var(--heading-1);
  text-rendering: optimizeLegibility;
  color: rgb(84, 84, 84);
}

h2 {
  font-size: var(--heading-2);
}

h3 {
  font-size: var(--heading-3);
}

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

h5 {
  font-size: var(--heading-5);
  font-weight: 400;
}

h6 {
  font-size: var(--heading-6);
  font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: "Lato", sans-serif;
  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.88;
}

.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: "Lato", sans-serif;
  font-size: var(--baseFontSize);
  color: var(--black-20);
  transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.6;
}

.content a {
  font-weight: 700;
  color: var(--black-20);
}
.content a:hover, .content a:focus {
  opacity: 0.6;
}

/*
  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 --------------------
*/
/*
  Paragraph text
*/
p {
  font-family: "Lato", sans-serif;
  color: var(--primary-text);
  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: "Lato", 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: "Lato", sans-serif;
  font-size: var(--baseFontSize);
}

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

strong {
  font-weight: 700;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/*
  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;
}

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

/*
  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
*/
.shadow-bottom-inset {
  box-shadow: inset 0 -35px 35px -20px rgba(60, 60, 60, 0.3);
}

.shadow-bottom {
 box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .1);
}
.shadow-top {
	box-shadow: 0 -5px 30px -5px rgba(0, 0, 0, .1);
}

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

/*
  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);
}

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

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

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

/*
  Containers - generally affect horizontal spacing & centering --------------------
*/
.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 48rem;
}

/*
  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: 3rem;
  padding-bottom: 3rem;
}

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

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

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

/* used to center section inside parent element as well as center align the text */
.section-centered {
  text-align: center;
  display: flex;
  justify-content: center;
}

.section-prefooter {
  margin-bottom: 7rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/*
  Page Headers --------------------
*/
/* if outside a parent container - add the left and right padding */
.page-header {
  margin-bottom: 2.25rem;
}

.page-header-title {
  margin-bottom: 2rem;
}

.page-header-subtitle {
  margin-bottom: 1rem;
  max-width: 80%;
  font-size: 1.1rem;
}

/*
  Text Alignment --------------------
*/
.text-center {
  text-align: center;
}

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

.text-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;
}

/*-------------------------------------
  04 - COMPONENTS COMPONENTS COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/*
  Buttons --------------------
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit] :not(.search-form),
.gform_button {
  display: inline-block;
  background: none;
  color: var(--orange);
  border-radius: 0 !important;
  border: 2px solid var(--orange-light);
  padding: 15px 50px;
  margin: 0 0 .6rem;
  max-width: 300px;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out !important;
}
.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 {
  background: var(--orange-light);
  color: var(--navy) !important;
  opacity: 1;
}

.btn.btn--white {
  color: var(--white);
  border: 2px solid var(--white);
}

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

/*
  Links - Test links similar to buttons ------------------
*/
/*
  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 --------------------
*/
.icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin: 0 4px;
  -webkit-mask-image: none;
          mask-image: none;
}

/*
  Social Icons
*/
/*
  Animations --------------------
*/
@-webkit-keyframes slidedown {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes slidedown {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Top Bar
*/
.top-bar-bg {
  background: var(--blue-light);
}

.top-bar.wrapper {
  max-width: 1800px;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding-block: 10px;
}
.top-bar p,
.top-bar p > a {
  display: inline-block;
  color: var(--white);
  font-size: 0.8rem;
  margin: 0;
}
.top-bar a:hover,
.top-bar a:focus {
  opacity: 0.65;
  color: var(--blue);
}

/*
  Site Header
*/
.site-header-wrap {
  position: -webkit-sticky;
  position: sticky;
  inset: 0;
  z-index: 4000;
  background: rgb(254, 254, 254);
  box-shadow: 0px 15px 10px -15px #ccc;
}

.site-header.wrapper {
  max-width: 1800px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
}
.site-header .main-logo {
	width: 200px;
  padding-block: 10px;
}
.site-header .main-logo:hover {
  opacity: 0.65;
}
.site-header .main-logo img {
  
}

/* Add styles here to shrink down header after scroll */
.site-header.shrink .main-logo {
	width: 150px;
  padding-block: 5px;
}

.site-header.shrink .main-logo .main-nav ul li a {
  font-size: 0.8rem;
}

/*
  Main Navigation
*/
.main-nav {
  height: 100%;
}
.main-nav .menu-main-menu-container {
  height: 100%;
}
.main-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.main-nav .menu-main-menu-container > ul > li {
  display: flex;
  align-items: center;
  margin-left: 2.3rem;
  padding-bottom: 20px;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a {
  display: inline-block;
  color: var(--primary-text);
  font-size: 0.85rem;
  padding: 8px 0.7rem 8px 0.7rem;
  margin-bottom: 0;
  position: relative;
  transition: all 0.25s ease;
}
.main-nav .menu-main-menu-container > ul > li > a:hover, .main-nav .menu-main-menu-container > ul > li > a:focus {
  opacity: 1;
  color: var(--orange);
}

/* add down arrow to main nav a */
.main-nav ul > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 12px;
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background: url("img/icon-down.svg") center/80% no-repeat;
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  display: none;
  margin: 0;
  position: absolute;
  padding: 0;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: var(--white);
  border-top: 2px solid var(--orange);
  box-shadow: 3px 10px 25px -10px rgba(0, 0, 0, 0.45);
  z-index: 99999 !important;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  display: block;
}

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

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

.main-nav ul ul li a {
  display: block;
  color: var(--primary-text);
  padding: 10px 12px 10px 0.7rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 0.675rem;
}

/* 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 {
  order: 1;
  justify-self: end;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 20px;
  margin-bottom: 20px;
}

/*
  Mobile Menu Icon
*/
/*
  Mobile Menu Icon
*/
.menu-icon {
  order: 2;
  justify-self: end;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
  vertical-align: middle;
  margin-left: 20px;
  margin-bottom: 20px;
  display: none;
  fill: var(--blue);
}
.menu-icon:hover svg path {
  fill: var(--orange);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 2rem 10px 2rem;
  position: fixed;
  left: -125%;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 5000;
  background: var(--blue);
  opacity: 0.975;
  overflow: auto;
  transition: left 0.2s ease-in-out;
}

.mobile-nav .exit {
  position: absolute;
  top: 30px;
  right: 34px;
  width: 30px;
  height: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px;
  color: #fff;
  cursor: pointer;
}
.mobile-nav .exit svg path {
  fill: #fff;
}

.mobile-nav nav {
  margin-bottom: 50px;
  width: 100%;
}

.mobile-nav ul li {
  text-align: right;
  margin: 0;
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  padding: 8px 30px;
  margin-right: 3rem;
  text-transform: uppercase;
  position: relative;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  color: var(--brown-light);
}

.mobile-nav .mobile-menu-logo {
  width: 200px;
}

/*
  Mobile DropDown
*/
.mobile-nav ul ul {
  display: none;
  border-right: 2px solid var(--brown-light);
  position: relative;
}

.mobile-nav ul li > ul.visible {
  display: block;
}

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

.mobile-nav ul ul li {
  display: block;
}

.mobile-nav ul ul li a {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: none;
  border-bottom: none;
}

.mobile-nav li li:hover > ul {
  border-left: none;
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav.open + .menu-icon svg path {
  fill: var(--white);
}

.mobile-nav.open + .menu-icon:hover svg path {
  fill: var(--orange);
}

.mobile-nav .mobile-logo {
  text-align: center;
}

/*
  Search Form
*/
.search-wrap {
  display: none;
  grid-template-columns: 1fr auto;
  background: var(--blue-light);
  position: absolute;
  width: 60%;
  top: 100%;
  right: 2rem;
  box-shadow: 3px 10px 25px -10px rgba(0, 0, 0, 0.45);
  z-index: 10;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: slidedown 0.07s ease-in-out;
          animation: slidedown 0.07s ease-in-out;
}

.search-wrap.active {
  display: grid;
  cursor: pointer;
}

.search-form {
  display: grid;
  grid-template-columns: 5fr auto;
  align-content: center;
  right: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  z-index: 20;
}

.search-icon {
  width: 35px;
  height: 35px;
  background: url("img/icon-search.svg") center/60% no-repeat;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid var(--blue-light);
}

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

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

.search-exit {
  align-self: center;
  display: inline-block;
  padding: 3px;
  padding-inline: 10px;
  width: 100%;
  font-size: 1.2rem;
  color: var(--white);
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr;
  }
  .site-header .main-logo {
    grid-row: 1;
    justify-self: start;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    grid-row: 1;
    align-self: center;
    display: inline-block;
  }
  .search-trigger {
    display: none;
  }
}
@media (min-width: 1000px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
}
@media (max-width: 767px) {
  .search-wrap {
    right: 0;
    width: 100%;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
/*
  SLIDER
*/
#slider {
  height: auto;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
#slider .slides > li {
  display: grid !important;
  grid-template-columns: 1fr 1.3fr;
}
#slider .slides > li img {
  grid-column: 2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  height: 100%;
  width: 100%;
  min-height: 400px;
  max-height: 800px;
  width: 100%;
}
#slider .slides > li .caption-wrap {
  grid-column: 1/span 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  padding-block: 30px;
  background: linear-gradient(to bottom, rgba(47, 72, 88, 0.8) 10%, rgba(47, 72, 88, 0.9) 30%, var(--navy) 65%);
  opacity: 1;
  height: 100%;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
#slider .slides > li .caption-wrap .caption {
  align-self: center;
  padding-left: var(--gap-fluid);
}
#slider .slides > li .caption-wrap .caption h1 {
  font-size: clamp(2.1rem, 0.9194rem + 2.5806vw, 3rem);
  color: var(--white);
  line-height: 1.2;
}
#slider .slides > li .caption-wrap .caption p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2rem;
}
#slider .slides > li .caption-wrap .caption .btn {
  margin-left: 0;
}

.flexslider {
  margin: 0 !important;
}
.metaslider .flex-control-nav {
	transform: translateY(-40px);
}
#slider .flex-control-paging li a.flex-active {
	background: var(--orange);
}

@media (max-width: 767px) {
  #slider .slides > li {
    grid-template-columns: 1fr;
  }
  #slider .slides > li img {
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
  }
  #slider .slides > li .caption-wrap {
    grid-column: 1;
    grid-row: 1;
    height: auto;
  }
  #slider .slides > li .caption-wrap .caption {
    justify-self: center;
    text-align: center;
    padding-left: 0;
  }
}
/*
  MAIN
*/
main {
  margin-top: -10px;
}


/*
  HOME SOCIAL SECTION
*/
.social-feed-bg {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
	grid-template-rows: auto;
  background: var(--navy);
	min-height: 500px;
}
.social-feed-bg .bg-img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  position: relative;
}
.social-feed-bg .bg-img img {
  min-height: 300px;
  max-height: 600px;
  width: 100%;
	height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.social-feed-bg .bg-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(134, 187, 216, 0.5), rgba(134, 187, 216, 0.2));
}
.social-feed-bg h3.title {
  grid-column: 1;
  grid-row: 1;
  padding-left: var(--gap-fluid);
  align-self: center;
  color: var(--white);
  max-width: 350px;
  font-size: 2.3rem;
  -webkit-filter: drop-shadow(0 0 0.75rem var(--blue));
          filter: drop-shadow(0 0 0.75rem var(--blue));
}
.social-feed-bg .feed {
  grid-column: 2 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
/*     min-height: 100%; */
	margin-left: -70px;
	position: relative;
}
.social-feed-bg .feed::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to left, rgba(47, 72, 88, .7) 5%, rgba(47, 72, 88, .3) 25%, transparent 40%);
}

background: linear-gradient(to bottom, rgba(47, 72, 88, 0.8) 10%, rgba(47, 72, 88, 0.9) 30%, var(--navy) 65%);

/* Strong Testimonials plugin styles */

.wpmslider-wrapper {
	margin-right: -50px;
}
.wpmslider-viewport,
.wpmslider-wrapper,
.strong-content,
.wpmtst-testimonial {
	min-height: 300px;
}
.strong-view.wpmtst-modern .wpmtst-testimonial {
	padding-top: 40px !important;
}
.wpmtst-testimonial {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	position: relative;
}
.wpmtst-testimonial::before {
	content: "";
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: url("img/quote.png") center/100% no-repeat;
}
.strong-view.wpmtst-modern .wpmtst-testimonial {
	background: #fff !important;

}
.strong-view.wpmtst-modern .wpmtst-testimonial-content::after {
	display: none !important;
}
.strong-view.wpmtst-modern .wpmtst-testimonial-content {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.strong-view.wpmtst-modern .wpmtst-testimonial.t-slide {
	
}

.strong-view.wpmtst-modern .wpmtst-testimonial-content::before {
  display: none !important;	
} 
.strong-view.wpmtst-modern .wpmtst-testimonial-content p {
	font-size: .75rem !important;
	font-style: normal;
}
.strong-view.wpmtst-modern .wpmtst-testimonial .wpmtst-testimonial-inner .wpmtst-testimonial-field {
	font-size: .675rem !important;
}

@media (max-width: 800px) {
  .social-feed-bg {
    grid-template-columns: 1fr;
	  min-height: auto;
  }
  .social-feed-bg h3.title {
    justify-self: center;
    text-align: center;
    padding-left: 0;
    padding-inline: 2rem;
  }
  .social-feed-bg .feed {
	  grid-column: 1 / -1;
    grid-row: 2;
	  display: block;
    padding-block: 40px;
	  padding-inline: 2rem;
	  margin-left: 0;
  }
	.social-feed-bg .feed::after {
		content: none;
	}
	
	.strong-view-id-1 {
		margin-top: -70px;
	}
	.wpmslider-wrapper {
	  margin-right: 0;
  }
}
/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
}

.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  min-height: 15vh;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}

.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: center;
  display: inline-block;
  padding: 20px 10px;
  border-radius: 3px;
  opacity: 1;
  z-index: 100;
}
.feature .title h1 {
  color: #fff;
  margin-bottom: 0;
  font-size: 2.8rem;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .feature {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .feature .title h1 {
    font-size: 1.8rem;
  }
}



/*
  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;
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/

.callouts-section-bg {
	box-shadow: 0 -5px 30px -5px rgba(0, 0, 0, .1);
}
.callouts-section {
  padding-block: 4rem;
  text-align: center;
}
.callouts-section h3 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}
.callouts-section .callouts {
  display: flex;
  gap: 10px 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.callouts-section .callouts .btn {
  width: 100%;
}

/* Main Footer Area */
.site-footer-bg {
  background: var(--blue);
  padding-block: 4rem;
  box-shadow: inset 0 45px 45px -10px rgba(47, 72, 88, 0.4);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  justify-items: center;
  align-items: center;
  gap: 30px;
}
.site-footer > *, .site-footer a {
  color: var(--white);
}
.site-footer a:hover {
  color: var(--orange);
  opacity: 1;
}
.site-footer p {
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.1;
}
.site-footer .corp-contact,
.site-footer .contact {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer .corp-contact {
  justify-self: start;
}
.site-footer .corp-contact p.phone,
.site-footer .corp-contact a {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 5px;
}
.site-footer .corp-contact p a {
  font-size: 1.2rem;
}
.site-footer .corp-contact .hours {
  font-size: 0.8rem;
  font-weight: 400;
}
.site-footer .footer-logo {
  width: 225px;
}
.site-footer .footer-logo:hover {
  opacity: 0.65;
}
.site-footer .contact {
  justify-self: end;
}
.site-footer .contact p {
  font-size: 1.2rem;
  font-weight: 900;
}
.site-footer hr {
  grid-column: 1/-1;
  width: 100%;
  margin-block: 10px;
  background: var(--blue-light);
}
.site-footer .address,
.site-footer .address > *,
.site-footer .rights,
.site-footer .rights > *,
.site-footer .cred {
  font-size: 0.7rem;
}
.site-footer .address {
  justify-self: start;
  position: relative;
  vertical-align: middle;
}
.site-footer .rights {
  text-align: center;
}
.site-footer .cred {
  justify-self: end;
}
.site-footer .social-icons {
  grid-column: 1/-1;
}
.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus {
  opacity: 0.65;
}
.site-footer .social-icons .icon {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.site-footer .social-icons .fb {
  background: url("img/icon-fb.svg") center/100% no-repeat;
}
.site-footer .social-icons .yt {
  background: url("img/icon-yt.svg") center/100% no-repeat;
}
.site-footer .social-icons .icon:hover {
  background-color: var(--white);
  opacity: 1;
}

@media (max-width: 1000px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }
  .site-footer .corp-contact,
  .site-footer .contact,
  .site-footer .address,
  .site-footer .cred {
    justify-self: center;
    margin-bottom: 0;
  }
  .site-footer .footer-logo {
    grid-row: 1;
  }
  .site-footer .contact {
    grid-row: 2;
  }
}



/*-------------------------------------
  PLUGINS
--------------------------------------*/
/* Woocommerce */

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce a.add_to_cart_button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button {
	display: inline-block;
    background: var(--orange) !important;
    color: var(--white);
    border-radius: 0 !important;
/*     border: 2px solid var(--orange-light); */
    padding: 10px 25px;
    margin: 0 0 .6rem;
    max-width: 300px;
    text-decoration: none;
    line-height: 1.1;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease-in-out !important;
}
.woocommerce #respond input#submit, .woocommerce a.button:hover, .woocommerce a.add_to_cart_button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .wc-block-cart__submit-button:hover, #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button:hover {
	background: var(--orange-light);
	color: #fff !important;
	border-radius: 0;
}
.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
	background: var(--orange) !important;
	color: var(--orange)
	opacity: .2;
}
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button {
	background: var(--orange);
	color: #fff !important;
	transition: all .2s ease-in-out !important;
}
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover {
	opacity: .65;
	color: #fff;
}
h2.woocommerce-loop-product__title:hover {
	text-decoration: underline;
}

form.woocommerce-ordering select {
	background: var(--navy);
	border: none;
	box-shadow: none;
	padding: 5px 10px;
	color: #fff;
	opacity: .7;
}
.woocommerce .product_meta {
	display: none !important;
}

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