@charset "UTF-8";
/*
Theme Name: Launch Coaching & Development 2025
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: lc
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
  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 {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
 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-dark: #202835;
  --blue: rgb(41, 50, 64);
  --blue-light: #e2f3f6;
  --grey-dark: #444b54;
  --salmon: #fb8576;
  --primary-font-color: var(--grey-dark);
  /*
    Global Font Colors
  */
  --primary-color: var(--grey-dark);
  --h-color: var(--blue-medium);
  --p-color: var(--primary-font-color);
  --nav-color: var(--primary-font-color);
  --accent-color: var(--blue-light);
}

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

/*
    Global Font Styles
*/
:root {
  --primary-font: "Mulish", sans-serif;
  --h-font: "Plus Jakarta Sans", sans-serif;
  --btn-font: "Plus Jakarta Sans", sans-serif;
  --p-font: var(--primary-font);
  --nav-font: "Plus Jakarta Sans", sans-serif;
  --accent-font: "Plus Jakarta Sans", sans-serif;
}

/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width: 1400px;
}

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

body {
  font-family: var(--primary-font);
  -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: var(--h-font);
  color: var(--h-color);
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.4;
  text-wrap: balance;
}

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

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

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

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

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

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

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 {
  color: unset;
  text-transform: unset;
}

.content h2 {
  color: unset;
  text-transform: unset;
}

.content h3 {
  color: unset;
  text-transform: unset;
}

.content h4 {
  color: unset;
  text-transform: unset;
}

.content h5 {
  color: unset;
  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;
  transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.6;
}

.content a:not(.btn, .button) {
  font-weight: 700;
  color: var(--primary-font-color);
  text-decoration: underline;
}

.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: 1.5rem;
}

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

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

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

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

strong {
  font-weight: 700;
}

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

/*
  Scroll MArgin Top
*/
[id] {
  scroll-margin-top: 8rem;
}


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

/* Adjusts the padding when using .full-width inside kadence blocks */
.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: 0px 10px 6px -10px rgba(60, 60, 60, 0.3);
}

/*
  Horizontal Rule
*/
hr {
  width: 100%;
  height: 1px;
  color: var(--white);
  opacity: 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);
}

/*-------------------------------------
  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: var(--wrapper-max-width);
}

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

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

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

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

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

/* 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;
  font-size: 0.875rem;
  background: var(--salmon);
  color: var(--white);
  border-radius: 30px;
  padding: 16px 28px;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-transform: capitalize;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.btn.btn--secondary {
  background: var(--none);
  border: 1px solid var(--blue);
  color: var(--blue);
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  background: var(--blue);
  color: var(--white);
  opacity: 1;
}

.btn.btn--secondary.white {
  border: 1px solid var(--white);
  color: var(--white);
}
.btn.btn--secondary.white:hover, .btn.btn--secondary.white:focus {
  background: var(--blue);
  color: var(--white);
  opacity: 1;
}

.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 preceding text
*/
.icon-before {
  position: relative;
}
.icon-before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Icon following text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 15px;
  margin-left: 15px;
  vertical-align: middle;
  background: url("img/icon-arrow.svg") center/80% no-repeat;
}

/*
  Stroke below text
*/
.stroke {
  position: relative;
}
.stroke::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -1rem;
  left: -15px;
  width: 100%;
  height: 15px;
  margin-left: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
}


.stroke.stroke--dark::after {
  background: url("img/stroke-1.svg") center no-repeat;
}

.stroke.stroke--light::after {
  background: url("img/stroke-2.svg") center no-repeat;
}

/*
  Social Icons
*/
/*
  Animations --------------------
*/
@keyframes leftToRight {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}


/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Site Header
*/
.site-header {
  position: sticky;
  inset: 0;
  background: var(--blue-light);
/*   padding-inline: 2rem; */
  padding-block: 1rem;
  z-index: 1000;
}
.site-header .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0px 10px;
  align-items: center;
}
.site-header .inner .main-logo {
	margin-left: -7px;
}
.site-header .inner .main-logo img {
  width: 225px;
}
.site-header .inner .btn.schedule {
  margin-left: 3rem;
}
.site-header .inner .btn.schedule:hover {
  background: var(--blue-dark);
}

