/* RESET 2020 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@300;400;700&display=swap");
/* / / / / / / / / / */
/*  SASS VARIABLES /  */
/* / / / / / / / /  */
/* colors */
/* fonts */
/* border radius */
/* drop shadow */
/* basic animation */
/* variables for image thumbnail styles */
*, ::after, ::before {
  box-sizing: border-box;
}

ol[class], ul[class] {
  padding: 0;
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  font-family: "Nunito", sans-serif;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background: #666;
  color: #fff;
}

body.home {
  background: #000;
}

ol[class], ul[class] {
  list-style: none;
}

a {
  color: #D5202B;
  font-weight: 500;
  text-decoration: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1em;
}

button, input, select, textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

.home main {
  background: #222222;
  color: #fff;
}

@media (min-width: 1001px) {
  .home main {
    background: url(/wp-content/themes/bj2022/img/home/bg-blueprint.svg) no-repeat top center;
    background-size: contain;
  }
}
/* / / / / / / / */
/* COMPONENTS / */
/* / / / / / / */
/* row and column */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row .column {
  padding: 0 20px 20px;
  flex: 0 0 100%;
}
.row .column:last-child {
  padding: 20px;
}

@media (min-width: 1001px) {
  .row {
    display: flex;
    flex-wrap: nowrap;
  }
  .row .column {
    flex: 0 0 50%;
    padding: 0 20px 20px;
  }
  .row .column:last-child {
    padding: 20px;
  }
}
/* Learn More Button */
a {
  text-decoration: none;
}

a.learn-more {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #fff;
  padding: 12px 20px;
  background-color: #D5202B;
  letter-spacing: 1px;
  border-radius: 5px;
  box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  display: inline-block;
}
a.learn-more:hover {
  background-color: #b21b24;
  transform: scale(1.02);
}

a.learn-more-secondary {
  text-decoration: none;
  color: #D5202B;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
a.learn-more-secondary:hover {
  background-color: #fff;
  color: #222222 !important;
}

.inline-buttons {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0px auto;
  justify-content: space-around;
}
.inline-buttons a {
  display: flex;
  margin: 20px;
}

@media (min-width: 1001px) {
  .inline-buttons {
    flex-wrap: nowrap;
  }
  .inline-buttons a {
    margin: 0;
  }
}
/* Common Form Elements */
select, input[type=text] {
  height: 38px;
  background-color: #fff;
  border: none;
  padding-left: 6px !important;
  border-radius: 0px;
}

::-moz-placeholder {
  color: darkgray !important;
}

::placeholder, select {
  color: darkgray !important;
}

body .gform_wrapper .gform_footer input[type=submit] {
  padding: 0px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  height: 38px;
  background-color: #D5202B;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease-in !important;
  box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.3);
}
body .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: #e3e3e3;
  color: #222222;
  transform: scale(1.08);
  transition: all 0.3s ease-in !important;
}

#req-form .gform_wrapper .gform_footer input[type=submit] {
  width: 100%;
  height: 58px;
  font-size: 20px;
  margin: 0px auto;
}

@media (min-width: 1001px) {
  #req-form .gform_wrapper .gform_footer input[type=submit] {
    width: 50%;
  }
}
.gform_fields .gfield .ginput_container textarea {
  height: 90px;
  border: none;
}

div.gform_wrapper form div.gform_body ul.gform_fields li.gfield.gf_left_half, div.gform_wrapper form div.gform_body ul.gform_fields li.gfield.gf_left_third, div.gform_wrapper form div.gform_body ul.gform_fields li.gfield.gf_middle_third {
  padding-right: 14px;
}
div.gform_wrapper form div.gform_body ul.gform_fields li .gfield_label {
  font-size: 14px;
  padding: 0;
  font-weight: 500;
  color: #fff;
  margin: 4px 0px;
}
div.gform_wrapper form div.gform_body ul.gform_fields li .gfield_required {
  color: #fff;
}

.page-template-full-page select, .page-template-full-page input[type=text] {
  border: 2px solid #ccc;
}

/* / / / / / */
/* HEADER / */
/* / / / / */
header {
  padding: 0px 6%;
  width: 100%;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #000;
  overflow: visible;
  z-index: 999;
}

@media (min-width: 1001px) {
  header {
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
  }
}
a.logo-link {
  padding: 8px 0px;
  height: 100%;
  flex: 0 0 auto;
}

.logo {
  height: 50px;
  position: absolute;
  top: 15px;
  left: 5%;
  z-index: 10;
  width: auto;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
  transition: height 0.1s ease-in;
}

@media (min-width: 1001px) {
  .logo {
    height: 60px;
    top: 10px;
  }
}
@media (min-width: 1001px) {
  body.header-not-at-top header {
    position: fixed;
  }
}
/* scroll header sticky */
#top-of-site-pixel-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0px;
  left: 0;
}

nav {
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  height: 100%;
  display: flex;
  align-items: center;
}
nav .current_page_ancestor a {
  color: #e3e3e3;
}
nav .current_page_item a {
  background: #D5202B;
  color: #fff !important;
}
nav .current_page_item a:hover {
  background: #b21b24;
}

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

#menu-header {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#menu-header > li {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
#menu-header > li a {
  font-weight: bold;
}
#menu-header > li.navigation-request-cta a {
  padding: 12px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #D5202B;
  background: #D5202B;
  height: 40px !important;
  transition: all 0.2s ease-in;
}
#menu-header > li.navigation-request-cta a:hover {
  color: #b21b24;
  background-color: #fff;
  border: 1px solid #fff;
  transition: all 0.2s ease-in;
}
#menu-header > li.navigation-phone-cta a {
  padding: 12px;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  height: 40px !important;
}
#menu-header > li.navigation-phone-cta a:hover {
  color: #fff;
  background-color: #D5202B;
  border: 1px solid #D5202B;
}
#menu-header li:not(:last-child) {
  padding-right: 26px;
}
#menu-header li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  border-top: 0px solid #D5202B;
  transition: opacity 0.2s ease-in-out;
  z-index: 9999;
}
#menu-header li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  margin: 0 0 0 5px;
}
#menu-header > li:hover > a {
  color: #D5202B;
  text-decoration: none;
}

.sub-menu {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  position: absolute;
  z-index: 90;
  margin: 0;
  height: auto;
  top: 60px;
  width: 360px;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.sub-menu li {
  margin: 0;
  display: block;
  text-align: left;
  padding: 0 !important;
}
.sub-menu li:not(:last-child) {
  padding: 0 !important;
}
.sub-menu a {
  font-size: 16px;
  font-weight: normal;
  color: #000 !important;
  text-transform: none;
  height: 100%;
  padding: 8px 12px;
  background: none;
}
.sub-menu a:hover {
  color: #fff !important;
  background: #D5202B;
}
.sub-menu.current-menu-item a {
  color: #fff !important;
  background: #D5202B !important;
}

/* / / / / */
/* HERO / */
/* / / / */
#hero-banner {
  display: flex;
  height: auto;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  align-items: center;
  justify-items: center;
  overflow: visible;
}

