/* Fonts */
@font-face {
  font-family: 'Outfit Light';
  src: url("../assets/fonts/Outfit-Light.ttf") format("truetype");
  font-display: swap; }
@font-face {
  font-family: 'Outfit Regular';
  src: url("../assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-display: swap; }
@font-face {
  font-family: 'Outfit Bold';
  src: url("../assets/fonts/Outfit-Bold.ttf") format("truetype");
  font-display: swap; }
/* Variables */
/******************************************************************************/
html, body {
  margin: 0;
  padding: 0; }

html {
  overflow: hidden;
  height: 100%; }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'Outfit Regular', sans-serif;
  font-weight: 400;
  max-width: 100vw;
  height: 100%;
  overflow: auto; }

*, *::before, *::after {
  box-sizing: border-box; }

/* Layout */
.container {
  width: 100%;
  padding-bottom: 100px;
  max-width: 100%;
  overflow: hidden;
  position: relative; }
  .container.has-form {
    overflow: visible; }
  .container.divider {
    padding-bottom: 49px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 50px; }
  .container.--custom-bg-color {
    padding: 50px 0;
    margin-bottom: 100px; }

.row {
  width: 90%;
  max-width: 2560px;
  margin: 0 auto; }
  .row .--fullwidth {
    width: 100%;
    max-width: 100%; }
  .row.has_col {
    display: flex; }
  .row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px; }
    .row.split.flip > :first-child {
      order: 2; }

.grid {
  display: grid;
  grid-column-gap: 50px;
  grid-row-gap: 30px; }
  .grid.auto-min-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .grid.col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .grid.col-3 {
    grid-template-columns: 1fr 1fr 1fr; }
  .grid.g_container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 100px;
    padding: 0 5% 100px 5%; }
  .grid.row-gap-50 {
    grid-row-gap: 50px; }

.has-sidebar {
  width: 90%;
  max-width: 2560px;
  margin: 0 auto;
  display: flex; }
  .has-sidebar #sidebar {
    flex: 1 0 25%;
    margin-right: 50px; }
    .has-sidebar #sidebar ul a::after {
      content: none; }
  .has-sidebar .content {
    flex: 1 0 calc(75% - 50px);
    max-width: calc(75% - 50px); }
    .has-sidebar .content .row {
      width: 100% !important; }
  .has-sidebar h3 {
    margin-top: 15px; }

.full_height {
  height: 100%; }

.v-padding {
  padding-top: 50px;
  padding-bottom: 50px; }

/* Flexbox */
.flex {
  display: flex; }
  .flex.center-v {
    align-items: center; }
  .flex.center-h {
    justify-content: center; }
    .flex.center-h .dual_btn_cont {
      width: auto; }
  .flex.f-column {
    flex-direction: column; }
    .flex.f-column.center-v {
      justify-content: center;
      align-items: flex-start; }
    .flex.f-column.center-h {
      align-items: center;
      justify-content: flex-start; }
  .flex.space-between {
    justify-content: space-between; }

.m-bottom-0 {
  margin-bottom: 0; }

.m-bottom-30 {
  margin-bottom: 30px; }

.m-bottom-50 {
  margin-bottom: 50px; }

