/*
Theme Name: Everlasting Purpose Theme
Author: Jesse Adkins
Author URI: http://jesseadkins.com
Version: 1.0
Description: A custom theme for Everlasting Purpose Life Coaching.
*/
.debug {
  border: 1px solid pink;
}

/* BASE STYLES */
body {
  font: 300 1.125rem/150% "Roboto", sans-serif;
  color: #121212;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair", serif;
  color: #121212;
}

h2 {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
  h2.display-6.sm-font {
    font-size: calc(1.25rem + 1vw);
  }
}
@media (max-width: 350px) {
  h2.display-6.sm-font {
    font-size: 24px;
  }
}
/* UTILITIES */
/* Font Colors */
.ep-color-white {
  color: #fff;
}

.ep-color-black {
  color: #121212;
}

.ep-color-grey {
  color: #e1e1e1;
}

/* Background Colors */
.ep-bg-white {
  background-color: #fff;
}

.ep-bg-black {
  background-color: #121212;
}

.ep-bg-mint {
  background-color: hsl(97, 100%, 89%);
}

.ep-bg-dark-grey {
  background-color: #e1e1e1;
}

.bg-mint {
  background-color: hsl(97, 100%, 89%);
}

/* Sizing */
/* content max width */
.max-box-width {
  max-width: 1600px;
  margin: 0 auto;
}

/* Buttons/Links */
a {
  color: #121212;
  text-decoration: none;
  font-weight: 400;
}

a:hover {
  color: rgba(18, 18, 18, 0.75);
}

.ep-btn,
a.ep-btn {
  border: none;
  padding: 15px 20px;
  font-weight: 300;
}

#nav-menu .ep-btn {
  padding-top: 10px;
  padding-bottom: 10px;
}

#nav-menu a,
.link-light {
  font-weight: 300;
}

.ep-btn-dark {
  background-color: #121212;
  color: #fff;
}
.ep-btn-dark:hover {
  color: #fff;
}

.ep-btn-light {
  background-color: #fff;
  color: #121212;
}

a,
button {
  border-radius: 0 !important;
  text-transform: uppercase;
  cursor: pointer;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

.bg-dark,
a.bg-dark,
button.bg-dark,
a.btn {
  background-color: #121212 !important;
}

/* Quote Marks */
.ep-quote {
  display: inline-block;
  -webkit-transform: translate(-5%, -10%);
          transform: translate(-5%, -10%);
}

.quote-right {
  -webkit-transform: scaleX(-1) translate(-5%, -10%);
          transform: scaleX(-1) translate(-5%, -10%);
}

/* LAYOUT STYLES */
/* Page Banner */
.banner {
  min-height: 50vh;
  max-height: 680px;
}
.banner.my-story {
  background-image: url("../img/my-story-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.banner.work-with-me {
  background-color: #121212;
}

.page-banner {
  position: relative;
  height: 650px;
}

@media (max-width: 567px) {
  .page-banner {
    height: 800px;
  }
}
.page-banner-img {
  position: absolute;
  background-position: bottom left;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* Square Image */
.square-img-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.square-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-bg {
  background-image: url("img/jackie-headshot.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .img-bg {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .img-bg.about {
    min-height: 500px;
  }
}
@media (min-width: 769px) {
  .img-bg {
    background-position: center 80%;
  }
}
@media (min-width: 1297px) {
  .img-bg {
    min-height: 550px;
  }
}
.img-bg.about-history {
  background-image: url("../img/my-story-history.png");
  background-position: 10% bottom;
}
.img-bg.services-essential-growth, .img-bg.about-coaching {
  background-image: url("img/services-essential-growth.png");
  background-position: center;
}
.img-bg.services-advanced-growth {
  background-image: url("img/services-advanced-growth.png");
  background-position: center;
}
.img-bg.vip-mastery {
  background-image: url("img/services-vip-mastery.png");
  background-position: center;
}

/*  Section Header */
.section-heading {
  width: 65%;
  margin: 0 auto 24px auto;
}

@media (max-width: 900px) {
  .section-heading {
    width: 80%;
  }
}
@media (max-width: 665px) {
  .section-heading {
    width: 100%;
  }
}
/* Section Container */
.section-container {
  padding: 75px;
}

@media (max-width: 992px) {
  .section-container {
    padding: 50px;
  }
}
@media (max-width: 576px) {
  .section-container {
    padding: 50px 25px;
  }
}
@media (max-width: 350px) {
  .section-container {
    padding: 50px 10px;
  }
}
/* Testimonial Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 25px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: auto;
  }
}
/* Checkmark List */
.custom-list {
  list-style: none;
  padding: 0;
}
.custom-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* END LAYOUT STYLES */
/* SINGLE PAGE COMPONENTS */
/* HOME PAGE */
/* Banner */
.home-banner {
  height: 100vh;
  background-image: url("../img/home-header-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}

/* Client Success Section */
.client-success-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
}

@media (max-width: 900px) {
  .client-success-grid {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
}
.client-success-items {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 1.5rem);
          flex: 1 0 calc(100% - 1.5rem);
}

@media (min-width: 567px) {
  .client-success-items {
    -ms-flex-preferred-size: calc(50% - 1.5rem);
        flex-basis: calc(50% - 1.5rem);
  }
}
@media (min-width: 768px) {
  .client-success-items {
    -ms-flex-preferred-size: calc(33% - 1.5rem);
        flex-basis: calc(33% - 1.5rem);
  }
}
@media (min-width: 1280px) {
  .client-success-items {
    -ms-flex-preferred-size: calc(20% - 1.5rem);
        flex-basis: calc(20% - 1.5rem);
  }
}
/* Service Preview Section */
.service-preview-items {
  max-width: 100%;
}

@media (min-width: 820px) {
  .service-preview-items {
    max-width: calc(33% - 1rem);
  }
}
@media (min-width: 1250px) {
  .service-preview-items {
    max-width: 350px;
  }
}
/* ABOUT PAGE */
/* SERVICES PAGE */
/* Services Section */
.services-label {
  text-transform: uppercase;
}

/* Process Section */
.process-num {
  font-family: "Playfair", serif;
}

.process-items {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 1.5rem);
          flex: 1 0 calc(100% - 1.5rem);
}

@media (min-width: 567px) {
  .process-items {
    -ms-flex-preferred-size: calc(50% - 1.5rem);
        flex-basis: calc(50% - 1.5rem);
  }
}
@media (min-width: 930px) {
  .process-items {
    -ms-flex-preferred-size: calc(33% - 1.5rem);
        flex-basis: calc(33% - 1.5rem);
  }
}
@media (min-width: 1300px) {
  .process-container {
    width: 75%;
    margin: 0 auto;
  }
}
/* END SINGLE PAGE COMPONENTS */
/* MEDIA QUERIES */
@media (max-width: 365px) {
  #header .navbar-brand {
    display: none;
  }
}
/* PLUGIN CUSTOM STYLES */
/* WPForms Custom Styles */
.wpforms-form .wpf-custom-styles legend,
.wpforms-form .wpf-custom-styles label {
  font: 300 16px "Roboto", sans-serif;
}

.wpforms-form .wpf-custom-styles:first-child {
  padding-top: 0;
}

div .wpforms-submit-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-container iframe {
  aspect-ratio: 16 / 9!important;
  width: 100%!important;
}