/* Site header inside page adjustments */
.main-logo-inside {
  display: none;
}

body:not(.home) .site-header {
  position: fixed;
  inset: unset;
  top: 0;
  left: 0;
  width: 100%;
  background: unset;
  z-index: 1000;
}
body:not(.home) .site-header .inner .main-logo {
  display: none;
}
body:not(.home) .site-header .inner .main-logo-inside {
  display: block;
}
body:not(.home) .site-header .inner .main-nav ul li a {
  color: var(--white);
}
body:not(.home) .site-header .inner .main-nav ul ul li a {
  color: var(--primary-font-color);
}
body:not(.home) .site-header .inner .main-nav ul ul li:hover a {
  color: var(--white);
}
body:not(.home) .site-header .inner .btn.schedule {
  border-color: var(--white);
  color: var(--white);
}
body:not(.home) .site-header .inner .btn.schedule:hover {
  background: var(--blue-dark);
  opacity: 1;
}

/* Add styles here to shrink down header after scroll */
.site-header.shrink {
  padding-block: 0.25rem;
}
body:not(.home) .site-header.shrink {
  background: var(--blue);
}
body:not(.home) .site-header.shrink .main-nav ul li a {
  color: var(--white);
}

/*
  Main Navigation
*/
.main-nav .menu-main-menu-container {
  height: 100%;
}

.main-nav {
  height: 100%;
}
.main-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.main-nav .menu-main-menu-container > ul > li {
  display: flex;
  align-items: center;
  margin-inline: 2.5%;
  height: 100%;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid transparent;
  color: var(--nav-color);
  padding: 3px 10px 3px 10px;
  margin-bottom: 0;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a:hover, .main-nav .menu-main-menu-container > ul > li > a:focus {
  opacity: 1;
  border-bottom: 2px solid var(--salmon);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  display: none;
  margin: 0;
  position: absolute;
  padding: 0;
  opacity: 0;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  min-width: 100px;
  height: auto;
  background-color: var(--white);
  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;
}

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

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

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

.main-nav ul ul li a {
  display: block;
  color: var(--primary-font-color);
  padding: 13px 1rem 13px 1rem;
  text-align: center;
  font-size: 0.675rem;
  text-align: center;
  text-transform: uppercase;
}

.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;
  transition: all 0.5s ease;
  z-index: 6000;
}
.menu-icon span {
  display: block;
  width: 40px;
  height: 3px;
  margin-block: 9px;
  background: var(--blue);
}

body:not(.home) .menu-icon span {
  background: var(--white);
}

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