.hero-content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: auto;
  z-index: 11;
  align-self: center;
  margin: 0 auto;
  padding: 180px 0 0;
  position: relative;
}
.hero-content h1.hero-heading {
  font-size: 26px;
  max-width: 100%;
  line-height: 120%;
  color: #fff;
  text-shadow: 0 2px 10px #000000;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}
.hero-content h1.hero-heading .line-two {
  text-shadow: 0px 5px 24px rgba(0, 0, 0, 0.8);
  font-weight: bold;
}
.hero-content h1.hero-heading span.accent-text {
  text-decoration: none;
  color: #D5202B !important;
  position: relative;
}
@media (min-width: 1001px) {
  .hero-content h1.hero-heading {
    color: #fff;
    font-size: 68px;
    margin-bottom: 34px;
  }
}

@media (min-width: 1001px) {
  .hero-content {
    padding: 380px 0 0;
  }
}
/*** hero video ***/
#hero-video {
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6738270308) 0, rgba(0, 0, 0, 0.1444152661) 100%);
}

div#vid-bg-container, .overlay, #hero-video {
  height: 750px;
}

div#vid-bg-container {
  width: 100%;
  overflow: hidden;
}
div#vid-bg-container .overlay {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6738270308) 0, rgba(0, 0, 0, 0.1444152661) 100%);
  width: 100%;
  position: absolute;
  z-index: 1;
}

/**** horizontal form ****/
.horizontal-form-cta {
  background: #D5202B;
  text-align: center;
  padding: 24px;
  width: 0;
  margin: 0 auto;
  border-radius: 20px;
  transition: all 0.3s ease-in;
  box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.3);
  width: calc(100% - 100px);
  position: relative;
  margin-top: -100px;
  z-index: 888;
  justify-content: center;
  align-items: center;
}
.horizontal-form-cta .gform_fields {
  padding-right: 20px;
}
.horizontal-form-cta h2 {
  font-weight: bold;
  color: #fff !important;
  font-size: 1.2rem;
}
.horizontal-form-cta .gform_wrapper {
  margin: 0px;
}
.horizontal-form-cta .gform_wrapper .gform_footer {
  flex: 1 0px;
  margin-top: 0px !important;
  padding-top: 8px;
  opacity: 0;
  height: 100%;
}
.horizontal-form-cta .gform_wrapper .text {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
}
.horizontal-form-cta .gform_wrapper .text a {
  text-decoration: none;
}
.horizontal-form-cta .gform_wrapper label {
  border: none !important;
}
.horizontal-form-cta .gform_wrapper form {
  display: flex;
  border: none !important;
}
.horizontal-form-cta .gform_wrapper form input {
  border-radius: 4px;
}
.horizontal-form-cta .gform_wrapper form input[type=text], .horizontal-form-cta .gform_wrapper form .gform_footer {
  opacity: 1 !important;
  transition: all 0.6s ease-in-out !important;
}
.horizontal-form-cta .gform_wrapper form input[type=text]:focus, .horizontal-form-cta .gform_wrapper form .gform_footer:focus {
  transform: scale(1.08);
  transition: all 0.3s ease-in !important;
}
.horizontal-form-cta .gform_wrapper form .gform_body {
  flex: 5 0px;
}
.horizontal-form-cta .gform_wrapper form .gform_body div {
  display: flex;
}
.horizontal-form-cta .gform_wrapper form .gform_body div > div, .horizontal-form-cta .gform_wrapper form .gform_body div .gform_footer {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  color: #fff;
  margin-top: 0px;
  transition: all 0.1s ease-in;
}
.horizontal-form-cta .gform_wrapper form .gform_footer {
  margin-top: 0px !important;
  padding: 0 !important;
}
.horizontal-form-cta .gform_wrapper .text {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
}
.horizontal-form-cta .gform_wrapper .text a {
  text-decoration: none;
}
.horizontal-form-cta .gform_wrapper .subtext {
  margin-bottom: 12px;
  color: #fff;
}

.horizontal-form input[type=submit], .bottom-request input[type=submit] {
  background: #222222 !important;
}
.horizontal-form input[type=submit]:hover, .bottom-request input[type=submit]:hover {
  background: #000;
  color: #fff !important;
}

@media (min-width: 1200px) {
  div.horizontal-form h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  div.horizontal-form {
    padding: 24px 50px;
    width: calc(100% - 160px);
  }
}
@media (min-width: 1400px) {
  div.horizontal-form {
    transform: translate(0%, -10%);
  }
}
/* Split Hero */
.hero-left {
  flex-grow: 1;
  padding: 80px 0px;
}

.hero-right {
  flex: 0 0 400px;
}

/* / / / / / / / */
/* TYPOGRAPHY / */
/* / / / / / / */
h1 {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 24px;
  color: #000;
  line-height: 120%;
}

@media (min-width: 1001px) {
  h1 {
    font-size: 36px;
  }
}
h2 {
  font-family: "Poppins", sans-serif;
  line-height: 120%;
  margin-bottom: 18px;
  color: #222222;
  font-size: 24px;
}
h2.section-title {
  font-size: 38px;
  margin-bottom: 24px;
  line-height: 120%;
}

h3 {
  line-height: 120%;
  margin-bottom: 18px;
  color: #222222;
  text-transform: none;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
}

h4 {
  line-height: 120%;
  margin-bottom: 18px;
  color: #D5202B;
  text-transform: none;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

p, article ul {
  margin-bottom: 20px;
  line-height: 150%;
  font-size: 16px;
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  color: #000;
}

/* / / / / / */
/* TABLES / */
/* / / / / */
table {
  width: 100%;
}

th {
  background-color: #212121;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  padding: 5px;
}

tr {
  border-bottom: 1px solid #ccc;
}
tr:nth-child(even) {
  background-color: #efefef;
}

td {
  padding: 5px;
}

.lptw-advanced-table thead tr th {
  background: #212121 !important;
  color: #fff !important;
  font-family: sans-serif;
  font-size: 16px !important;
}
.lptw-advanced-table .default th {
  width: 20%;
}
.lptw-advanced-table .default td {
  font-size: 0.85em !important;
}
.lptw-advanced-table .default td:hover {
  background-color: transparent !important;
}

/* / / / / / / / */
/*   SECTIONS  / */
/* / / / / / / / */
/* split section - copy & image */
.split {
  width: 100%;
  height: auto;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  max-width: 1600px;
}

.split-copy {
  padding: 20px;
  flex: 0 0 100%;
  order: 1;
}

.split-image {
  flex: 0 0 100%;
  min-height: 460px;
  order: 2;
}

@media (min-width: 1001px) {
  .split {
    flex-wrap: nowrap;
  }
  .split-copy, .split-image {
    flex: 0 0 50%;
  }
  .split-copy {
    padding: 80px 50px 80px 6%;
    /* / / / / / */
  }
}
/* INTRO  / */
/* / / / / */
section#intro {
  padding: 25px;
}

#intro article.split-copy {
  padding: 0;
  background: none;
}
#intro article.split-copy .post {
  padding: 20px;
  background: #fff;
  color: #000;
  border-radius: 10px;
}
#intro .split-image {
  text-align: center;
  padding-top: 80px;
  min-height: 0 !important;
}