.p-bottom-50 {
  padding-bottom: 50px; }

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 9999;
  transition: all 0.3s ease; }
  header .row {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    justify-content: center; }
    header .row .logo {
      transition: all 0.3s ease; }
      header .row .logo img {
        width: 200px; }
    header .row nav {
      flex: 1; }
      header .row nav .mobile_ctas {
        display: none; }
      header .row nav ul {
        display: flex;
        justify-content: center;
        list-style-type: none;
        margin: 0 0 0 0 !important;
        padding: 0; }
        header .row nav ul li {
          font-family: "Outfit Regular", sans-serif;
          font-size: 14px; }
          header .row nav ul li a {
            color: #262626;
            text-decoration: none;
            position: relative;
            white-space: nowrap; }
            header .row nav ul li a::before {
              content: '';
              position: absolute;
              bottom: 2px;
              left: -1px;
              width: calc(100% + 2px);
              height: 0;
              z-index: -1;
              background-color: #fdc500;
              transition: all 0.2s ease;
              pointer-events: none; }
            header .row nav ul li a:hover {
              color: #444; }
              header .row nav ul li a:hover::before {
                height: 4px; }
          header .row nav ul li.current_page_item a::before {
            height: 5px; }
          header .row nav ul li.current_page_item a:hover::before {
            height: 10px; }
        header .row nav ul > :not(:last-child) {
          margin-right: 30px; }
    header .row .icon_cont {
      justify-self: flex-end; }
      header .row .icon_cont > :not(:last-child) {
        margin-right: 20px; }
    header .row svg {
      color: #262626; }
    header .row input[type=text] {
      border: 2px solid #262626;
      color: #262626;
      font-family: "Outfit Regular", sans-serif;
      font-size: 14px;
      padding: 8px 0;
      border-radius: 3px;
      max-width: 0;
      overflow: hidden;
      background: transparent;
      text-overflow: ellipsis;
      transition: all 0.3s ease;
      opacity: 0; }
      header .row input[type=text]::placeholder {
        color: rgba(0, 0, 0, 0.5); }
      header .row input[type=text]:focus {
        outline: none; }
    header .row .search .search_icon {
      position: relative; }
    header .row .search:hover input[type=text] {
      max-width: 200px;
      padding-left: 12px;
      padding-right: 12px;
      opacity: 1;
      margin-left: 15px; }
    header .row .search input[type=text].focus-visible, header .row .search input.visible {
      max-width: 200px;
      padding-left: 12px;
      padding-right: 12px;
      opacity: 1;
      margin-left: 15px; }
    header .row .search input[type=submit] {
      background: transparent;
      color: transparent;
      padding: 0;
      border: none;
      border-radius: 0;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      cursor: pointer; }
    header .row .account {
      position: relative; }
      header .row .account .popup {
        pointer-events: none;
        opacity: 0;
        position: absolute;
        right: -33px;
        padding-top: 12px;
        transition: opacity 0.3s ease 0.2s; }
        header .row .account .popup .inner {
          position: relative;
          padding: 15px;
          background: #fff;
          border-radius: 5px;
          box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
          width: 250px;
          text-align: center; }
          header .row .account .popup .inner h2 {
            font-size: 24px;
            margin-bottom: 15px; }
          header .row .account .popup .inner p {
            font-size: 12px;
            margin: 15px 0 0 0; }
            header .row .account .popup .inner p.blurb {
              margin: 0 0 15px 0;
              font-size: 13px; }
          header .row .account .popup .inner .btn.btn-text {
            font-size: inherit;
            margin: 0 !important;
            display: inline; }
            header .row .account .popup .inner .btn.btn-text::before {
              content: none; }
          header .row .account .popup .inner::before {
            content: '';
            position: absolute;
            bottom: 100%;
            right: 30px;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 12px solid #fff; }
      header .row .account:hover .popup {
        pointer-events: all;
        opacity: 1;
        transition: opacity 0.3s ease; }
  header ul {
    transition: all 0.3s ease; }
  header #hamburger {
    display: none; }
  header.scrolled {
    background: #262626;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.1); }
    header.scrolled .row {
      padding: 0; }
      header.scrolled .row nav ul {
        margin: 0 !important; }
        header.scrolled .row nav ul li a {
          color: #aaaaaa;
          transition: all 0.3s ease; }
          header.scrolled .row nav ul li a:hover {
            color: #fdc500; }
          header.scrolled .row nav ul li a::before {
            opacity: 0; }
        header.scrolled .row nav ul li.current_page_item a {
          color: #fdc500; }
      header.scrolled .row .icon_cont > *:hover svg {
        color: #fdc500; }
      header.scrolled .row svg {
        color: #aaaaaa; }
      header.scrolled .row input {
        border-color: #aaaaaa;
        color: #aaaaaa; }
        header.scrolled .row input::placeholder {
          color: rgba(170, 170, 170, 0.5); }
    header.scrolled .logo {
      opacity: 0; }

/* Text */
h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit Bold", sans-serif;
  color: #262626;
  margin: 0; }

h1 {
  font-size: 68px;
  line-height: 1em;
  margin: 0 0 15px 0; }

.cta-title {
  font-size: 58px;
  line-height: 1.1em;
  margin-bottom: 25px; }

h2 {
  font-size: 38px;
  line-height: 1.1em;
  margin: 0 0 8px 0; }

h3 {
  font-size: 24px;
  line-height: 1.2em;
  margin: 0 0 8px 0; }

p, p a {
  font-size: 16px;
  line-height: 1.5em;
  color: #777777;
  margin: 0 0 8px 0; }

p.blurb a {
  font-size: inherit; }

input, textarea {
  font-family: "Outfit Regular", sans-serif;
  font-size: 14px; }

blockquote {
  margin: 0;
  padding: 5px 20px;
  border-left: 4px solid #fdc500; }
  blockquote p {
    margin: 0; }

.blurb {
  color: #777777;
  font-size: 20px;
  line-height: 1.3em;
  margin: 0 0 20px 0; }

.title_highlight {
  position: relative;
  white-space: nowrap; }
  .title_highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -1px;
    width: calc(100% + 2px);
    height: 8px;
    z-index: -1;
    background-color: #fdc500;
    pointer-events: none; }

.text_center {
  text-align: center; }

ul, ol {
  line-height: 1.5em;
  padding-left: 25px;
  color: #777777;
  margin: 0 0 15px 0; }

ul a, ol a, span a, td a {
  color: inherit; }

ul.list {
  padding: 0;
  list-style: none; }
  ul.list > :not(:last-child) {
    margin-bottom: 5px; }
  ul.list li {
    position: relative;
    margin-left: 12px; }
    ul.list li::before {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -12px;
      width: 5px;
      height: 5px;
      border-radius: 100px;
      background: #fdc500; }

/* Images */
.icon {
  margin-bottom: 5px; }
  .icon > svg {
    color: #cb1c1d; }

img {
  width: 100%; }

.background_image {
  background-size: cover !important;
  border-radius: 5px; }
  .background_image.--in-hero {
    flex: 1 0 50%;
    margin-left: 50px; }

/* Buttons */
.dual_btn_cont {
  width: 100%; }
  .dual_btn_cont > :first-child {
    margin-right: 20px; }
  .dual_btn_cont.center {
    display: flex;
    justify-content: center;
    align-items: center; }

.btn, input[type=submit] {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 5px;
  font-size: 15px;
  font-family: "Outfit Regular", sans-serif;
  color: #ffffff;
  background-color: #262626;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none; }
  .btn:hover, input[type=submit]:hover {
    filter: contrast(1.4); }
  .btn.btn-primary, .btn.gform_button, input[type=submit].btn-primary, input[type=submit].gform_button {
    background-color: #cb1c1d;
    color: #ffffff; }
  .btn.btn-secondary, input[type=submit].btn-secondary {
    background-color: #fdc500;
    color: #262626; }
  .btn.btn-text, input[type=submit].btn-text {
    padding: 0;
    text-decoration: underline;
    color: #262626;
    background-color: transparent; }
  .btn.--fullwidth, .btn.gform_button, input[type=submit].--fullwidth, input[type=submit].gform_button {
    width: 100%;
    text-align: center; }
  .btn.xs, input[type=submit].xs {
    font-size: 14px;
    padding: 14px 20px; }
  .btn.btn-outline, input[type=submit].btn-outline {
    background: transparent;
    color: #262626;
    border: 1px solid #262626; }
    .btn.btn-outline:hover, input[type=submit].btn-outline:hover {
      background: #d1d1d1;
      border-color: #d1d1d1; }

.btn-text.--with-highlight, p a, ul a, ol a, span a, td a, .nav-links a, .wp-google-content-inner a {
  text-decoration: none;
  position: relative;
  z-index: 1; }
  .btn-text.--with-highlight::before, p a::before, ul a::before, ol a::before, span a::before, td a::before, .nav-links a::before, .wp-google-content-inner a::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: -1px;
    width: calc(100% + 2px);
    height: 3px;
    z-index: -1;
    background-color: #fdc500;
    pointer-events: none;
    transition: all 0.2s ease; }
  .btn-text.--with-highlight:hover::before, p a:hover::before, ul a:hover::before, ol a:hover::before, span a:hover::before, td a:hover::before, .nav-links a:hover::before, .wp-google-content-inner a:hover::before {
    height: calc(100% - 4px); }

#sidebar ul a::before, .footer-nav a::before {
  content: none; }

/* Hero */
.hero {
  padding-top: 100px; }
  .hero .--has-image {
    min-height: 450px; }
    .hero .--has-image > :first-child {
      width: 50%; }
  .hero .hero_image {
    max-width: 40%; }
    .hero .hero_image::after {
      content: '';
      position: absolute;
      top: -200px;
      right: -250px;
      background-color: #fdc500;
      width: 800px;
      height: 800px;
      border-radius: 1000px;
      z-index: -1; }
  .hero .row.center-h {
    padding-top: 100px;
    padding-bottom: 50px; }

.horizontal-steps .steps-wrap {
  display: flex;
  justify-content: space-between; }
  .horizontal-steps .steps-wrap .step {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 16px; }
    .horizontal-steps .steps-wrap .step .step-inner {
      padding: 20px 16px;
      border: 1px solid #222;
      border-radius: 3px;
      font-size: 19px;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: 1px 1px 0 1px #222;
      color: #222;
      height: 100%; }
    .horizontal-steps .steps-wrap .step:last-child .step-inner {
      background: #fdc500; }
    .horizontal-steps .steps-wrap .step:not(:last-child)::after {
      content: '';
      width: 30px;
      height: 10px;
      background: url(https://www.privatebox.co.nz/wp-content/uploads/2023/02/Line-1-Stroke.svg) no-repeat center;
      background-size: contain !important;
      display: block;
      margin-left: 16px; }
  .horizontal-steps .steps-wrap a.step {
    text-decoration: none; }
    .horizontal-steps .steps-wrap a.step .step-inner {
      background: transparent;
      transition: background-color 300ms ease; }
    .horizontal-steps .steps-wrap a.step:hover {
      text-decoration: default; }
      .horizontal-steps .steps-wrap a.step:hover .step-inner {
        background: #f8f8f8; }

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px; }
  .benefit-cards .benefit-card {
    padding: 22px;
    border: 1px solid #222;
    border-radius: 4px;
    box-shadow: 1px 1px 0 1px #222;
    display: flex;
    flex-direction: column; }
    .benefit-cards .benefit-card.highlighted {
      background: #f8f8f8; }
    .benefit-cards .benefit-card .key-points {
      padding: 0;
      font-size: 19px;
      color: #222;
      margin-bottom: 30px; }
      .benefit-cards .benefit-card .key-points svg {
        color: #cb1c1d;
        margin-right: 12px; }
      .benefit-cards .benefit-card .key-points li:not(:last-child) {
        margin-bottom: 12px; }
    .benefit-cards .benefit-card h2 {
      margin-bottom: 22px;
      display: inline-block;
      z-index: 2; }
  .benefit-cards .benefit-card-inner {
    flex: 1; }
  .benefit-cards .btn {
    text-align: center; }

/* Primary CTA */
.cta {
  max-width: 100%;
  overflow-x: clip;
  position: relative; }
  .cta.primary {
    padding: 50px 0;
    margin: 100px 0;
    background: #fdc500; }
    .cta.primary img {
      max-width: 550px;
      margin: -250px 0 -150px 0; }
  .cta.secondary {
    padding: 100px 0; }
    .cta.secondary .secondary_cta_image {
      max-width: 60%;
      position: relative; }
      .cta.secondary .secondary_cta_image img {
        margin: 0 -400px 0 0;
        position: relative;
        width: 1200px; }
      .cta.secondary .secondary_cta_image::after {
        content: '';
        position: absolute;
        top: -15%;
        left: 5%;
        background-color: #cb1c1d;
        width: 600px;
        height: 600px;
        border-radius: 1000px;
        z-index: -1; }
  .cta.basic {
    background: #fdc500;
    padding: 50px 0;
    margin-bottom: 100px; }
    .cta.basic h2 {
      margin: 0 0 15px 0; }
    .cta.basic p {
      color: #262626;
      margin: 0 0 20px 0; }
  .cta.video {
    background: #fdc500;
    padding: 100px 0;
    overflow: visible;
    margin-bottom: 300px; }
    .cta.video .btn {
      margin-bottom: 100px;
      margin-top: 30px; }
    .cta.video .video {
      margin-bottom: -300px;
      background: #fff;
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 10px 30px 100px -40px rgba(34, 34, 34, 0.35);
      height: 45vw; }
      .cta.video .video iframe {
        margin-bottom: -5px; }

/* Pricing Table */
.plans-pricing {
  overflow: visible; }
  .plans-pricing .pricing_item {
    padding: 25px;
    border-radius: 5px; }
    .plans-pricing .pricing_item h3 {
      font-family: "Outfit Light", sans-serif;
      margin-bottom: 15px; }
    .plans-pricing .pricing_item .price {
      font-size: 48px; }
      .plans-pricing .pricing_item .price span {
        font-size: 16px;
        font-family: "Outfit Light", sans-serif;
        color: #777777; }
    .plans-pricing .pricing_item ul {
      margin: 20px 0 24px 0;
      padding: 0;
      width: min-content;
      white-space: nowrap;
      list-style-type: none; }
      .plans-pricing .pricing_item ul > :not(:last-child) {
        margin-bottom: 5px; }
      .plans-pricing .pricing_item ul li {
        color: #262626; }
        .plans-pricing .pricing_item ul li > svg {
          font-size: 14px;
          margin-right: 5px; }
        .plans-pricing .pricing_item ul li.disabled {
          color: #aaaaaa !important; }
    .plans-pricing .pricing_item.highlighted {
      box-shadow: 8px 8px 50px rgba(0, 0, 0, 0.1); }
      .plans-pricing .pricing_item.highlighted h3 {
        position: relative;
        font-family: "Outfit Bold", sans-serif; }
        .plans-pricing .pricing_item.highlighted h3::before {
          content: '';
          position: absolute;
          bottom: 2px;
          left: -1px;
          width: calc(100% + 2px);
          height: 8px;
          z-index: -1;
          background-color: #fdc500;
          pointer-events: none; }
      .plans-pricing .pricing_item.highlighted .inner {
        display: flex;
        flex-direction: column;
        align-items: center; }
        .plans-pricing .pricing_item.highlighted .inner ul {
          width: 100%; }
          .plans-pricing .pricing_item.highlighted .inner ul li svg {
            color: #cb1c1d; }
          .plans-pricing .pricing_item.highlighted .inner ul li.disabled svg {
            color: #aaaaaa; }
        .plans-pricing .pricing_item.highlighted .inner .btn.btn-outline {
          background: #cb1c1d;
          color: #ffffff;
          border: none; }

.info {
  position: relative; }
  .info .info_label {
    position: absolute;
    top: 0;
    left: 100%;
    white-space: break-spaces;
    color: #aaaaaa;
    font-size: 14px;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(-50%);
    padding: 0 0 0 10px; }
    .info .info_label > span {
      display: block;
      width: 200px;
      background: #262626;
      border-radius: 5px;
      padding: 8px; }
    .info .info_label:hover {
      opacity: 1;
      pointer-events: all; }
    .info .info_label a {
      text-decoration: underline; }
      .info .info_label a::before {
        content: none; }
    .info .info_label.top {
      bottom: 100%;
      top: auto;
      transform: translateX(-50%);
      padding: 0 0 10px 0; }
    .info .info_label.left {
      right: 100%;
      left: auto; }
  .info .info_icon svg {
    font-size: 12px;
    margin-left: 5px;
    color: #aaaaaa;
    transition: all 0.3s ease; }
  .info:hover {
    cursor: default; }
    .info:hover .info_icon svg {
      color: #fdc500; }
    .info:hover .info_label {
      opacity: 1;
      pointer-events: all; }

.--top-section {
  padding-top: 150px; }

.bottom_bar {
  background: #262626;
  padding: 20px 0;
  display: flex; }
  .bottom_bar a {
    color: #fdc500; }
    .bottom_bar a:hover {
      text-decoration: underline; }
    .bottom_bar a::before {
      content: none; }
  .bottom_bar .designed_by {
    white-space: nowrap;
    color: #777777; }
    .bottom_bar .designed_by svg {
      fill: #777777;
      width: 30px;
      margin-left: 10px; }

/* Footer */
footer h3 {
  margin-bottom: 5px; }
footer .footer_cta h3 {
  margin-bottom: 10px; }
footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  footer nav ul > :not(:last-child) {
    margin-bottom: 5px; }
  footer nav ul li a {
    text-decoration: none;
    color: #777777;
    transition: all 0.2s ease; }
    footer nav ul li a:hover {
      filter: brightness(0.6); }

/* Steps */
.steps_cont .steps {
  max-width: 1080px; }
  .steps_cont .steps .step {
    display: flex;
    align-items: center;
    position: relative; }
    .steps_cont .steps .step .icon {
      flex: 0 0 100px;
      width: 100px;
      height: 100px;
      border-radius: 1000px;
      background: #fdc500;
      margin: 0 0 0 calc(50% - 50px);
      display: flex;
      align-items: center;
      justify-content: center; }
      .steps_cont .steps .step .icon svg {
        color: #262626;
        font-size: 30px; }
    .steps_cont .steps .step .content {
      flex: 1 0 calc(50% - 50px);
      padding: 0 0 0 30px; }
      .steps_cont .steps .step .content p {
        margin-bottom: 0; }
    .steps_cont .steps .step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 100%;
      background: #262626;
      z-index: -1; }
  .steps_cont .steps > :nth-child(2n) {
    flex-direction: row-reverse; }
    .steps_cont .steps > :nth-child(2n) .icon {
      margin: 0 calc(50% - 50px) 0 0; }
    .steps_cont .steps > :nth-child(2n) .content {
      padding: 0 30px 0 0; }
  .steps_cont .steps > :first-child::before {
    top: calc(50% - 15px);
    height: calc(50% + 15px); }
  .steps_cont .steps > :last-child::before {
    top: 0;
    height: 50%; }
  .steps_cont .steps > :not(:last-child) {
    padding-bottom: 50px; }
.steps_cont .--process-title {
  text-align: center; }
.steps_cont .--btns .dual_btn_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap; }
.steps_cont.--left-aligned .steps {
  max-width: none; }
  .steps_cont.--left-aligned .steps .step .icon {
    margin: 0; }
  .steps_cont.--left-aligned .steps .step .content {
    flex: 1 0 calc(100% - 100px);
    padding: 0 0 0 30px; }
  .steps_cont.--left-aligned .steps .step::before {
    left: 50px; }
  .steps_cont.--left-aligned .steps > :nth-child(2n) {
    flex-direction: row; }
    .steps_cont.--left-aligned .steps > :nth-child(2n) .icon {
      margin: 0; }
    .steps_cont.--left-aligned .steps > :nth-child(2n) .content {
      padding: 0 0 0 30px; }
.steps_cont.--left-aligned .--process-title {
  text-align: left; }
.steps_cont.--left-aligned .--btns .dual_btn_cont {
  display: flex;
  justify-content: flex-start;
  align-items: center; }

/* Alert Banner */
#alert_banner {
  width: 100%;
  padding: 10px 5%;
  background: #cb1c1d;
  text-align: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease; }
  #alert_banner a.btn.btn-text {
    color: #fff;
    font-size: 14px;
    margin-left: 8px; }

.gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin-bottom: 10px; }
  .gform_fields .gfield {
    width: 100%;
    grid-column: 1 / span 2;
    position: relative; }
    .gform_fields .gfield input, .gform_fields .gfield textarea {
      width: 100%;
      padding: 10px 14px;
      outline: none;
      border: 2px solid #262626 !important;
      border-radius: 0 !important;
      transition: all 0.2s ease; }
      .gform_fields .gfield input:focus, .gform_fields .gfield textarea:focus {
        border-color: #fdc500 !important; }
    .gform_fields .gfield label {
      font-size: 14px !important;
      position: absolute;
      top: 19px;
      left: 5px;
      padding: 0 4px !important;
      background: #fff;
      transform: translate(0, -50%);
      color: #777777;
      transition: all 0.2s ease;
      font-family: "Outfit Light"; }
    .gform_fields .gfield.focused label {
      transform: translate(0, -50%) scale(0.8);
      top: 1px;
      left: 0;
      color: #262626; }
  .gform_fields .gfield--width-half {
    grid-column: unset; }

.gfield_required_text {
  display: none; }

/* Sidebar */
#sidebar {
  background: #f8f8f8;
  border-radius: 4px; }
  #sidebar .row {
    width: 100%; }
    #sidebar .row > div {
      padding: 0 16px; }
      #sidebar .row > div a.btn {
        margin: 5px 0 10px 0; }
  #sidebar nav > h3:first-child {
    margin-top: 12px; }
  #sidebar nav h3 {
    padding: 0 16px; }
  #sidebar nav ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    #sidebar nav ul > :not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 5%;
      width: 90%;
      height: 1px;
      background: #f1f1f1; }
    #sidebar nav ul li {
      position: relative; }
      #sidebar nav ul li a {
        display: block;
        padding: 12px 16px;
        color: #777777;
        text-decoration: none;
        background: transparent;
        transition: all 0.2s ease; }
        #sidebar nav ul li a:hover {
          color: #262626;
          background: rgba(0, 0, 0, 0.04); }
      #sidebar nav ul li.current_page_item > a {
        color: #262626; }
      #sidebar nav ul li > ul.sub-menu li a {
        padding: 12px 16px 12px 30px; }

.is-anchor {
  padding-top: 120px;
  margin-top: -120px; }

/* Responsive Tables */
:root {
  --bg-table-stripe: #f6f6f5;
  --b-table: #e3e3e2;
  --caption: #242423; }

table {
  background-color: transparent;
  border-collapse: collapse; }

th {
  text-align: left; }

.dcf-txt-center {
  text-align: center !important; }

.dcf-txt-left {
  text-align: left !important; }

.dcf-txt-right {
  text-align: right !important; }

.dcf-table caption {
  color: var(--caption);
  font-size: 1.13em;
  font-family: "Outfit Regular";
  padding-bottom: 0.56rem; }

.dcf-table thead {
  font-size: 15px; }

.dcf-table tbody {
  border-bottom: 1px solid var(--b-table);
  border-top: 1px solid var(--b-table);
  font-size: 15px; }

.dcf-table tfoot {
  font-size: 15px; }

.dcf-table td, .dcf-table th {
  padding-right: 1.78em; }

.dcf-table-bordered, .dcf-table-bordered td, .dcf-table-bordered th {
  border: 1px solid var(--b-table); }

.dcf-table-bordered td, .dcf-table-bordered th, .dcf-table-striped td, .dcf-table-striped th {
  padding-left: 1em;
  padding-right: 1em; }

.dcf-table-bordered tr:not(:last-child), .dcf-table-striped tr:not(:last-child) {
  border-bottom: 1px solid var(--b-table); }

.dcf-table-striped tbody tr:nth-of-type(2n) {
  background-color: var(--bg-table-stripe); }

.dcf-table thead td, .dcf-table thead th {
  padding-top: .75em;
  padding-bottom: .75em;
  vertical-align: center; }

.dcf-table tbody td, .dcf-table tbody th, .dcf-table tfoot td, .dcf-table tfoot th, .dcf-table thead td, .dcf-table thead th {
  padding-top: .75em;
  padding-bottom: .75em;
  vertical-align: center; }

.dcf-wrapper-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-bottom: 1em;
  position: relative;
  right: 50%;
  width: 100vw; }

@media only screen and (max-width: 42.09em) {
  .dcf-table-responsive thead {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    white-space: nowrap; }

  .dcf-table-responsive tr {
    display: block; }

  .dcf-table-responsive td {
    -webkit-column-gap: 3.16vw;
    -moz-column-gap: 3.16vw;
    column-gap: 3.16vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-align: left !important; }

  .dcf-table-responsive.dcf-table-bordered, .dcf-table-responsive.dcf-table-bordered thead th {
    border-width: 0; }

  .dcf-table-responsive.dcf-table-bordered tbody td {
    border-top-width: 0; }

  .dcf-table-responsive:not(.dcf-table-bordered) tbody tr {
    padding-bottom: 0.75em; }

  .dcf-table-responsive:not(.dcf-table-bordered) tbody td {
    padding-bottom: 0; }

  .dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td {
    padding-right: 0; }

  .dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child {
    border-bottom-width: 0; }

  .dcf-table-responsive tbody td:before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    padding-right: 1.78em; } }
.dcf-overflow-x-auto {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch; }

.dcf-w-100\% {
  width: 100% !important; }

/* Accordion */
.accordion .tab {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 5px; }
  .accordion .tab .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer; }
    .accordion .tab .head h3 {
      margin: 0; }
    .accordion .tab .head svg {
      transition: all 0.5s ease; }
  .accordion .tab .body {
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease; }
    .accordion .tab .body .inner {
      padding: 0 20px 20px 20px; }
  .accordion .tab.open .toggle svg {
    transform: rotate(45deg); }
.accordion > :not(:last-child) {
  margin-bottom: 20px; }

.posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px; }
  .posts .post {
    border: 1px solid #262626;
    border-radius: 5px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    .posts .post h3 {
      margin-top: 0; }
    .posts .post .featured-image {
      background-size: cover !important;
      height: 200px;
      margin: -20px -20px 20px -20px; }
    .posts .post.--has-image {
      display: block;
      box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
      border: none; }

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .pagination h2 {
    display: none; }
  .pagination .page-numbers {
    margin: 0 8px;
    transition: all 0.3s ease;
    color: #777777;
    text-decoration: none;
    font-size: 16px; }
    .pagination .page-numbers:hover {
      color: #262626; }
    .pagination .page-numbers.current {
      color: #262626; }
    .pagination .page-numbers svg {
      font-size: 12px;
      margin: 0 4px; }

.post-navigation {
  padding: 50px 0; }
  .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .post-navigation .nav-links > div {
      width: calc(50% - 50px);
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
      .post-navigation .nav-links > div a {
        color: #262626; }
    .post-navigation .nav-links .nav-previous {
      margin-right: 50px; }
    .post-navigation .nav-links .nav-next {
      margin-left: 50px;
      text-align: right; }

/* WP Admin Bar */
body.admin-bar {
  margin-top: 20px; }
  body.admin-bar ul a:before {
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    background-color: unset;
    pointer-events: unset;
    z-index: auto; }
  body.admin-bar header {
    top: 32px; }

.post-content img {
  width: auto;
  max-width: 100%; }

/* Google Reviews */
.wp-gr.wpac {
  margin-top: 30px !important;
  font-family: "Outfit Regular" !important;
  font-size: 16px !important; }
  .wp-gr.wpac .wp-google-content-inner .wp-google-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px 30px; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-left {
      display: none !important; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right {
      text-align: left !important; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-name {
      font-family: "Outfit Bold" !important; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-text {
      font-size: 14px !important;
      color: #777777 !important; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-star svg {
      width: 16px !important;
      height: 16px !important; }
      .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-star svg path {
        fill: #262626 !important; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-more-toggle {
      color: #262626 !important; }
  .wp-gr.wpac .wp-google-content-inner a {
    color: #262626 !important;
    position: relative !important;
    display: inline-block !important; }
  .wp-gr.wpac .wp-google-content-inner .wp-google-url {
    font-family: "Outfit Bold" !important;
    margin: 30px 0 !important; }

/* Cookie Notice */
#cookie-notice .cn-button {
  font-size: 14px;
  color: #fff; }

#cookie-notice .cn-button:hover {
  color: #262626; }

/* Contact */
.contact .info > p {
  margin-bottom: 15px; }
.contact .info > div {
  margin-bottom: 10px; }
  .contact .info > div svg {
    margin-right: 10px;
    font-size: 14px; }
  .contact .info > div a {
    font-size: 16px;
    color: #777777; }

/* Hide Gravity Forms Loading Spinner */
body .gform_footer {
    position: relative;
}

body img.gform_ajax_spinner {
    position: absolute;
    right: 8px;
    filter: brightness(200%);
    top: calc(50% - 2px);
    transform: translateY(-50%);
	max-width: 20px;
}
/* Post Date */
.post-date {
  color: #777777;
  font-size: 14px;
  margin-bottom: 6px; }

@media screen and (max-width: 980px) {
  /* TABLET START */
  /* Layout */
  .container {
    padding-bottom: 50px; }
    .container.divider {
      padding-bottom: 24px;
      margin-bottom: 25px; }
    .container.--custom-bg-color {
      padding: 50px 0;
      margin-bottom: 50px; }

  .row.split {
    grid-template-columns: 1fr;
    grid-gap: 50px; }
    .row.split.flip > :first-child {
      order: 0; }

  .has-sidebar {
    flex-direction: column-reverse; }
    .has-sidebar #sidebar {
      flex: 1 0 100%;
      margin-right: 0; }
    .has-sidebar .content {
      flex: 1 0 100%;
      max-width: 100%; }

  .grid {
    grid-column-gap: 30px;
    grid-row-gap: 15px; }
    .grid.col-4 {
      grid-template-columns: 1fr 1fr; }
    .grid.col-3 {
      grid-template-columns: 1fr; }
    .grid.g_container {
      grid-template-rows: auto auto;
      grid-column-gap: 30px;
      grid-row-gap: 50px;
      padding: 0 5% 50px 5%; }
    .grid.row-gap-50 {
      grid-row-gap: 30px; }

  .v-padding {
    padding-top: 30px;
    padding-bottom: 30px; }

  header #hamburger {
    display: block; }
  header .row {
    display: flex;
    justify-content: space-between; }
    header .row .logo {
      max-width: 180px; }
      header .row .logo img {
        width: 180px; }
    header .row nav {
      position: absolute;
      width: 90%;
      top: 100%;
      background: #ffffff;
      border-radius: 5px;
      box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease; }
      header .row nav.visible {
        max-height: none;
        opacity: 1;
        pointer-events: all; }
      header .row nav .mobile_ctas {
        display: flex;
        flex-direction: column;
        align-items: stretch; }
        header .row nav .mobile_ctas .btn {
          border-radius: 0; }
      header .row nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0 !important; }
        header .row nav ul li {
          margin: 0 !important; }
          header .row nav ul li a {
            padding: 12px 18px;
            display: block; }
            header .row nav ul li a::before {
              content: none; }
            header .row nav ul li a:hover {
              background: rgba(0, 0, 0, 0.05); }
          header .row nav ul li.current_page_item a {
            background: rgba(0, 0, 0, 0.05); }
    header .row .mobile_ctas .searchform > div {
      position: relative; }
    header .row .mobile_ctas .searchform .search_icon {
      position: absolute;
      top: 50%;
      right: 16px;
      transform: translateY(-50%); }
      header .row .mobile_ctas .searchform .search_icon input[type=submit] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        padding: 0;
        overflow: hidden; }
    header .row .mobile_ctas .searchform:hover input[type=text] {
      max-width: none;
      padding-left: 16px;
      padding-right: 40px;
      opacity: 1;
      margin-left: 0; }
    header .row .mobile_ctas input {
      width: 100%;
      padding: 12px 40px 12px 16px;
      max-width: none;
      opacity: 1;
      border-radius: 0; }
    header .row #hamburger {
      margin: 0;
      cursor: pointer; }
    header .row .icon_cont .account, header .row .icon_cont .search {
      display: none; }
  header.scrolled .row nav {
    background: #262626;
    border-radius: 0 0 5px 5px; }
  header.scrolled .row .mobile_ctas .search .search_icon svg {
    color: rgba(0, 0, 0, 0.6); }
  header.scrolled .row .mobile_ctas input {
    background-color: #ffffff;
    border-color: #ffffff; }
    header.scrolled .row .mobile_ctas input::placeholder {
      color: rgba(0, 0, 0, 0.6); }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none; }
    #overlay.visible {
      pointer-events: auto; }

  /* Text */
  h1 {
    font-size: 42px; }

  .cta-title {
    font-size: 34px;
    margin-bottom: 10px; }

  h2 {
    font-size: 30px; }

  h3 {
    font-size: 20px; }

  p, p a {
    font-size: 15px;
    margin: 4px 0; }

  ul, ol {
    font-size: 15px;
    margin: 5px 0 10px 0; }

  .blurb {
    font-size: 16px;
    margin: 15px 0; }

  .title_highlight::before {
    bottom: 4px;
    height: 6px; }

  /* Buttons */
  .btn {
    padding: 14px 20px;
    font-size: 14px; }
    .btn.xs {
      font-size: 12px;
      padding: 12px 18px; }

  .btn-text.--with-highlight::before, p a::before {
    height: 4px; }
  .btn-text.--with-highlight:hover::before, p a:hover::before {
    height: 6px; }

  /* Home */
  .hero {
    padding-top: 80px; }
    .hero .--has-image {
      min-height: 0; }
      .hero .--has-image > :first-child {
        margin-bottom: 50px;
        width: 100%; }
    .hero .hero_image {
      max-width: 35%; }
      .hero .hero_image::after {
        top: -100px;
        right: -150px;
        width: 500px;
        height: 500px; }
    .hero .flex {
      flex-direction: column; }
    .hero.home .row {
      flex-direction: row; }
    .hero .background_image {
      flex: 1 0 200px;
      margin: 0; }
    .hero .v-padding {
      padding-top: 0; }
    .hero .row.center-h {
      padding-top: 50px;
      padding-bottom: 30px; }

  .background_image {
    min-height: 200px;
    margin: 0; }

  /* Primary CTA */
  .cta.primary {
    padding: 30px 0;
    margin: 50px 0; }
    .cta.primary img {
      max-width: 300px;
      margin: -250px 0 -150px 0; }
  .cta.secondary {
    padding: 50px 0; }
    .cta.secondary .secondary_cta_image {
      max-width: 50%; }
      .cta.secondary .secondary_cta_image img {
        width: 800px; }
      .cta.secondary .secondary_cta_image::after {
        width: 300px;
        height: 300px; }
  .cta.basic {
    margin-bottom: 50px; }
  .cta.video {
    padding: 50px 0;
    margin-bottom: 150px; }
    .cta.video .btn {
      margin-bottom: 50px; }
    .cta.video .video {
      margin-bottom: -150px; }

  /* Pricing Table */
  .plans-pricing {
    overflow: visible; }
    .plans-pricing .pricing_item {
      padding: 20px; }
      .plans-pricing .pricing_item h3 {
        margin-bottom: 5px; }
      .plans-pricing .pricing_item .price {
        font-size: 40px; }
        .plans-pricing .pricing_item .price span {
          font-size: 15px; }
      .plans-pricing .pricing_item ul {
        margin: 15px 0 18px 0; }
        .plans-pricing .pricing_item ul li svg {
          font-size: 13px; }
      .plans-pricing .pricing_item.highlighted {
        order: -1; }
        .plans-pricing .pricing_item.highlighted h3::before {
          bottom: 3px;
          height: 6px; }

  /* Footer */
  footer nav ul li a {
    font-size: 15px; }

  .bottom_bar {
    padding: 15px 0; }
    .bottom_bar .row {
      flex-direction: column;
      align-items: center; }
    .bottom_bar .designed_by svg {
      width: 24px; }

  /* Steps */
  .steps_cont .steps .step .icon {
    flex: 1 0 80px;
    width: 80px;
    height: 80px;
    margin: 0 0 0 calc(50% - 40px); }
    .steps_cont .steps .step .icon svg {
      font-size: 20px; }
  .steps_cont .steps .step .content {
    flex: 1 0 calc(50% - 40px);
    padding: 0 0 0 20px; }
  .steps_cont .steps > :nth-child(2n) .icon {
    margin: 0 calc(50% - 40px) 0 0; }
  .steps_cont .steps > :nth-child(2n) .content {
    padding: 0 20px 0 0; }
  .steps_cont .steps > :first-child::before {
    top: calc(50% - 10px);
    height: calc(50% + 10px); }
  .steps_cont .steps > :last-child::before {
    top: 0;
    height: 50%; }
  .steps_cont .steps > :not(:last-child) {
    padding-bottom: 30px; }
  .steps_cont.--left-aligned .steps .step .content {
    flex: 1 0 calc(100% - 80px);
    padding: 0 0 0 20px; }
  .steps_cont.--left-aligned .steps .step::before {
    left: 40px; }
  .steps_cont.--left-aligned .steps > :nth-child(2n) .content {
    padding: 0 0 0 20px; }

  /* Accordion */
  .accordion .tab .head {
    padding: 12px; }
    .accordion .tab .head h3 {
      margin: 0; }
  .accordion .tab .body .inner {
    padding: 0 12px 12px 12px; }
  .accordion > :not(:last-child) {
    margin-bottom: 15px; }

  .post-navigation .nav-links .nav-previous {
    margin-right: 30px; }
  .post-navigation .nav-links .nav-next {
    margin-left: 30px; }

  /* Google Reviews */
  .wp-gr.wpac {
    margin-top: 15px !important; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-reviews {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      grid-gap: 15px; }
    .wp-gr.wpac .wp-google-content-inner .wp-google-url {
      margin: 30px 0 0 0 !important; }

  /* Contact */
  .contact .info > p {
    margin-bottom: 12px; }
  .contact .info > div a {
    font-size: 15px; }

  .--top-section {
    padding-top: 100px; }

  /* TABLET END */ }
@media screen and (max-width: 768px) {
  /* MOBILE START */
  /* Layout */
  .container {
    padding-bottom: 30px; }
    .container.divider {
      padding-bottom: 14px;
      margin-bottom: 15px; }
    .container.--custom-bg-color {
      padding: 30px 0;
      margin-bottom: 30px; }

  .row.split {
    grid-gap: 30px; }

  .grid.auto-min-200 {
    grid-template-columns: repeat(auto-fill, 1fr); }
  .grid.col-4 {
    grid-template-columns: 1fr; }
  .grid.g_container {
    display: flex;
    flex-direction: column;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 0 5% 30px 5%; }
    .grid.g_container > :nth-child(3) {
      order: 4; }
  .grid.r_gap_30 {
    grid-row-gap: 30px; }

  /* Text */
  h1 {
    font-size: 34px;
    line-height: 1.1em; }

  .cta-title {
    font-size: 30px; }

  h2 {
    font-size: 24px; }

  h3 {
    font-size: 18px; }

  p, p a {
    font-size: 14px;
    margin: 2px 0 4px 0; }

  ul, ol {
    font-size: 14px; }

  .blurb {
    font-size: 15px;
    line-height: 1.4em;
    margin: 10px 0 15px 0; }

  .title_highlight::before {
    height: 5px; }

  /* Images */
  .background_image {
    height: 250px;
    background-size: cover !important;
    border-radius: 5px; }

  /* Buttons */
  .dual_btn_cont > :first-child {
    margin-right: 10px; }

  .btn {
    padding: 13px 19px;
    font-size: 13px; }
    .btn.xs {
      padding: 13px 19px;
      font-size: 13px; }

  .btn-text.--with-highlight::before, p a::before {
    height: 3px; }
  .btn-text.--with-highlight:hover::before, p a:hover::before {
    height: 5px; }

  /* Hero */
  .hero.home {
    padding-top: 100px; }
    .hero.home .row {
      flex-direction: column; }
      .hero.home .row > :not(:last-child) {
        margin-bottom: 60px; }
  .hero .hero_image {
    max-width: 400px;
    position: relative; }
    .hero .hero_image::after {
      top: -200px;
      right: -300px;
      width: 500px;
      height: 500px; }
  .hero .--has-image > :first-child {
    margin-bottom: 30px; }
  .hero .row.center-h {
    padding-top: 0;
    padding-bottom: 0; }

  /* Primary CTA */
  .cta.primary {
    margin: 120px 0 30px 0; }
    .cta.primary .row {
      flex-direction: column-reverse; }
      .cta.primary .row > :first-child {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center; }
    .cta.primary .primary_cta_image {
      height: 0; }
      .cta.primary .primary_cta_image img {
        max-width: 160px;
        margin: -90% 0 0 0; }
  .cta.secondary {
    padding: 0 0 30px 0; }
    .cta.secondary .row {
      flex-direction: column; }
      .cta.secondary .row > :first-child {
        margin-bottom: 30px; }
    .cta.secondary .secondary_cta_image {
      max-width: 100%; }
      .cta.secondary .secondary_cta_image img {
        margin: 0 -200px 0 0; }
      .cta.secondary .secondary_cta_image::after {
        top: -20px;
        left: 10%; }
  .cta.basic {
    padding: 30px 0;
    margin-bottom: 30px; }

  .pricing_cont > :first-child {
    padding-top: 0; }
  .pricing_cont > :last-child {
    padding-bottom: 0; }
  .pricing_cont > .highlighted {
    padding: 20px; }

  /* Footer */
  footer nav ul > :not(:last-child) {
    margin-bottom: 3px; }
  footer nav ul li a {
    font-size: 14px; }

  .bottom_bar {
    text-align: center; }
    .bottom_bar .designed_by {
      margin-top: 5px; }

  /* Steps */
  .steps_cont .steps .step .icon {
    flex: 1 0 60px;
    width: 60px;
    height: 60px;
    margin: 0; }
  .steps_cont .steps .step .content {
    flex: 1 0 calc(100% - 60px); }
  .steps_cont .steps .step::before {
    left: 30px; }
  .steps_cont .steps > :nth-child(2n) {
    flex-direction: row; }
    .steps_cont .steps > :nth-child(2n) .icon {
      margin: 0; }
    .steps_cont .steps > :nth-child(2n) .content {
      padding: 0 0 0 20px; }
  .steps_cont .steps > :first-child::before {
    top: calc(50% - 10px);
    height: calc(50% + 10px); }
  .steps_cont .steps > :last-child::before {
    top: 0;
    height: 50%; }
  .steps_cont .steps > :not(:last-child) {
    padding-bottom: 30px; }
  .steps_cont .--btns .dual_btn_cont {
    flex-wrap: wrap;
    margin: -8px; }
    .steps_cont .--btns .dual_btn_cont > a {
      margin: 8px; }
  .steps_cont.--left-aligned .steps .step .content {
    flex: 1 0 calc(100% - 60px); }
  .steps_cont.--left-aligned .steps .step::before {
    left: 30px; }

  .posts {
    grid-template-columns: 1fr; }

  .pagination {
    margin-top: 30px; }

  .post-navigation {
    padding: 30px 0 0 0; }
    .post-navigation .nav-links .nav-previous {
      margin-right: 15px; }
    .post-navigation .nav-links .nav-next {
      margin-left: 15px; }

  /* Google Reviews */
  .wp-gr.wpac .wp-google-content-inner .wp-google-reviews {
    grid-template-columns: 1fr; }

  /* Contact */
  .contact .info > div a {
    font-size: 14px; }

  .horizontal-steps .steps-wrap {
    flex-direction: column; }
    .horizontal-steps .steps-wrap .step {
      flex-direction: column;
      padding-left: 0;
      padding-bottom: 32px; }
      .horizontal-steps .steps-wrap .step .step-inner {
        width: 100%; }
      .horizontal-steps .steps-wrap .step:not(:last-child)::after {
        margin-top: 32px;
        transform: rotate(90deg); }

  /* MOBILE END */ }

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