/*
  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: 5000;
  background: var(--blue);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
}

.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;
  margin-bottom: 15px;
  width: 100%;
}

.mobile-nav ul li:not(:last-of-type) {
  border-bottom: 3px solid var(--gold);
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--white);
  padding: 8px 15px;
  text-transform: uppercase;
  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: none;
}

.mobile-nav li:hover > 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: 0.95rem;
  font-weight: 400;
  border-bottom: none;
}

.mobile-nav .btn {
  border: none;
  margin-bottom: 1rem;
}
.mobile-nav .btn:hover, .mobile-nav .btn:focus {
  opacity: 0.65;
}

/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds color to active link via wordpress class */
/*
  Search Form
*/
.search-form {
  display: grid;
  grid-template-columns: 5fr auto;
  align-content: center;
  padding: 3px;
  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;
  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 .btn.schedule {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
/*
  HERO
*/
.hero {
  background: var(--blue-light);
}
.hero > .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero > .inner .left {
  padding-inline: var(--gap-fluid) 2rem;
  padding-top: 3rem;
}
.hero > .inner .left .left-inner {
  max-width: 900px;
  padding-bottom: 2rem;
}
.hero > .inner .left .left-inner h1 {
  font-size: clamp(2.4rem, 1.971rem + 1.143vw, 3rem);
  text-wrap: balance;
  line-height: 1.3;
}
.hero > .inner .left .left-inner p {
  max-width: 60ch;
}
.hero > .inner .left .left-inner .flex-group {
}
.hero > .inner .left .left-inner .flex-group > * {
  flex: unset;
}
.hero > .inner .right {
	height: 100%;
}
.hero > .inner .right .right-inner {
	display: grid;
	align-items: end;
  height: 100%;
  width: 100%;
  border-radius: 30px 0 0 0;
  min-height: 500px;
  background: url("img/hero-3.jpg") center/100% no-repeat;
  background-size: cover;
}
.hero > .inner .right .right-inner .banner {
  padding-block: 1.5rem;
  background: var(--salmon);
  text-align: center;
}
.hero > .inner .right .right-inner .banner p {
	color: var(--white);
	margin: 0;
	display: inline-block;
	font-weight: 700;
}

@media (max-width: 900px) {
  .hero .inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero .inner .flex-group {
    justify-content: center;
  }
  .hero .inner .right {
	width: 100%;
	overflow: hidden;
    position: relative;
  }
  .hero .inner .right::after {
    content: "";
    position: absolute;
    height: 80%;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--blue);
  }
  .hero .inner .right .right-inner {
	width: 100%;
	margin-left: 2rem;
    position: relative;
    z-index: 100;
  }
  .hero > .inner .right .right-inner .banner {
	grid-row: 2;
    background: var(--blue);
  }
  .hero > .inner .right .right-inner .banner p {
	transform: translateX(-2rem);
  }
 
}


/*
  HOME SERVICES SECTION
*/
.services {
  background: var(--blue);
}
.services .inner.wrapper {
  padding-bottom: 8rem;
}
.services .inner header {
  text-align: center;
  color: var(--white);
  margin-bottom: 5rem;
}
.services .inner header > * {
  color: var(--white);
}
.services .inner .service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 2rem;
	justify-items: center;
}
.services .inner .service-cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  color: var(--white);
  height: 100%;
}

.services .inner .service-cards .card .copy > * {
  color: var(--white);
}
.services .inner .service-cards .card .copy p {
  margin-bottom: 0;
  text-wrap: balance;
}
.services .inner .service-cards .card img {
  border-radius: 50%;
  width: 125px;
}
.services .inner .service-cards .card .copy {
  background: var(--blue-dark);
	border-radius: 30px;
	padding: 1.5rem 1rem;
	height: 100%;
}
.services .inner .service-cards .card .copy p.title {
  font-size: 1.2rem;
	color: var(--salmon);
  margin-bottom: 1rem;
	font-weight: bold;
  line-height: 1.2;
}
.services .inner .service-cards .card .copy .desc {
  font-size: 0.925rem;
  max-width: 40ch;
}

@media (max-width: 900px) {
	.services .inner .service-cards {
		grid-template-columns: 1fr;
	}
}


/*
  HOME ABOUT SECTION
*/
.about {
  background: var(--blue-light);
}
.about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  align-items: center;
  justify-items: center;
}
.about .inner .left {
  padding-block: 3rem;
}
.about .inner img {
	align-self: start;
  width: 100%;
  height: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  border-right: 8px solid var(--salmon);
  transform: translateY(-2rem);
}

@media (max-width: 800px) {
  .about {
    background: unset;
  }
  .about .inner {
    grid-template-columns: 1fr;
  }
	.about .inner img {
		transform: translateY(-4rem);
	}
  .about .inner .left {
    grid-row: 2;
    text-align: center;
    padding-bottom: 0;
    transform: translateY(-6rem);
  }
}
/*
  HOME DISCOVERY STATS SECTION
*/
.discovery-stats .discovery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 3rem;
}
.discovery-stats .discovery img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 30px 30px 0;
}
.discovery-stats .discovery .right-inner {
  padding-inline: 2rem;
  max-width: 60ch;
}
.discovery-stats .discovery .right-inner .right {
  margin-bottom: 1rem;
}
.discovery-stats .stats-wrap .stats {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem 3rem;
  padding-block: 2rem;
  --swiper-navigation-sides-offset: -10%;
  --swiper-pagination-bottom: -2rem;
}
.discovery-stats .stats-wrap.mobile {
	display: none;
}
.discovery-stats .stats-wrap .stats .stat {
  background: var(--salmon);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-align: center;
}
.discovery-stats .stats-wrap .stats .stat > * {
  color: var(--white);
}
.discovery-stats .stats-wrap .stats .stat .number {
  font-size: 3.5rem;
  margin: 0;
}
.discovery-stats .stats-wrap .stats .stat .text {
  font-size: 0.95rem;
  line-height: 1.1;
	font-weight: 700;
}