@media (min-width: 1001px) {
  #intro {
    margin: 0px auto;
  }
  #intro .split-image {
    padding-top: 180px;
  }
  #intro article.split-copy {
    order: 1;
    padding: 0;
    margin-top: 80px;
    margin-left: 50px;
    margin-right: -50px;
  }
  #intro article.split-copy .post {
    padding: 40px;
  }
}
/* / / / / / / / / */
/*    Reasons    / */
/* / / / / / / / / */
section#reasons {
  padding: 20px;
  text-align: center;
}
section#reasons h2, section#reasons h3, section#reasons p, section#reasons a {
  color: #fff;
}
section#reasons .reasons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section#reasons .reasons .reason {
  flex: 0 0 100%;
  text-align: left;
  padding: 40px;
  background: #222222;
  border-radius: 10px;
  margin-bottom: 10px;
}
section#reasons .reasons .reason .icon {
  text-align: center;
}

@media (min-width: 1001px) {
  section#reasons {
    padding: 40px 6% 80px;
  }
  section#reasons .reasons {
    flex-wrap: nowrap;
    padding-bottom: 20px;
  }
  section#reasons .reasons .reason {
    flex: 0 0 31%;
    margin-bottom: 0;
  }
  section#reasons .reasons .reason h2 {
    width: 2vw;
  }
}
.reason-number {
  font-size: 32px;
  margin-bottom: 0px;
  font-weight: 900;
}

.reason-title {
  font-size: 24px;
  margin-bottom: 10px;
  background-attachment: fixed;
  font-weight: 900;
}

/* / / / / / / / / */
/* COST & FEES  / */
/* / / / / / / / */
section#costs-fees {
  padding: 0px;
  background: #000 url(/wp-content/themes/bj2022/img/home/bg-costs-mobile.jpg) no-repeat bottom center/cover;
  display: flex;
  color: #fff;
}
section#costs-fees p.truck-icon {
  font-size: 90px;
}
section#costs-fees .split {
  max-width: 1400px;
  overflow: hidden;
}
section#costs-fees p.learn-more-spacing {
  margin: 40px 0px;
}
section#costs-fees .split-copy {
  padding: 0;
}
section#costs-fees .split-copy .cost-copy {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
section#costs-fees .split-copy > * {
  color: #fff;
  text-align: center;
}
section#costs-fees .split-copy h2 {
  font-size: 2rem;
  line-height: 150%;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222222;
}
section#costs-fees .split-copy h2 sup {
  font-size: 30px;
  margin-top: -30px;
}
section#costs-fees .split-copy em {
  font-style: normal;
  font-size: 50px;
  display: block;
  text-align: center;
}
section#costs-fees .split-copy strong, section#costs-fees .split-copy h2 {
  display: block;
  text-align: center;
}
section#costs-fees .split-copy span {
  display: block;
  text-align: center;
  position: relative;
  display: inline-block;
}
section#costs-fees .split-copy span:before, section#costs-fees .split-copy span:after {
  content: "";
  position: absolute;
  height: 25px;
  border-bottom: 1px solid #fff;
  top: 0;
  width: 50px;
}
section#costs-fees .split-copy span:before {
  right: 100%;
  margin-right: 15px;
}
section#costs-fees .split-copy span:after {
  left: 100%;
  margin-left: 15px;
}
section#costs-fees .split-copy strong {
  font-size: 56px;
  line-height: 100%;
}
section#costs-fees .split-copy p.cost-financing {
  font-size: 26px;
}
section#costs-fees .split-copy p.cost-disclaimer {
  font-size: 14px;
}
section#costs-fees .split-image {
  position: relative;
}
section#costs-fees .split-image img {
  position: absolute;
  bottom: 0;
}
@media (min-width: 800px) and (max-width: 1000px) {
  section#costs-fees .split-image img {
    position: relative;
  }
}
@media (min-width: 1001px) {
  section#costs-fees .split-copy {
    padding: 170px 0;
    flex: 0 0 35%;
  }
  section#costs-fees .split-copy strong {
    font-size: 86px;
  }
  section#costs-fees .split-copy .cost-copy {
    border-radius: 10px;
    padding: 50px;
    margin: 50px;
  }
  section#costs-fees .split-image {
    position: relative;
    flex: 0 0 65%;
    margin-bottom: -50px;
    margin-left: -80px;
  }
  section#costs-fees .split-image img.redbox-truck {
    position: absolute;
    bottom: 0;
    margin-left: -50px;
  }
}

@media (min-width: 1001px) {
  section#costs-fees {
    padding: 0px;
    background: #000 url(/wp-content/themes/bj2022/img/home/bg-costs.jpg) no-repeat top right/cover;
  }
}
@media (min-width: 1800px) {
  section#costs-fees {
    padding: 0px;
    background: #000 url(/wp-content/themes/bj2022/img/home/bg-costs-large.jpg) no-repeat bottom right/cover;
    max-width: 1600px;
    margin: 0px auto;
  }
  section#costs-fees .split-copy {
    padding: 50px 0;
  }
}
/* / / / / / / / / / / / / / / / */
/* LARGE VIDEO  / Brand Story / */
/* / / / / / / / / / / / / / / */
section#large-vid {
  padding: 120px 12% 80px;
  text-align: center;
}
section#large-vid h2 {
  padding-bottom: 40px;
  color: #fff;
}
section#large-vid .video-cover {
  margin: 0 auto;
  border: 5px solid #fff;
  max-width: 1150px;
  transition: all 0.3s ease-in !important;
  cursor: pointer !important;
}
section#large-vid .video-cover:hover {
  transform: scale(1.02);
  transition: all 0.2s ease-in !important;
  box-shadow: 0 5px 25px 2px rgba(0, 0, 0, 0.3);
}
section#large-vid .video-cover span {
  display: block;
  overflow: hidden;
  position: relative;
}
section#large-vid .video-cover img {
  width: 100%;
  height: auto;
  margin-bottom: -10px;
}
section#large-vid .video-cover img.play-button-icon {
  cursor: pointer;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  margin-top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* / / / / / / / / / / / / */
/* AWARDS  / */
/* / / / / / / / / / / / */
section#awards {
  background-color: #222;
  color: #fff;
}

ul.awards {
  padding: 25px;
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
}
ul.awards li {
  flex: 0 0 200px;
  padding: 0px 40px;
}
ul.awards li img {
  max-height: 180px;
  padding: 10px 0px;
  width: auto;
}
ul.awards li:last-child {
  padding-right: 0;
}

/* / / / / / / / / / / / */
/* Testimonial Section / */
/* / / / / / / / / / / /  */
section#testimonial {
  text-align: center;
  padding: 100px 20px;
}
section#testimonial .split {
  display: flex;
  max-width: 1400px;
}
section#testimonial h2, section#testimonial p, section#testimonial a {
  color: #fff;
}
section#testimonial .split-copy {
  order: 2;
  text-align: left;
}
section#testimonial .split-copy .testimonial-text {
  font-size: 24px;
}
section#testimonial .split-image {
  order: 1;
  min-height: 0 !important;
  padding-bottom: 30px;
}
section#testimonial .split-image .testimonial-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
section#testimonial .split-image .testimonial-video iframe,
section#testimonial .split-image .testimonial-video object,
section#testimonial .split-image .testimonial-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1001px) {
  section#testimonial .split-image {
    padding-top: 35px;
  }
}
/* / / / / / / / / / / / / */
/* BOTTOM REQUEST FORM  / */
/* / / / / / / / / / / / */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#req-form {
  padding: 80px 6%;
  display: block;
  width: 100%;
  background: #D5202B;
  color: #fff;
}
#req-form .bottom-request input, #req-form .bottom-request textarea, #req-form .bottom-request select {
  border-radius: 5px !important;
}
#req-form h2.section-title {
  color: #fff;
  text-transform: none;
}
#req-form > div {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}
#req-form .form-container {
  margin: 0 auto;
}
#req-form h3.gform_title {
  font-family: sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 120%;
  margin-bottom: 20px;
}
#req-form span.gform_description {
  text-align: left;
  font-size: 18px;
}
@media (min-width: 1001px) {
  #req-form .form-container {
    width: 600px;
  }
}

/* / / / / / / / / / / / / */
/* FEATURED BLOG POSTS  / */
/* / / / / / / / / / / / */
section#featured-posts {
  padding: 40px 6% 80px;
  text-align: center;
  background: #000;
}
section#featured-posts h2, section#featured-posts h3, section#featured-posts p, section#featured-posts a {
  color: #fff;
}
section#featured-posts ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  max-width: 1140px;
  margin: 40px auto 0px;
}
section#featured-posts ul li {
  flex: 0 0 28%;
  background-color: #1a1a1a;
  padding: 0;
  box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}
section#featured-posts ul li:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.featured-thumb {
  width: auto;
  height: 200px;
  overflow: hidden;
  max-height: 180px;
  margin-bottom: 20px;
}
.featured-thumb img {
  width: 100%;
  max-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-title, #featured-posts .description {
  padding: 0 20px;
  display: block;
  color: #222222;
  margin: 20px 0;
  text-decoration: none;
  font-size: 20px;
  line-height: 120%;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.featured-title:hover, #featured-posts .description:hover {
  cursor: pointer;
}

#featured-posts .description p {
  margin-bottom: 30px;
  line-height: 145%;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
}

/* / / / / / */
/* FOOTER / */
/* / / / / */
footer {
  background: #222222;
  position: relative;
}

.footer-top {
  padding: 60px 6%;
}

.footer-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.footer-wrap > div {
  flex: 1;
  margin-bottom: 0;
  padding: 12px 0px 0px 40px;
  text-align: center;
}
.footer-wrap > div:first-of-type {
  flex: 0 0 33%;
  padding: 0px 40px 0px 0px;
}
.footer-wrap > div:first-of-type > div {
  text-align: center;
}

/* Footer First Cloumn */
.footer-logo img {
  margin: 0 auto 30px;
  width: 230px;
}

.footer-wrap .widget-container a.learn-more {
  background-color: #D5202B;
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.footer-wrap .widget-container a.learn-more:hover {
  background-color: #b21b24;
}

footer .social-icons {
  display: flex;
  justify-content: space-between;
  width: 200px;
  margin: 30px auto 0px;
}
footer .social-icon {
  height: auto;
  width: 20%;
}
footer .social-icon a {
  color: #D5202B;
}
footer .social-icon a:hover {
  color: #b21b24;
}
footer .social-icon a img {
  filter: invert(74%) sepia(58%) saturate(4315%) hue-rotate(177deg) brightness(91%) contrast(86%);
  width: 100%;
}
footer .social-icons a {
  text-decoration: none !important;
}
footer span.content_screen-reader-text {
  display: none !important;
}
footer .footer-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 120%;
  margin-bottom: 20px;
}

/* Link Columns */
.footer-wrap .widget-container ul li {
  padding: 6px 0;
}

footer .widget_nav_menu a:not(.learn-more) {
  text-decoration: none;
  color: #fff;
  padding: 2px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
}
footer .widget_nav_menu a:not(.learn-more)::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  color: #D5202B;
  padding-right: 7px;
  font-size: 12px;
  font-weight:600;
}
footer .widget-container li a:not(.learn-more):hover {
  color: #b21b24;
}
footer .widget-container li a:not(.learn-more):hover::before {
  color: #b21b24;
}
footer .footer-bottom {
  padding: 20px 6%;
}

/* Footer Bottom */
.copyright {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
}
.copyright a {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
}
.copyright a:hover {
  color: #b21b24;
}

.disclaimer {
  font-size: 12px;
  font-weight: normal;
  line-height: 16px;
  padding: 20px 0 120px;
  text-transform: none;
  text-align: center;
  color: #fff;
}
.disclaimer a {
  color: #D5202B;
}
.disclaimer a:hover {
  color: #b21b24;
}

@media (min-width: 1001px) {
  .disclaimer {
    padding: 20px 0;
  }
}
/* / / / / / / / / / */
/* INTERNAL PAGES / */
/* / / / / / / / / */
.internal-header {
  height: 200px;
}

/* Research, Blog Post (Single) */
.wrapper {
  padding: 20px;
}

@media (min-width: 1001px) {
  .wrapper {
    padding: 40px 6%;
  }
}
.page-template-request-info-page .wrapper {
  padding: 40px 6% 0px;
}

.content {
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

article {
  background: #fff;
  color: #000;
  padding: 20px;
}

@media (min-width: 1001px) {
  .content {
    padding-top: 40px;
    max-width: 1250px;
  }
  article {
    margin-right: 50px;
    flex-grow: 1;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.7);
  }
  .page-template-request-info-page article {
    padding-right: 0px;
  }
}
/* Previous / Next Buttons */
.bottom-nav {
  text-align: right;
}
.bottom-nav div {
  display: inline-block;
  padding: 0 10px;
}
.bottom-nav a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  padding: 20px;
  background-color: #222222;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
}
.bottom-nav a:hover {
  background-color: #b21b24;
  cursor: pointer;
}
.bottom-nav a:nth-child(2) {
  padding-left: 20px;
}
.bottom-nav .previous-step a {
  color: #222222;
  background: none;
}
.bottom-nav .previous-step a:hover {
  color: #b21b24;
}

/* Aside */
aside {
  flex: 0 0 23%;
}
aside .gform_widget {
  top: 145px;
  bottom: auto;
}
aside .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0px;
}

h2.for-info {
  color: #212121;
  text-align: center;
  margin-bottom: 0px;
}

.aside-number {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 20px;
  background-color: #b21b24;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  display: inline-block;
  margin-top: 8px;
  font-size: 27px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
}
.aside-number:hover {
  background-color: #D5202B;
}

/* .call-container h3 a img {
 * *  filter: invert(0%) sepia(99%) saturate(24%) hue-rotate(255deg) brightness(84%) contrast(70%);
 * *  margin: 0px 8px 6px 0px;
 * *} */