@media (max-width: 900px) {
	.discovery-stats .stats-wrap .stats {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 800px) {
  .discovery-stats .discovery {
    grid-template-columns: 1fr;
  }
  .discovery-stats .discovery img {
    justify-self: start;
    width: calc(100% - 2rem);
  }
  .discovery-stats .discovery .right .right-inner {
    text-align: center;
  }
	.discovery-stats .stats-wrap {
		display: none;
	}
	.discovery-stats .stats-wrap.mobile {
		display: block;
	}
}
@media (max-width: 600px) {
	.discovery-stats .stats-wrap .stats {
		grid-template-columns: 1fr;
	}
}


/*
  HOME TESTIMONIALS SECTION
*/
.testimonials {
  padding-block: 4rem 2rem;
  background: vaR(--blue-light);
}
.testimonials .inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}
.testimonials .inner .right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1000px) {
  .testimonials .inner {
    display: block;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/**************************************
  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: rgba(41, 50, 64, 0.6);
}
.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  min-height: 450px;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: center;
  display: inline-block;
  max-width: 53ch;
  text-align: center;
  z-index: 100;
}
.feature .title h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 1.971rem + 1.143vw, 3rem);
  margin-bottom: 1rem;
}
.feature .title p {
  color: var(--white);
	font-size: 1.2rem;
	line-height: 1.3;
	text-wrap: balance;
}
.feature .schedule,
.feature .pricing {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--white);
  z-index: 100;
}
.feature .schedule {
  justify-self: start;
  margin-left: var(--gap-fluid);
}
.feature .pricing {
  justify-self: end;
  margin-right: var(--gap-fluid);
}

/*
  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
--------------------------------------*/
/* How Section */
body:not(.home) .how {
  background: none;
}

.how {
  background: var(--blue-light);
}
.how .inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  justify-items: center;
}
.how .inner .left {
  padding-block: 3rem;
  width: 100%;
}
.how .inner .left details {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
  width: 80%;
  border-bottom: 1px solid var(--primary-color);
}
.how .inner .left details:first-of-type {
  border-top: 1px solid var(--primary-color);
}
.how .inner .left details * {
  color: var(--primary-font-color);
}
.how .inner .left details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
}
/* .how .inner .left details[open] summary {
	color: var(--salmon);
} */
.how .inner .left details summary:hover > * {
	color: var(--salmon);
}
.how .inner .left details summary::after {
  content: "+";
  font-size: 1.4rem;
}
.how .inner .left details p {
  font-size: 0.875rem;
  max-width: 50ch;
}
.how .inner .left details[open] summary::after {
  content: "−";
}

.how .inner img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  border-right: 8px solid var(--salmon);
  transform: translateY(4rem);
  z-index: 10;
}

@media (max-width: 900px) {
  .how .inner {
    grid-template-columns: 1fr;
  }
  .how .inner .left {
    padding-bottom: 0;
  }
  .how .inner .left .accent {
    text-align: center;
  }
  .how .inner .left details {
    width: 100%;
  }
}
/* Next Steps */
body.home .next-steps hr {
  display: none;
}

body:not(.home) .next-steps {
  padding-block: 8rem 4rem;
  background: none;
  background-color: var(--blue-dark);
}
body:not(.home) .next-steps::after {
  content: none;
}
body:not(.home) .next-steps hr {
  margin-block: 4rem 0;
}

.next-steps {
  padding-block: 8rem 5rem;
  background: url("img/next-steps-bg.png") center/100% no-repeat;
  background-size: cover;
  position: relative;
}
.next-steps::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 0.8;
}
.next-steps .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}
.next-steps .inner * {
  color: var(--white);
}
.next-steps .inner p:not(.accent) {
  font-size: 1.4rem;
  max-width: 60ch;
}

/* Footer Form */
.form {
	padding-block: 3rem;
	background: var(--blue);
}
.form .inner {
	max-width: 900px;
}
.form .inner h6,
.form .gfield_label,
.form .gform-field-label,
.form .gform_required_legend {
	color: var(--white);
}
.form .gform_button {
	border: none;
	box-shadow: none;
}
.form .gform_button:hover {
	opacity: .6;
}