/* Video */
.fluid-width-video-wrapper {
  clear: both;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  /*** youtube responsive ***/
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.youtube-video-container {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-video-container iframe,
.youtube-video-container object,
.youtube-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home .youtube-video-container {
  margin-bottom: 0;
}

/* / / / / / / / */
/* BLOG FEED  / */
/* / / / / / / */
.blog-big {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}

.blog-image {
  flex: 0 0 160px;
  margin-right: 20px;
  margin-top: 8px;
}

.blog-content {
  flex-grow: 1;
}

.time {
  font-weight: lighter;
  color: #212121;
  font-size: 14px;
}

.blog .post {
  padding: 30px 0;
  border-bottom: 1px solid #D5202B;
}

.post-title a {
  text-decoration: none;
  color: #b21b24;
  font-size: 25px;
  text-transform: uppercase;
}

/* POST STYLES */
.blog-listing-socials ul {
  display: flex;
  margin-bottom: 15px;
  justify-content: flex-start;
}
.blog-listing-socials li {
  display: flex;
  align-content: flex-start;
}

.related_post li::before {
  content: "" !important;
}

.wp_rp_wrap .related_post_title {
  font-size: 24px;
  margin-bottom: 18px;
  color: #D5202B;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

/* Pagination */
.navigation {
  margin-top: 20px;
}
.navigation .wp-paginate a {
  background-color: #ccc;
  color: #fff;
  border: 0;
}
.navigation .wp-paginate a:hover {
  background-color: #222;
  color: #fff;
}
.navigation .wp-paginate .current {
  background-color: #2a2a2a;
  border: 0;
}

/* Blockquote */
blockquote {
  margin: 30px;
  background: rgba(0, 0, 0, 0.02);
  padding: 26px;
  font-style: italic;
  border-left: 5px solid #212121;
}
blockquote p {
  font-size: 14px !important;
  line-height: 20px !important;
}
blockquote p:last-of-type {
  margin-bottom: 0 !important;
}

/* ARTICLE */
article p, section p, article li {
  margin-bottom: 20px;
  line-height: 145%;
  font-size: 16px;
}

.page-blog article h2.post-title {
  padding-top: 0;
  margin-bottom: 0;
}

.page-blog article,
.single-post article {
  padding-top: 34px;
}

article h2 {
  line-height: 120%;
  padding-top: 20px;
}
article h2:not(:first-child) {
  padding-top: 35px;
  padding-bottom: 10px;
}
article h3 {
  color: #000;
  padding-top: 25px;
  padding-bottom: 5px;
  font-weight: bold;
}
article ul, article ol {
  margin: 20px 0 20px 0px;
}
article ul {
  list-style: disc;
  padding-left: 10px;
}
article ol {
  list-style: decimal;
}
article li {
  list-style-position: inside;
}
article img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post ul.related_post li a {
  display: block !important;
  font-size: 13px !important;
  line-height: 1.6em !important;
  margin-bottom: 5px !important;
  position: relative !important;
  text-decoration: none !important;
  text-indent: 0 !important;
  color: #b21b24;
}
.post ul.related_post li a:hover {
  color: #D5202B;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
  height: auto;
}

.alignright {
  float: right;
  margin: 0 0px 20px 20px;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px;
  height: auto;
}

div.wp-caption {
  background: rgba(0, 0, 0, 0.02);
  padding: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}
div.wp-caption a {
  margin-bottom: 6px;
  display: block;
  text-align: center;
}
div.wp-caption p {
  font-size: 12px !important;
  font-style: italic;
  line-height: 18px !important;
  text-align: center;
}
div.wp-caption p:last-of-type {
  margin-bottom: 0 !important;
}

/* GRAVITY FORMS */
.sidebar-form-block {
  box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(84deg, rgb(0, 135, 82) 0%, rgb(29, 163, 110) 100%);
}
.sidebar-form-block input[type=text] {
  border-radius: 5px !important;
}
.sidebar-form-block input[type=submit] {
  background: #000 !important;
  height: 48px !important;
  padding: 0 30px !important;
  font-weight: bold !important;
  font-size: 20px !important;
  cursor: pointer !important;
  width: 100%;
}
.sidebar-form-block input[type=submit]:hover {
  background-color: #e3e3e3 !important;
  color: #222222 !important;
  transform: scale(1.02) !important;
}

body.home .gform_widget {
  color: #fff;
  background: rgba(255, 255, 255, 0.85);
  padding: 24px;
  border-radius: 4px;
}

.gform_widget {
  color: #fff;
  background: #000;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.7);
  padding: 24px;
  border-radius: 10px;
}

body.home .gform_widget .widget-title {
  font-family: "Poppins", sans-serif;
  padding: 0 0 20px;
  margin: 0;
  text-align: center;
  font-size: 26px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
}

.gform_widget .widget-title {
  font-family: "Poppins", sans-serif;
  padding: 0 0 20px;
  margin: 0;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
}
.gform_widget .gform_wrapper {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.gform_wrapper span.gform_description {
  font-size: 16px;
  text-align: center;
  font-weight: 300;
}

.gform_widget .gform_wrapper .gfield {
  width: 100% !important;
}

.gform_wrapper.gravity-theme .gform_fields {
  text-align: left !important;
  color: #fff !important;
}

.gform_wrapper .gfield_required {
  color: #fff !important;
}

.home .gform_wrapper .top_label li.gfield.gf_left_half, .gform_wrapper .top_label li.gfield.gf_right_half, .home .gform_wrapper .top_label li.gfield.gf_right_half, .gform_wrapper .top_label li.gfield.gf_right_half {
  float: none;
  padding-right: 0 !important;
  width: 100% !important;
}

/* width override left and right input fields on mobile */
@media (min-width: 650px) {
  .home .gform_wrapper .top_label li.gfield.gf_left_half, .gform_wrapper .top_label li.gfield.gf_right_half, .home .gform_wrapper .top_label li.gfield.gf_right_half, .gform_wrapper .top_label li.gfield.gf_right_half {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    width: 50% !important;
    padding-right: 16px !important;
    float: none;
    border-radius: 5px;
  }
}
.home aside li#field_3_3, .home aside li#field_3_4 {
  width: 100% !important;
}

.gform_widget .gform_wrapper .gfield_required, .gform_widget .gform_wrapper .validation_error {
  color: #fff;
}
.gform_widget .gform_wrapper .gfield_error {
  background-color: #009059 !important;
  border: 0 !important;
}
.gform_widget .gform_wrapper .gfield_error .gfield_label {
  color: #fff;
}
.gform_widget .gform_wrapper .validation_message, .gform_widget .gform_wrapper li.gfield_error div.ginput_complex.ginput_container label {
  color: #fff;
}
.gform_widget .gform_wrapper .ginput_complex.ginput_container.has_first_name.has_last_name span {
  width: 100%;
}

/* override gravity form top margin on desktop */
@media (min-width: 1000px) {
  .gform_wrapper li.gfield {
    margin-top: 0 !important;
  }
}
.gform_wrapper .ginput_complex.ginput_container.has_first_name.has_middle_name.no_last_name span, .gform_wrapper .ginput_complex.ginput_container.has_first_name.no_middle_name.has_last_name span {
  width: 100%;
}
.gform_wrapper .ginput_complex.ginput_container.no_first_name.has_middle_name.has_last_name span {
  width: 100%;
}

aside div.ginput_container_name span {
  padding-right: 0;
}

/* mobile hero form & bottom request form */
#form input.gform_button, #mobile-hero-banner input.gform_button {
  font-size: 1.5em !important;
  padding: 15px 18px !important;
  width: auto;
  margin: 0px auto;
  text-decoration: none;
  transition: 0.2s ease-out;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* gravity forms button override mobile */
@media only screen and (max-width: 641px) {
  #form input.gform_button, #mobile-hero-banner input.gform_button {
    line-height: 1 !important;
  }
}
/* Phone Callout */
section#phone-callout {
  display: block;
  width: 100%;
  padding: 30px 40px;
  background-color: #3F51B5;
}
section#phone-callout h2 {
  font-family: sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0;
  margin: 0;
}
section#phone-callout h2 a {
  font-family: sans-serif;
  display: inline-block;
  font-size: 18px;
  padding: 25px;
  background-color: #D5202B;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  line-height: 0;
  margin: 0 12px;
}
section#phone-callout h2 a:hover {
  color: #b21b24;
  background-color: #fff;
}
section#benefits-list {
  display: block;
  width: 100%;
  padding: 80px 20px;
  background-color: #D5202B;
  text-align: center;
  color: #fff;
}
section#benefits-list p {
  margin-bottom: 40px;
}
section#benefits-list p span {
  font-size: 52px;
}
section#benefits-list ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  list-style: none;
}
section#benefits-list ul li {
  flex: 1;
  padding: 20px;
}
section#benefits-list ul li img {
  width: 120px;
}
section#benefits-list ul li:nth-child(2) {
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}

/* SIDEBAR - FRANCHISE INFO */
.widget-container.franchise-info {
  margin-bottom: 130px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.side-menu {
  background-color: #fff;
  padding: 20px 0px;
  filter: drop-shadow(0 0 3px #ccc);
  border-radius: 15px;
}
.side-menu .widget-title {
  font-family: "Poppins", sans-serif;
  color: #b21b24;
  font-size: 36px;
  line-height: 100%;
  text-align: left;
  letter-spacing: 0.02em;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 0;
  font-weight: bold;
  text-transform: capitalize;
}

aside .widget-container {
  margin-bottom: 30px;
}

.side-menu ul {
  list-style: none;
  margin: 20px 0;
  width: 100%;
  padding: 0;
}
.side-menu ul li {
  display: flex;
  padding: 0;
}
.side-menu ul li a {
  color: #707070;
  text-decoration: none;
  display: block;
  font-family: sans-serif;
  font-size: 18px;
  line-height: 110%;
  font-weight: 300;
  text-transform: none;
  font-family: sans-serif;
  padding: 12px 20px;
  width: 100%;
}
.side-menu ul li a:hover, .side-menu ul li a.current_page_item:hover {
  background-color: #eaeaea;
}
.side-menu ul li.current_page_item a {
  background-color: #eaeaea;
}

.widget-container.franchise-info {
  margin-bottom: 130px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/* Application form */
.page-template-full-page select, .page-template-full-page input[type=text] {
  border: 2px solid #ccc;
}
.page-template-full-page div.gform_wrapper form div.gform_body ul.gform_fields li .gfield_required, .page-template-full-page div.gform_wrapper form div.gform_body ul.gform_fields li .gfield_label {
  color: #212121;
}

/* RESPONSIVE */
@media screen and (min-width: 1281px) {
  .mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .desktop {
    display: none !important;
  }
  .content {
    flex-direction: column;
  }
  /* hide sidebar on mobile */
  .page-template-research aside, .page-template-blog aside, .single-post aside {
    display: none;
  }
  /* MOBILE MENU */
  .mobile-menu {
    height: 0px;
    width: 100%;
    position: fixed;
    z-index: 99;
    top: 30px;
    left: 0;
    background-color: #b21b24;
    color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu ul {
    list-style: none;
  }
  .mobile-menu ul li {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .mobile-menu ul li:last-of-type {
    border: none;
  }
  .mobile-menu a {
    padding: 8px;
    text-decoration: none;
    font-size: 21px;
    color: #fff;
    display: block;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
  }
  .mobile-menu a:hover {
    color: #ccc;
  }

  .mobile-menu a i {
    font-family: "Font Awesome 5 Free";
    color: #fff;
    padding-right: 8px;
    font-weight: 900;
    font-style: normal !important;
    display: inline-block;
    animation: none !important;
    transition: none !important;
  }

 .mobile-menu .menu-item.mb-open .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: none;
    position: relative;
    z-index: 90;
    margin: 0;
    height: auto;
    top: auto;
    width: 100%;
    -webkit-box-shadow: none;
    -webkit-box-shadow-box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
     padding:8px 30px
  }

  .mobile-menu .menu-item.mb-open a i {
     rotate: 90deg;
  }
  
  .mobile-menu .menu-item .sub-menu a {
    font-size:1rem;
  }
  
  .mobile-menu.open {
    height: 100%;
    margin-top: 50px;
    top: 30px;
  }
  .menu-mobile-container {
    padding: 20px;
  }
  .fixedPosition {
    position: fixed;
  }
  /* header mobile */
  .mobile-header-navbar {
    background: #000;
    color: #fff;
    height: 80px;
    position: fixed;
    top: 0;
    padding: 10px;
    width: 100%;
    z-index: 9999;
  }
  body header.mobile {
    padding: 0;
    display: block;
  }
  body header.mobile .mobile-logo {
    height: 40px;
    margin: 15px;
  }
  body.home #hero-mobile {
    text-align: center;
    height: 600px;
    margin-top: -50px;
    background-color: gray;
    background: linear-gradient(180deg, rgba(2, 0, 36, 0.0263910061) 0%, rgba(0, 0, 0, 0.1044397866) 100%), url(/wp-content/themes/bj2022/img/home/mobile-hero.jpg) no-repeat bottom center/cover;
    z-index: 1;
    padding: 0;
    display: block;
  }
  /* FIXED MOBILE NAVBAR */
  /* MOBILE LARGE VID */
  /* MOBILE FOOTER */
  /* Menu Icon */
  /* Icon 3 */
  /* MOBILE FORM */
}
@media screen and (max-width: 1000px) and (min-width: 500px) and (max-width: 1000px) {
  body.home #hero-mobile {
    height: 740px;
    background: linear-gradient(180deg, rgba(2, 0, 36, 0.6263910061) 0%, rgba(0, 0, 0, 0.1044397866) 100%), url(/wp-content/themes/bj2022/img/home/mobile-hero.jpg) no-repeat bottom center/cover;
  }
}
@media screen and (max-width: 1280px) {
  .mobile-navbar {
    background-color: #000;
    overflow: hidden;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: 9998;
  }
  .mobile-navbar ul li .nav-icon img {
    max-height: 40px;
  }
  .mobile-navbar ul {
    display: flex;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-navbar ul li {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .mobile-navbar ul li .nav-icon {
    height: 44px;
    text-align: center;
  }
  .mobile-navbar ul li .nav-text {
    color: white !important;
    text-transform: uppercase;
    margin: 0px auto;
    text-align: center;
  }
  section#large-vid {
    height: auto;
    padding: 80px 20px;
    position: static;
  }
  section#large-vid .costs-container {
    width: 100%;
    flex-direction: column;
  }
  section#large-vid h2 {
    font-size: 30px;
  }
  section#large-vid p {
    text-align: center;
  }
  section#large-vid ul {
    margin-bottom: 0px;
  }
  section#large-vid .form-container {
    padding: 24px 24px 0px 24px;
  }
  section#large-vid h3.gform_title {
    font-size: 40px;
    text-align: center;
  }
  section#large-vid p:first-of-type {
    font-size: 24px;
    text-align: center;
  }
  section#large-vid .gform_wrapper .gform_button {
    width: 60%;
    margin-bottom: 0px;
    font-size: 25px;
    line-height: 1;
    padding: 8px 0px;
  }
  section#featured-posts ul {
    flex-direction: column;
  }
  section#featured-posts li {
    width: 100%;
    margin-bottom: 30px;
  }
  section#featured-posts ul li h3.featured-title {
    padding: 4px 24px;
    color: #fff;
  }
  section#featured-posts ul li h3.featured-title a {
    font-size: 28px;
    text-align: left;
  }
  section#mobile-hero-banner .gform_wrapper .gform_button {
    margin: 0px 0px 20px;
  }
  section#req-form .gform_wrapper .gform_button {
    width: 100%;
  }
  section#featured-posts {
    padding: 30px;
  }
  section#featured-posts ul li a.learn-more {
    margin-left: 20px;
  }
  footer .footer-wrap {
    flex-direction: column;
    align-items: center;
  }
  footer .footer-wrap > div {
    padding: 0;
    margin-bottom: 40px;
    width: auto;
    text-align: center;
  }
  .footer-wrap > div:first-of-type {
    padding: 0;
    margin-bottom: 40px;
    width: auto;
    text-align: center;
  }
  .page-template-research .page-wrapper {
    padding-top: 20px;
  }
  .page-template-research .bottom-nav {
    padding-bottom: 14px;
    margin-top: 10px;
  }
  .page-template-research #childpagewidget-2 {
    display: none;
  }
  .page-template-research .bottom-nav a {
    font-size: 20px;
    padding: 16px 16px;
    border-radius: 4px;
  }
  body.page-template-research .widget-container {
    margin-bottom: 0px;
  }
  body.page-template-research .content h1.page-title {
    font-size: 30px;
  }
  body.page-template-research article h2 {
    font-size: 24px;
  }
  #custom_html-2 h2 {
    margin-top: 20px;
  }
  #menu-icon {
    width: 40px;
    height: 30px;
    position: relative;
    float: right;
    margin: 18px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  #menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  #menu-icon span:nth-child(1) {
    display: none;
  }
  #menu-icon span:nth-child(2) {
    top: 11px;
  }
  #nav-icon span:nth-child(3) {
    top: 11px;
  }
  #menu-icon span:nth-child(4) {
    top: 24px;
  }
  #menu-icon.open span:nth-child(1) {
    display: none;
  }
  #menu-icon.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  #menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  #menu-icon.open span:nth-child(4) {
    top: 12px;
    width: 0%;
    left: 50%;
    opacity: 0;
  }
  section#mobile-hero-banner {
    background-color: #D5202B;
    color: #fff;
    padding: 16px 30px 0px;
    margin-top: -50px;
    border-radius: 20px;
    width: calc(100% - 40px);
    margin: 0px auto;
    position: relative;
    z-index: 2;
    margin-top: -50px;
    box-shadow: 0 0px 20px 5px rgba(0, 0, 0, 0.5);
  }
  section#mobile-hero-banner select {
    width: 100% important;
  }
  section#mobile-hero-banner h2.mobile-form-header {
    color: white;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 120%;
  }
  section#mobile-hero-banner h2.empire {
    margin-bottom: 16px;
  }
  section#mobile-hero-banner h2.empire::before {
    content: "\f063";
    font-family: "Font Awesome 5 Free";
    margin-right: 4px;
  }
  section#mobile-hero-banner h2.empire::after {
    content: "\f063";
    font-family: "Font Awesome 5 Free";
    margin-left: 4px;
  }
  section#mobile-hero-banner #gform_wrapper_7 {
    margin-top: 0px !important;
  }
  section#mobile-hero-banner #gform_wrapper_7 #gform_7 ul li.gfield {
    margin-top: 0px;
    margin-bottom: 18px;
  }
  section#mobile-hero-banner #gform_wrapper_7 #gform_7 .ginput_container {
    margin-top: 0px;
  }
  section#mobile-hero-banner .gform_wrapper .gform_button {
    background-color: #000 !important;
    width: 100%;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    height: 58px;
    line-height: 1 !important;
  }
}
@media screen and (max-width: 650px) {
  img.alignright {
    width: 100px;
  }
  footer .footer-wrap .widget-container img {
    max-width: 80%;
  }
  footer .footer-wrap .widget-container img:first-of-type {
    margin-right: 0px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  .mobile-menu a {
    font-size: 18px;
  }
  div.team-member h3 {
    font-size: 16px;
  }
  .bottom-nav {
    text-align: center;
  }
  .wrapper {
    padding: 20px;
  }
  .blog-big {
    display: flex;
    flex-direction: column;
  }
  .blog-content {
    width: 100%;
  }
  .blog-image {
    width: auto;
    margin: 0 auto;
  }
  .blog-big p:last-of-type {
    text-align: center;
  }
}
/**** split request info layout *** */
/* hide header and footer */
.page-template-request-info-page-split header.desktop, .page-template-request-info-page-split footer, .page-template-request-info-page-split header.mobile {
  display: none;
}

.request-info-wrapper {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}

@media (min-width: 1001px) {
  .request-info-wrapper {
    flex-wrap: nowrap;
    align-items: stretch;
  }
}
.page-content-wrapper {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  padding: 20px;
  flex: 0 0 100%;
  background: #222222;
}
.page-content-wrapper h1, .page-content-wrapper h2, .page-content-wrapper h3, .page-content-wrapper p, .page-content-wrapper ul, .page-content-wrapper li {
  color: #fff;
  text-transform: none;
  font-family: "Nunito", sans-serif;
}
.page-content-wrapper img.request-info-logo {
  max-width: 200px;
  transition: all 0.3s ease-in-out;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
.page-content-wrapper img.request-info-logo:hover {
  transform: scale(1.07);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1001px) {
  .page-content-wrapper {
    flex: 0 0 55%;
    padding: 40px 40px 150px;
    height: 100%;
    min-height: 100vh;
  }
}
.page-content {
  height: 100%;
  min-height: 100%;
  color: #fff;
  padding: 40px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.page-content h1 {
  font-size: 28px;
  padding-top: 30px;
  text-align: center;
}
.page-content h2 {
  font-size: 20px;
}
.page-content p {
  font-size: 16px;
}
.page-content a {
  color: #fff;
  font-weight: bold;
}
.page-content a:hover {
  color: #e3e3e3;
}
.page-content ul {
  list-style: none;
}
.page-content ul li {
  font-size: 16px;
}
.page-content ul li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  color: var(--colorDarkBlue);
  padding-right: 9px;
  font-size: 24px;
  margin-left: -20px;
}

.error404 .page-content a {
  color: #000;
}
.error404 .page-content a:hover {
  text-decoration: underline;
}

@media (min-width: 1001px) {
  .page-content h1 {
    font-size: 38px;
    padding-top: 80px;
    text-align: left;
  }
  .page-content h2 {
    font-size: 22px;
  }
}
.form-wrapper {
  height: 100vh;
  flex: 0 0 100%;
  padding: 25px;
  background: #fff;
  color: #000;
  padding-bottom: 140px;
}
.form-wrapper h1 {
  color: #000;
  text-align: center;
  text-transform: none;
}

@media (min-width: 1001px) {
  .form-wrapper {
    flex: 0 0 45%;
    padding: 40px 80px 0;
  }
}
form.request-info-page label {
  color: #000;
  font-size: 14px !important;
  margin-bottom: 4px !important;
  font-weight: normal !important;
}
form.request-info-page input, form.request-info-page textarea {
  border-radius: 4px !important;
  border: 1px solid #e8e8e8 !important;
  background-color: #fff;
  box-shadow: 0 2px 7px -3px rgba(0, 0, 0, 0.3);
}
form.request-info-page select {
  border-radius: 4px !important;
  border: 1px solid #e8e8e8 !important;
  background-color: #fff;
  box-shadow: 0 2px 7px -3px rgba(0, 0, 0, 0.3);
  color: var(--colorLightGray);
}
form.request-info-page input, form.request-info-page textarea {
  padding: 10px 15px !important;
}
form.request-info-page input::-moz-placeholder, form.request-info-page textarea::-moz-placeholder, form.request-info-page select::-moz-placeholder {
  text-transform: none;
  font-weight: normal !important;
  color: var(--colorLightGray);
}
form.request-info-page input::placeholder, form.request-info-page textarea::placeholder, form.request-info-page select::placeholder {
  text-transform: none;
  font-weight: normal !important;
  color: var(--colorLightGray);
}
form.request-info-page input[type=submit] {
  background: #D5202B !important;
  border: none !important;
  color: #fff;
  font-weight: bold !important;
  font-size: 24px !important;
  padding: 10px 15px !important;
  height: 58px !important;
  line-height: 1 !important;
  margin: 0px auto;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.3) !important;
  width: 100% !important;
  transition: all 0.3s ease-in-out;
}
form.request-info-page input[type=submit]:hover {
  background: #b21b24 !important;
  color: #fff !important;
  transform: scale(1.07);
  transition: all 0.3s ease-in-out;
}

img.awards {
  width: 100%;
  margin-top: 20px;
}
img.brand-story-thumbnail {
  width: 50px;
}

p.watch-video {
  margin-top: 50px;
  text-align: center;
}

img.video-thumbnail {
  max-width: 250px;
  margin-right: 20px;
  margin-bottom: -50px;
  box-shadow: 0 2px 7px -3px rgba(0, 0, 0, 0.3);
}

.page-request-franchise-information .mobile-navbar, .page-request-franchise-information #mySidenav {
  display: none;
}