/* Main Footer Area */
.site-footer {
  background: var(--blue-dark);
  padding-block: 5rem 0;
}
.site-footer .inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
  padding-bottom: 1rem;
}
.site-footer .inner p,
.site-footer .inner a,
.site-footer .inner address,
.site-footer .inner p.cred {
  font-size: 0.85rem;
  color: var(--white);
}
.site-footer .inner .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-footer .inner .left img {
  width: 175px;
}
.site-footer .inner .left p {
  color: var(--white);
  max-width: 40ch;
  font-weight: 200;
  margin: 0;
}
.site-footer .inner .right {
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 2rem 3rem;
}
.site-footer .inner .right * {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 200;
  color: var(--white);
}
.site-footer .inner .right > * {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer .inner .right p.title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.site-footer .inner .right .footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer .inner .right .footer-nav ul li.menu-item-has-children .sub-menu {
  display: none;
}
.site-footer .inner .right .connect .linkedin {
    width: 25px;
	height: 25px;
	background: url("img/icon-linkedin-salmon.svg") center/100% no-repeat;
}
.site-footer .inner .right p.phone {
	margin-bottom: .5rem;
}
.site-footer .inner hr {
  grid-column: 1/-1;
  width: 100%;
  margin: 0.5rem;
}
.site-footer .inner p.cred {
  grid-column: 1/-1;
  text-align: center;
  margin: 0;
  font-weight: 200;
}

@media (max-width: 850px) {
  .site-footer .inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer .inner .left {
    align-items: center;
  }
  .site-footer .inner .right {
    justify-self: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }
	.site-footer .inner .right > * {
		justify-items: center;
		align-items: center;
	}
  .site-footer .inner .right p.title {
    margin-bottom: 0.25rem;
  }
  .site-footer .inner .right nav {
    display: none;
  }
}
/*
  PLUGINS
*/
/* Swiper Styles */
.swiper-slide {
  height: auto !important;
}

.swiper-button-next,
.swiper-button-prev {
  right: 1rem;
  color: var(--salmon) !important;
  padding: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem;
}

.stats-wrap .swiper-button-next,
.stats-wrap .swiper-button-prev {
  color: var(--blue) !important;
}
.stats-wrap .swiper-button-next::after,
.stats-wrap .swiper-button-prev::after {
  font-size: 2rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 1rem;
  color: #ffffff;
}

/* Swiper Styles */

.strong-view-id-1 .wpmtst-testimonial {
  background: var(--white);
  border-radius: 30px !important;
}
.strong-view-id-1 .wpmtst-testimonial .wpmtst-testimonial-inner {
  padding: 1rem 1rem !important;
	border-radius: 30px !important;
}

.wpmtst-testimonial-content {
  margin: 0 1rem !important;
}
.wpmtst-testimonial-content p {
  font-size: 0.8rem;
}
.wpmtst-testimonial-content::before, .wpmtst-testimonial-content::after {
  display: none !important;
}

.wpmtst-testimonial-inner {
  display: flex !important;
  flex-direction: column;
}

.strong-view-id-1 .wpmtst-testimonial-inner {
  align-items: flex-start;
}

.strong-rating-wrapper {
  order: 1;
}

.testimonial-name {
  order: 2;
  margin-bottom: 0.25rem;
}

.testimonial-content {
  order: 3;
}

.strong-view-id-1 .testimonial-content {
  margin: 0 !important;
}
.strong-view-id-1 .testimonial-content p {
  text-align: left !important;
}

.strong-view-id-2 .wpmtst-testimonial-content p {
  font-size: 1rem;
}

.strong-rating-wrapper .star svg {
  width: 12px !important;
}

.strong-rating-wrapper .star svg path {
  fill: var(--blue) !important;
}
.wpmslider-controls-direction .wpmslider-next {
	width: 40px;
	height: 20px;
  background-image: url("img/right-arrow.svg") center/100% no-repeat !important;
}
.wpmslider-controls-direction .wpmslider-next::before {
	content: none;
	
}



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