.pull-quote {
  font-size: 24px;
  line-height: 180%;
  font-weight: bold;
  padding: 20px;
  background: rgba(0, 135, 82, 0.1);
  margin: 40px 0;
}

@media (min-width: 1400px) {
  .pull-quote {
    margin: 40px 0;
  }
}
.inline-cta-wrapper {
  margin: 40px 20px;
  padding: 40px;
  background: #ccc;
}
.inline-cta-wrapper .split-copy {
  padding: 0;
}
.inline-cta-wrapper .split-image {
  padding: 0;
  min-height: 0 !important;
}

@media (min-width: 1001px) {
  .inline-cta-wrapper {
    margin: 40px -20px;
  }
}
.style-one {
  background: #D5202B;
  color: #fff;
  background-size: 400% 400% !important;
  animation: gradient 8s ease infinite !important;
  padding: 30px 40px 30px !important;
}
.style-one .split {
  flex-wrap: wrap;
}
.style-one .split .split-copy {
  flex: 0 0 100%;
}
.style-one .split .split-image {
  text-align: center;
  align-self: center;
  flex: 0 0 100%;
}
.style-one .split .split-image img {
  margin-bottom: 0;
  max-height: 200px;
  transition: all 0.3s ease-in-out;
}
.style-one .split .split-image img:hover {
  transform: scale(1.07);
  transition: all 0.3s ease-in-out;
}
.style-one h2, .style-one h3, .style-one p {
  color: #fff !important;
}
.style-one h2 {
  padding-top: 0;
}
.style-one a.learn-more {
  background: #222222 !important;
  color: #fff !important;
  font-weight: bold !important;
}
.style-one a.learn-more:hover {
  background: #000 !important;
  color: #fff !important;
}

@media (min-width: 1101px) {
  .style-one .split {
    flex-wrap: nowrap;
  }
  .style-one .split .split-copy {
    flex: 0 0 70%;
  }
  .style-one .split .split-image {
    text-align: right;
    align-self: center;
    flex: 0 0 30%;
  }
  .style-one .split .split-image img {
    margin-bottom: 0;
    max-height: 200px;
    transition: all 0.3s ease-in-out;
  }
  .style-one .split .split-image img:hover {
    transform: scale(1.07);
    transition: all 0.3s ease-in-out;
  }
}
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-logos img {
  height: 50px;
  width: auto;
  margin: 10px;
}

.team-member {
  clear: both;
  margin-bottom: 30px;
}
.team-member .team-img {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}
.team-member img {
  max-width: 250px;
  text-align: center;
  margin: 0px auto;
  -webkit-clip-path: circle();
          clip-path: circle();
}

@media (min-width: 1000px) {
  .team-member {
    clear: both;
    margin-bottom: 30px;
    display: flex;
  }
  .team-member img {
    max-width: 250px;
    margin-right: 30px;
    float: left;
  }
}
/* map popup */
.mapsvg-details-container {
  margin: 0 auto;
  background-color: #0E0E0E;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 0 2.25em #000;
  text-align: center;
  background-image: url(https://redboxplusfranchise.com/wp-content/uploads/2022/07/available-market-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: 10;
}

@media (min-width: 1001px) {
  .mapsvg-details-container {
    max-width: 90%;
    margin: 40px;
  }
}
/* map popup content */    
.mapsvg-controller-view-content h5 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0;
}
.mapsvg-controller-view-content p {
  color: #fff;
  font-size: 16px;
}

@media (min-width: 1001px) {
  .mapsvg-controller-view-content h5 {
    margin-top: 30px;
  }
}
.mapsvg-popover-close {
  top: 12px;
  right: 12px;
}
.mapsvg-popover-close::before, .mapsvg-popover-close::after {
  background: #fff !important;
  height: 8px;
}

/* hide reguired text on forms */
.gform_required_legend {
  display: none;
}

body.home section#mobile-hero-banner {
	display:none;
}

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