/*
Theme Name: Locus 2023
Author: Locus Marketing
Version: 1.1.0
*/

/* Imports 
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@200;300;400;500;600&family=Shadows+Into+Light&display=swap");

/* Base 
----------------------------------- */


img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }


* {
  box-sizing: border-box;
}
:root {
  font-family: "DM Sans", sans-serif;
  --primary: #fac474;
}
html,
body {
  background: #ffffff;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
main {
  margin: 0;
  width: 75rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 1.25rem;
  height: 100%;
}

/* Typography 
----------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  color: #201e1e;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.25rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
  vertical-align: middle;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1rem;
}
p {
  color: #737373;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

/* Buttons 
----------------------------------- */
.fwf-button {
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  color: white;
  border: none;
  border-radius: 100pc;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.fwf-button i {
  font-size: 12px;
  margin-left: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}
.fwf-button:hover i {
  margin-left: 16px;
}
.outline-button {
  border: 2px solid #fac474;
  border-radius: 100pc;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #201e1e;
}
.outline-button:hover {
  color: white;
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
}

/* Header 
----------------------------------- */
header.locus-header {
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10;
}
header.locus-header img {
  height: 45px;
  transform: translateY(2px);
}
header.locus-header .container {
  width: 80rem;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

/* Navigation 
----------------------------------- */
header.locus-header ul,
header.locus-header nav {
  display: flex;
  gap: 0.85rem;
  justify-content: flex-end;
  align-items: center;
}
header.locus-header li {
  list-style: none;
  font-size: 1rem;
  position: relative;
}
header.locus-header li a {
  color: #737373;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding: 0.75rem;
  font-weight: 400;
}
header.locus-header li.current_page_item a {
  color: #201e1e;
  font-weight: 600;
}
header.locus-header li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
header.locus-header li:hover a::after {
  width: 100%;
}
header.locus-header li.current_page_item a::after {
  width: 100%;
}
header.locus-header .header-social svg {
  height: 1.25rem;
  fill: #201e1e;
  transition: all 0.3s ease;
  margin-left: 1px;
}
header.locus-header .header-actions a::after {
  display: none;
}
header.locus-header .main-button {
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  color: white;
  border-radius: 100pc;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
header.locus-header .outline-button {
  display: inline-block;
  border: 2px solid #fac474;
  border-radius: 100pc;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #201e1e;
}
header.locus-header .outline-button:hover {
  color: white;
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
}

/* Sub Navigation 
----------------------------------- */
header.locus-header ul li ul {
  background: white;
  position: absolute;
  width: 200px;
  top: 3rem;
  left: 0;
  display: block;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border-top: 2px solid var(--primary);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
  margin-top: -2px;
}
header.locus-header ul li ul li a {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  padding: 0.65rem;
  font-size: 14px;
}
header.locus-header ul li ul li a::after {
  display: none;
}
header.locus-header ul li ul li a:hover {
  color: var(--primary);
}
header.locus-header li.menu-item-has-children:hover ul {
  pointer-events: auto;
  top: 2rem;
  opacity: 1;
}

/* Footer
----------------------------------- */
.footer-before {
  position: relative;
  z-index: 3;
}
.footer-before img {
  width: 100%;
  max-width: 100%;
  margin-bottom: -2rem;
  margin-top: -11%;
}
footer.locus-footer {
  background: #f5fdff;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
footer.dark-footer {
  background: #1f1f1f;
}
footer.locus-footer .container {
  display: flex;
  gap: 4rem;
  padding: 3rem 0;
  margin: 0 auto;
  width: 75rem;
  max-width: 100%;
  justify-content: space-between;
}
footer.locus-footer .partners img {
  max-height: 100%;
  margin: 0 0 1em;
  max-width: 150px;
  display: block;
}
.locus-copyright {
  background: #f5fdff;
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  width: 80rem;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.locus-social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.locus-social a {
  border-radius: 100pc;
  border: 2px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #201e1e;
  padding: 5px;
  text-decoration: none;
  aspect-ratio: 1;
  width: 36px;
  display: block;
  text-align: center;
  transform: translateY(2px);
  background: white;
  transition: all 0.3s ease;
}
.locus-social i {
  margin-top: 1px;
}
.locus-social a:hover {
  background: var(--primary);
  color: white;
}
footer.locus-footer .locus-copyright p,
footer.locus-footer .locus-copyright p a {
  color: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  margin-bottom: -0.75rem;
  text-decoration: none;
}
footer.dark-footer .locus-copyright p,
footer.dark-footer .locus-copyright p a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 300;
}
.locus-copyright p span {
  color: rgba(0, 0, 0, 0.25);
  padding: 0.25rem;
}

footer.locus-footer ul {
  padding: 0;
}
footer.locus-footer ul li {
  list-style: none;
}
footer.locus-footer ul li a {
  text-decoration: none;
  color: #737373;
  padding: 0.25rem 0;
  display: block;
  font-size: 15px;
}
footer.locus-footer ul li a:hover {
  color: var(--primary);
}
footer.locus-footer .footer-title {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.025rem;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  footer.locus-footer .container {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
  footer.locus-footer p {
    display: block;
    text-align: center;
    font-size: 12px;
  }
  footer.locus-footer .locus-copyright {
    display: grid;
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }
  .locus-social {
    justify-content: center;
    margin-top: 1rem;
  }
  .footer-before {
    margin-top: -47px;
  }
}

/* Mobile Navigation
----------------------------------- */
.mobile-trigger {
  display: none;
}
.mobile-trigger svg {
  fill: black;
  height: 32px;
}
.mobile-navigation {
  background: #1f1f1f;
  position: fixed;
  top: 65px;
  width: 100%;
  padding: 0;
  opacity: 0;
  transform: translateY(32px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.mobile-navigation ul {
  padding: 0;
  margin: 0;
}
.mobile-navigation li {
  list-style: none;
}
.mobile-navigation a {
  font-weight: 600;
  display: block;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 1.75rem;
  font-size: 12px;
  transition: all 0.3s ease;
}
.mobile-navigation a:hover {
  background: black;
}
.mobile-navigation ul li ul {
  display: none;
}
.menu-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 5;
}

@media (max-width: 992px) {
  header .container {
    padding: 0 1rem;
  }
  .desktop-navigation {
    display: none !important;
  }
  .mobile-trigger {
    display: block;
  }
  header.locus-header img {
    height: 36px;
    transform: translateY(2px);
  }
}

/* Header Buttons
----------------------------------- */
header.locus-header button {
  border: none;
  background: transparent;
}
.flex-button {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  transition: all 0.3s ease;
}
.flex-button svg {
  height: 16px;
  fill: white;
}
.flex-button:hover {
  gap: 1rem;
}

/* Overlay Header Overrides
----------------------------------- */
header.overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}
header.overlay-header .mobile-trigger {
  color: #ffffff;
}
header.overlay-header ul li a,
header.overlay-header li.current_page_item a {
  color: white;
}
header.overlay-header ul li ul li a {
  color: #212121;
}
header.overlay-header .outline-button {
  color: white;
}

footer.dark-footer ul li a {
  color: rgba(255, 255, 255, 0.75) !important;
}
footer.dark-footer .footer-title {
  color: white;
}
footer.dark-footer .locus-copyright {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
header.overlay-header.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Wave Sections 
----------------------------------*/

.wave-block {
  clip-path: polygon(
    100% 0%,
    0% 0%,
    0% 94.08%,
    2% 93.99%,
    4% 93.71%,
    6% 93.25%,
    8% 92.64%,
    10% 91.89%,
    12% 91.02%,
    14% 90.08%,
    16% 89.09%,
    18% 88.09%,
    20% 87.11%,
    22% 86.19%,
    24% 85.36%,
    26% 84.65%,
    28% 84.09%,
    30% 83.69%,
    32% 83.47%,
    34% 83.44%,
    36% 83.6%,
    38% 83.94%,
    40% 84.45%,
    42% 85.11%,
    44% 85.9%,
    46% 86.8%,
    48% 87.76%,
    50% 88.76%,
    52% 89.76%,
    54% 90.72%,
    56% 91.61%,
    58% 92.4%,
    60% 93.07%,
    62% 93.58%,
    64% 93.92%,
    66% 94.07%,
    68% 94.04%,
    70% 93.82%,
    72% 93.42%,
    74% 92.86%,
    76% 92.15%,
    78% 91.32%,
    80% 90.4%,
    82% 89.42%,
    84% 88.42%,
    86% 87.43%,
    88% 86.49%,
    90% 85.63%,
    92% 84.88%,
    94% 84.26%,
    96% 83.81%,
    98% 83.53%,
    100% 83.43%
  );
  margin-bottom: -45px;
}

.wave-block h1 {
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 12rem;
  width: 55rem;
  max-width: 100%;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 auto;
  letter-spacing: 0;
  color: white;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.handwriting {
  font-family: "Shadows Into Light", cursive;
  font-size: 3.5rem;
  font-weight: 900;
}
.blue-text {
  color: #0277bd;
}

@media (max-width: 992px) {
  .wave-block h1 {
    font-size: 1.75rem;
    padding-top: 5rem;
    padding-bottom: 12rem;
  }
  h2 {
    font-size: 1.95rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  .handwriting {
    font-size: 115%;
  }
  .wave-block {
    clip-path: polygon(
      100% 0%,
      0% 0%,
      0% 74%,
      2.86% 73.98%,
      5.71% 73.91%,
      8.57% 73.79%,
      11.43% 73.63%,
      14.29% 73.43%,
      17.14% 73.19%,
      20% 72.92%,
      22.86% 72.6%,
      25.71% 72.26%,
      28.57% 71.9%,
      31.43% 71.51%,
      34.29% 71.1%,
      37.14% 70.68%,
      40% 70.25%,
      42.86% 69.82%,
      45.71% 69.39%,
      48.57% 68.97%,
      51.43% 68.56%,
      54.29% 68.17%,
      57.14% 67.8%,
      60% 67.45%,
      62.86% 67.13%,
      65.71% 66.85%,
      68.57% 66.6%,
      71.43% 66.4%,
      74.29% 66.23%,
      77.14% 66.11%,
      80% 66.03%,
      82.86% 66%,
      85.71% 66.02%,
      88.57% 66.08%,
      91.43% 66.18%,
      94.29% 66.34%,
      97.14% 66.53%,
      100% 66.76%
    );
    padding-bottom: 4rem;
    margin-bottom: -8rem;
  }

  .fwf-button {
    display: flex;
    max-width: 205px;
    margin: 0 auto;
    margin-top: 1rem;
  }
}

.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li {
  margin-bottom: 20px;
}

.split-box {
  margin-bottom: -12px;
}
.split-box h2,
.split-box h3 {
  color: white;
}
.cta-testimonial {
  padding: 2rem 4rem;
  padding-bottom: 7rem;
}

.increase-section h2 {
  color: white;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: -12px;
}
.increase-section strong {
  color: rgba(0, 0, 0, 0.8);
}

.cta-section {
  clip-path: polygon(
    100% 100%,
    0% 100%,
    0% 25.23%,
    2.86% 25.15%,
    5.71% 24.9%,
    8.57% 24.48%,
    11.43% 23.91%,
    14.29% 23.21%,
    17.14% 22.39%,
    20% 21.48%,
    22.86% 20.49%,
    25.71% 19.45%,
    28.57% 18.4%,
    31.43% 17.35%,
    34.29% 16.34%,
    37.14% 15.39%,
    40% 14.52%,
    42.86% 13.76%,
    45.71% 13.14%,
    48.57% 12.65%,
    51.43% 12.33%,
    54.29% 12.17%,
    57.14% 12.18%,
    60% 12.36%,
    62.86% 12.7%,
    65.71% 13.2%,
    68.57% 13.84%,
    71.43% 14.61%,
    74.29% 15.49%,
    77.14% 16.45%,
    80% 17.47%,
    82.86% 18.52%,
    85.71% 19.57%,
    88.57% 20.6%,
    91.43% 21.58%,
    94.29% 22.49%,
    97.14% 23.3%,
    100% 23.98%
  );
  margin-top: -7.5rem;
  position: relative;
  z-index: 3;
  background-size: cover;
}

.cta-section .container {
  width: 80rem;
  max-width: 100%;
  padding: 0 1.25rem;
  text-align: center;
  margin: 0 auto;
  padding-top: 14rem;
  padding-bottom: 8rem;
}
.cta-section .container h2 {
  font-size: 4rem;
  color: white;
  font-weight: 800;
}
.cta-section .container p {
  color: #fff;
  width: 60rem;
  max-width: 100%;
  font-size: 18px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.cta-section .container .eyebrow {
  margin: 0 auto;
  margin-bottom: 1rem;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: white;
  display: block;
}

@media (max-width: 992px) {
  .cta-section {
    clip-path: none;
    margin-top: 0;
  }
  .cta-section .container {
    padding: 5rem 1.25rem;
  }
  .increase-section {
    padding-bottom: 4rem;
  }
  .cta-section .container h2 {
    font-size: 3rem;
  }
}

/* Locus 2023 Customizer Edits
----------------------------------- */

html,
body {
  font-family: "graphie", sans-serif;
}
body {
  overflow-x: hidden;
}
main {
  height: auto;
}
body {
  padding-top: 3rem;
}

@media (min-width: 992px) {
  body {
    padding-top: 0;
  }
  .home {
    padding-top: 6rem;
  }
}
@media (max-width: 992px) {
  body {
    overflow-x: visible !important;
  }
  .home {
    padding-top: 0;
  }
  body {
    padding-top: 2rem;
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
}
a {
  text-decoration: none;
  color: #0277bd;
  font-weight: 700;
}
.breadcrumbs {
  text-align: center;
  font-size: 14px;
  margin-top: 2rem;
}
p {
  font-family: "DM Sans", sans-serif !important;
}
img {
  max-width: 100%;
}
strong {
  font-weight: 600;
}

.internal-hero {
  text-align: center;
  padding: 10rem 0;
  padding-top: 4rem;
}
.internal-hero .handwriting {
  color: white;
  margin-bottom: -0.25rem;
  display: block;
  font-size: 3rem;
}
.internal-hero h1 {
  padding-top: 0 !important;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -1px;
}
.internal-hero p {
  font-size: 2.25rem;
  color: white;
  padding: 0.25rem;
  margin: 0 auto;
  padding-top: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

h3 .handwriting {
  font-size: 2.5rem;
  margin-bottom: 0.85rem !important;
  display: block;
}

.faded-one {
  max-width: 100%;
  position: absolute;
  aspect-ratio: 1;
  object-fit: contain;
  max-height: 400px;
  z-index: 1;
  pointer-events: none;
}
.faded-two {
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  max-height: 500px;
  z-index: 1;
}
.faded-two {
  z-index: 2;
  position: relative;
  pointer-events: none;
}
.mb-1 {
  margin-bottom: 1rem;
}

h3 .-mb {
  margin-bottom: -1rem !important;
}

.cta-section form {
  margin-top: 3.5rem;
}
.cta-section input {
  border-radius: 100pc;
  border: none;
  padding: 0.95rem 1rem !important;
  height: auto;
  max-height: none;
  font-size: 14px !important;
}
.cta-section input[type="submit"] {
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  color: white;
  border-radius: 100pc;
  padding: 1.15rem 1.25rem !important;
  line-height: 1;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  display: block;
  align-items: center;
  width: 100%;
}
.gform_title {
  display: none;
}

.chat-section {
  background-image: url(https://locuswebmarketing.com/wp-content/uploads/2023/07/cta-background-scaled.jpg);
  padding: 8rem;
  margin-bottom: 4rem;
  text-align: center;
}
.chat-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.chat-section h2 {
  color: white;
  font-size: 2.65rem;
}
.chat-section .handwriting {
  font-size: 4rem !important;
  margin-bottom: -2.25rem !important;
  display: block;
}
.chat-section::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(https://locuswebmarketing.com/wp-content/uploads/2023/07/top-swoosh.svg);
  background-position: center;
  display: block;
}
.chat-section::after {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(https://locuswebmarketing.com/wp-content/uploads/2023/07/bottom-swoosh.svg);
  background-position: center;
  display: block;
}
.chat-section {
  background-attachment: fixed;
  background-repeat: no-repeat !important;
}

footer.locus-footer div {
  width: 100%;
}
footer.locus-footer img {
  object-fit: contain;
  object-position: right;
}
footer.locus-footer div.locus-copyright {
  width: 80rem;
}
footer.locus-footer ul li a {
  font-weight: 500;
}
.locus-copyright div {
  width: auto !important;
}
.locus-copyright a {
  text-decoration: none;
  color: #212121;
}

.secondary-hero h1 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto;
}
.secondary-hero {
  padding: 3.5rem 0;
}
.secondary-hero .eyebrow {
  color: #55bec9;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  display: block;
  margin-bottom: -1rem;
}

.top {
  position: relative;
  z-index: 2;
}

.large-blob {
  text-align: center;
}
.large-blob .faded-one {
  max-width: 100%;
  position: absolute;
  aspect-ratio: 1;
  object-fit: contain;
  max-height: 800px;
  top: 12rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.large-blob .faded-two {
  z-index: 2;
  position: relative;
  margin: 0 auto;
  text-align: center;
  height: auto;
  max-height: none;
  margin-top: -17rem;
  padding: 6rem rem;
  margin-bottom: -16rem;
}

h1 {
  font-size: 2.9rem;
  line-height: 1.2;
}
h2 {
  line-height: 1.2;
}
h3 {
  line-height: 1.2;
}
h4 {
  line-height: 1.6;
}

.testimonial-marquee {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.testimonial-marquee-inner {
  display: inline-flex;
  justify-content: start;
}
.testimonial-marquee-inner-content {
  white-space: initial;
}
.testimonial-marquee::before {
  content: "";
  width: 200px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  display: none;
}

.date-posted,
.single__hero-date {
  display: none !important;
}

.testimonial-marquee-item {
  border-radius: 16px;
  background: white;
  padding: 1.25rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.25rem;
  margin: 0.5rem;
  width: 500px;
  position: relative;
  display: block;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.testimonial-marquee-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.testimonial-marquee-item .stars {
  font-size: 12px;
  color: #f3b411;
}
.testimonial-marquee-item p {
  font-size: 17px;
  max-width: 100%;
}

.marquee-two {
  margin-left: -8rem;
}

.numbers-section {
  background: rgb(143, 193, 227);
  background: linear-gradient(
    184deg,
    rgba(143, 193, 227, 1) 0%,
    rgba(246, 248, 236, 1) 100%
  );
  padding-top: 4rem;
  padding-bottom: 10rem;
  text-align: center;
  margin-bottom: -3.25rem;
}
.numbers-section h2 {
  color: #0277bd;
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 0;
}
.numbers-section p {
  font-weight: 800;
  color: #292d32;
}

.logo-grid > div {
  position: relative;
  margin-bottom: 4rem;
}
.logo-grid img:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  max-width: 250px;
}
.logo-grid img:nth-child(2) {
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: 16px;
  transition: all 1.25s ease;
}
.logo-grid img:nth-child(2):hover {
  filter: none;
  transform: scale(1.2);
}

.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper {
  position: relative;
  padding-bottom: 35.25% !important;
  height: 0;
}

.page-id-146 .wpb_wrapper {
  position: relative;
}

.laptop-showcase .faded-two {
  width: 1200px;
  max-width: 120%;
  height: auto;
  max-height: none;
}

.icons-section img {
  width: 80px !important;
}
.icons-section h3 {
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 1.5rem;
  color: #0277bd;
}

.testimonial-marquee-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100pc;
  border: 3px solid #efefef;
}
.te3stimonial-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.childpages {
  display: grid;
  padding-left: 0;
  margin-left: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}
.childpages li {
  list-style: none;
  padding: 1rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: white;
}
.childpages li:hover {
  background: white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.childpages img {
  height: 275px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.childpages h4 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 0.5rem;
  margin-bottom: -1rem;
}
.childpages p {
  font-size: 17px;
}

.child-hero .handwriting {
  display: inline-block;
  font-size: inherit;
}

.results-text {
  font-size: 3.25rem;
}

.work-filter {
  text-align: center;
}
.work-filter button {
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.work-filter button:nth-child(1),
.work-filter button:hover {
  border-bottom: 4px solid var(--primary);
  cursor: pointer;
}

h2,
h3 {
  font-weight: 200 !important;
}

.ad-logos {
  padding: 2rem 0;
  padding-top: 4rem;
}
.ad-logos img {
  height: 60px;
  object-fit: contain;
}

.large-text {
  font-size: 2rem;
}
.eyebrow {
  color: #2890c9;
  font-weight: 500;
}

.icon-block {
  background: white;
  border-radius: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: -1rem;
}
.icon-swoosh {
  background: #2890c9;
  max-width: 200px;
  width: 250px;
  color: white;
  font-size: 2rem;
  text-align: center;
  border-bottom-right-radius: 100pc;
  height: 100px;
  padding-top: 1.15rem;
}
.icon-content {
  padding: 2rem;
  padding-bottom: 1.5rem;
}
.icon-content h3 {
  font-weight: 600 !important;
  font-size: 24px;
}
.icon-content p {
  font-size: 16px;
}
.icon-swoosh {
  max-width: 100px;
}
.icon-swoosh i {
  margin-left: -1rem;
  margin-top: 0.5rem;
}

.icon-swoosh-01 {
  background: #2890c9;
}
.icon-swoosh-02 {
  background: #55bec9;
}
.icon-swoosh-03 {
  background: #8fb414;
}
.icon-swoosh-04 {
  background: #f3b411;
}
.icon-swoosh-05 {
  background: #ff8700;
}
.icon-swoosh-06 {
  background: #2890c9;
}
.icon-swoosh-07 {
  background: #55bec9;
}

.animated-images {
  text-align: center;
}
.animated-images h3 {
  font-weight: 600 !important;
  font-size: 20px;
}
.animated-images img {
  height: 75px;
  object-fit: contain;
}

.vc_toggle_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-marquee-item h3 {
  font-weight: 600 !important;
}
.cta-section .container h2 {
  font-size: 4rem;
  color: white;
  font-weight: 600 !important;
  letter-spacing: -2px;
}

.home-video-section img {
  width: 1650px;
  position: absolute;
  max-width: none;
  top: -18rem;
  left: -5rem;
}
.video-mask video {
  height: 100%;
  object-fit: cover;
  width: 100%;
  object-position: center;
  opacity: 0.75;
}
.video-mask {
  position: relative;
  max-width: 100%;
  z-index: 5;
}

.home header {
  position: fixed !important;
  top: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.75) !important;
}

.svg {
  position: absolute;
  width: 0;
  height: 0;
}
.clipped {
  position: relative;
  width: 100%;
  max-width: none;
  max-height: none;
  height: 620px;
  margin-top: -2rem;
  background: #212121;
  background-size: cover;
  -webkit-clip-path: url(#my-clip-path);
  clip-path: url(#my-clip-path);
  margin-left: 2rem;
}

.clipped {
  position: relative;
  width: 112%;
  max-width: none;
  max-height: none;
  height: 680px;
  margin-top: -2rem;
  background: #212121;
  background-size: cover;
  clip-path: url(#my-clip-path);
  margin-left: 1rem;
}
.clipped img {
  position: absolute;
  width: 75px;
  top: 147px;
  left: -32px;
  right: 0;
  z-index: 99999;
  background: white;
  border-radius: 100pc;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.home-video-section:hover img {
  transform: scale(1.2);
}
.ico-section .vc_column-inner > .wpb_wrapper {
  background: white;
  text-align: center;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  display: grid;
  align-items: center;
  min-height: 300px;
}
.ico-section img {
  margin: 0 auto;
  text-align: center;
  height: 95px;
  width: auto;
  margin-top: 1rem;
  margin-bottom: -3rem;
}
.ico-section .wpb_single_image {
  width: 100%;
  text-align: center;
}
.ico-section p {
  font-size: 16px;
}
.ico-section strong {
  color: #2890c9;
  font-size: 20px;
}

.rely {
  position: relative;
  z-index: 4;
  background: transparent !important;
}

.hidden-mobile {
  display: block;
}
.hidden-desktop {
  display: none;
}

@media (max-width: 992px) {
  .hidden-mobile {
    display: none !important;
  }
  .hidden-desktop {
    display: block !important;
  }
  h1 {
    font-size: 2rem;
  }
  .fwf-button {
    max-width: 100%;
    justify-content: center;
  }
  .home-video-section img {
    width: 950px;
    position: absolute;
    max-width: none;
    top: -35rem;
    left: -4rem;
    z-index: 1;
    height: auto !important;
  }
  .home-video-section img {
    opacity: 0.5 !important;
  }
  .clipped img {
    display: none !important;
  }
  .clipped {
    margin: 0 auto;
    margin-bottom: 0;
    margin-top: -0.365rem;
    height: 290px;
    width: 90%;
  }
  h2,
  h3 {
    font-size: 1.75rem;
  }
  .cta-section .container h2 {
    font-size: 2.65rem;
  }
  .childpages {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    text-align: center;
  }
  .childpages img {
    height: 165px;
  }
  .intro-hero {
    text-align: center;
    padding-top: 2rem;
  }
  .intro-hero p {
    margin-top: -1rem;
  }
  .intro-hero h1 {
    font-size: 1.55rem;
    letter-spacing: 0;
  }
  .intro-hero h1 strong {
    white-space: nowrap;
    font-size: 1.5rem;
  }
  .intro-hero .fwf-button {
    margin-bottom: -5rem;
  }
  .intro-hero .eyebrow {
    margin-top: 4rem;
    display: block;
  }
  .introduction {
    margin-top: -3rem;
    padding-top: 3rem;
  }
  body {
    padding-top: 0;
  }
  .wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper {
    position: relative;
    padding-bottom: 49.25% !important;
    height: 0;
  }
}

/* Mobile Navigation */
.locus-header {
  z-index: 999;
}
.locus-header,
.home header {
  background: rgba(249, 249, 249, 0.7) !important;
}
.locus-header .mobile-trigger {
  color: #272727 !important;
}
.mobile-navigation {
  top: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(6px);
}
.mobile-navigation li a {
  font-family: "DM Sans" !important;
  letter-spacing: 1px;
  background: transparent;
  text-align: center;
  color: #272727;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-navigation li a:hover {
  color: #272727;
  background: rgba(0, 0, 0, 0.2);
}
.menu-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 99;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: scroll;
  position: fixed;
}
.mobile-navigation .fwf-button {
  margin: 0.5rem;
  margin-top: 1.25rem;
  text-align: center;
  padding: 1rem;
}
.mobile-navigation .menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  color: #272727;
  position: absolute;
  right: 2rem;
}
.mobile-navigation .sub-menu {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-navigation .sub-menu a {
  color: #ffffff;
  background: #272727;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-navigation .sub-menu a:hover {
  color: white;
  background: #000;
}

@media (max-width: 992px) {
  .locus-header,
  .home header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
  }
  .results-text {
    font-size: 2rem;
    margin-top: -2rem;
  }
  .chat-section {
    background-attachment: unset !important;
    background-size: cover !important;
  }
  .chat-section h2 {
    font-size: 2rem !important;
  }
  footer > div.container > div:nth-child(5) {
    grid-column: span 2 / span 2;
    justify-content: center;
    align-items: center;
    display: grid;
  }
  .eyebrow {
    font-size: 15px !important;
  }
  .childpages h4 {
    font-size: 18px;
  }
  .childpages p {
    margin-bottom: 0;
    font-size: 15px;
  }
  .vc_empty_space {
    max-height: 32px;
  }
  .childpages {
    padding-bottom: 0;
  }
  .locus-header,
  .home header {
    padding: 1rem 0 !important;
  }
  .fwf-button {
    display: inline-block;
  }
  .internal-hero h1 {
    font-size: 2.65rem;
  }
  .internal-hero p {
    font-size: 1.5rem;
  }
  .work-filter {
    display: flex;
    margin-bottom: -1rem;
  }
  .work-filter button {
    font-size: 13px;
    text-align: center;
    width: 100%;
    font-weight: 600;
    line-height: 1.2;
  }
}

.clipped img {
  display: none;
}
header.overlay-header {
  position: absolute !important;
  background: transparent !important;
}
@media (min-width: 992px) {
  .mobile-only-nav {
    display: none !important;
  }
}

.cta-section form {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: -4rem;
  margin-top: 3rem;
  display: block;
}

.mobile-only-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  text-align: center;
}
.mobile-only-nav .fwf-button {
  margin-top: 0;
  padding: 6px 14px;
  font-size: 15px;
  margin-right: 6px;
}
.phone-icon {
  color: #272727;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px;
  width: 40px;
  height: 40px;
  border-radius: 100pc;
}

.logo-grid .wpb_wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

main {
  width: 85rem;
  max-width: 100%;
}

#nav-icon {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

.increase-section h2 {
  font-weight: 600 !important;
  margin-bottom: -12px;
  letter-spacing: 0px;
}
.increase-section strong {
  color: white;
}
.split-box h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 200 !important;
  line-height: 1.4;
}
.split-box h3 strong {
  font-weight: 400;
}

.secondary-hero::before {
  content: "";
  width: 900px;
  height: 900px;
  background: url(https://locuswebmarketing.com/wp-content/uploads/2023/07/home-bg-mask.png);
  position: absolute;
  z-index: 2;
  background-size: contain;
  top: -15rem;
  right: -6rem;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
}
.secondary-hero .wpb_wrapper {
  position: relative;
  z-index: 3;
}

.logo-grid {
  position: relative;
  z-index: 3;
}

.hover-button {
  border: none;
  background: inherit;
  text-decoration: none;
  color: #272727;
  font-weight: 600;
  position: relative;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.365rem;
  padding: 14px;
}
.hover-button::before {
  content: "";
  width: 44px;
  height: 44px;
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  border-radius: 100pc;
  display: inline-block;
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 0.3s ease;
}
.hover-button:hover::before {
  width: 108%;
}

.tags {
  color: #3f99d1;
  font-weight: 500;
  display: block;
  margin-top: 1.24rem;
}

.popup-main {
  background-image: url(https://locuswebmarketing.com/wp-content/uploads/2023/07/cta-background-scaled.jpg);
  padding: 1.5rem;
  background-size: cover;
}
.popup-inner {
  background: white;
  position: relative;
  overflow: hidden;
}
.popup-container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-left: 2rem;
}
.popup-container div {
  width: 100%;
}
.popup-footer {
  margin-top: -5rem;
}
.popup-footer img {
  transform: scale(1.05);
  margin-bottom: -6px;
}
.popup-container p {
  font-size: 16px;
}
.popup-container h4 {
  font-weight: 600;
  margin-bottom: -1rem;
  margin-top: -1rem;
}
.popup-container h2 {
  font-size: 30px;
  font-weight: 600 !important;
  margin-top: -2.65rem;
}
.popup-container img {
  margin-top: -0.25rem;
  margin-left: -1rem;
}
.pum-theme-2038 .pum-container,
.pum-theme-lightbox .pum-container {
  border: none;
  padding: 0;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}
.filter-buttons button {
  border: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  cursor: pointer !important;
  background: transparent;
  color: #272727;
  text-transform: capitalize;
}
.filter-buttons button::after {
  content: "";
  background: var(--primary);
  height: 2px;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.filter-buttons button:hover::after {
  width: 100%;
}

.work-swoosh {
  background-size: cover;
  background-position: top;
  padding-bottom: 12rem;
  margin-bottom: -16rem;
}

.post-grid a {
  text-decoration: none;
  color: #f97967 !important;
  font-weight: 600;
}

.child-grid {
  padding-bottom: 1.75rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.work-inner {
  position: relative !important;
  overflow: hidden !important;
  height: 250px;
  border-radius: 8px;
  width: 100%;
}
.work-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.75s ease;
}
.child-grid:hover .work-inner img {
  transform: scale(1.1);
}
.work-inner-content {
  position: absolute;
  z-index: 2;
  padding: 2rem;
  padding-right: 6rem;
  color: white;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  padding-top: 6rem;
  transition: all 0.3s ease;
  opacity: 0;
  bottom: -100%;
  border-radius: 8px;
}
.work-inner-content p {
  color: white;
  font-size: 22px;
}
.tags {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: orange;
}
.child-grid:hover .work-inner-content {
  bottom: 0;
  opacity: 1;
}

@media (max-width: 992px) {
  .work-inner-content {
    padding-top: 3rem;
    padding-right: 2rem;
  }
  .work-inner-content p {
    font-size: 18px;
  }
}

.sideimg img {
  max-width: 250px;
}
.thrive-img {
  max-width: 250px;
}

.ad-logos img {
  height: 45px;
  object-fit: contain;
}
.insta img,
.google img {
  height: 55px;
}

.yahoo img {
  height: 63px;
}

/*  Needed for filters */

.hide {
  /* You can play with the seconds to change the "animation" */
  animation: hide 0.3s ease 0s 1 normal forwards;
  transform-origin: center;
}
.show {
  /* You can play with the seconds to change the "animation" */
  animation: show 0.3s ease 0s 1 normal forwards;
  transform-origin: center;
}

@keyframes hide {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
    width: 0;
    height: 0;
    margin: 0;
  }
}
@keyframes show {
  0% {
    transform: scale(0);
    width: 0;
    height: 0;
    margin: 0;
  }
  100% {
    transform: scale(1);
  }
}

.filter-buttons button {
  text-transform: uppercase !important;
}
.hide {
  display: none;
}

.secondary-hero .eyebrow {
  color: #55bec9;
  font-size: 1.4rem;
  text-align: left;
  margin: 0 auto;
  width: 100%;
  display: block;
  margin-bottom: 0;
}
.breadcrumbs {
  margin-bottom: 1rem;
  text-align: left;
}
.secondary-hero {
  padding-bottom: 0;
}
.secondary-hero .faded-two {
  max-height: 600px;
  margin-bottom: -3rem;
  margin-left: 3rem;
  margin-top: -3rem;
}
.secondary-hero .faded-one {
  max-width: 100%;
  position: absolute;
  aspect-ratio: 1;
  object-fit: contain;
  max-height: 500px;
  z-index: 1;
  pointer-events: none;
  margin-left: 4rem;
  margin-top: -2rem;
  opacity: 0.85 !important;
}

.secondary-hero-02 .eyebrow {
  text-align: center;
}

@media (max-width: 992px) {
  .secondary-hero::before {
    display: none;
  }
  .secondary-hero .faded-one {
    max-width: 100%;
    position: absolute;
    aspect-ratio: 1;
    object-fit: contain;
    max-height: 285px;
    z-index: 1;
    pointer-events: none;
    margin-left: 0;
    margin-top: 0rem;
    opacity: 0.85 !important;
  }
  .secondary-hero .faded-two {
    max-height: 350px;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-top: 1rem;
  }
  .icon-swoosh {
    max-width: 65px;
    min-width: 65px;
    width: 65px;
    height: 85px;
    margin-right: -1rem;
  }
  .icon-swoosh i {
    font-size: 24px;
    padding-left: 6px;
  }
  .filter-buttons {
    display: none;
  }
  .reversed-mobile {
    order: -1;
  }
  .neg-mobile {
    margin-top: -2rem;
    position: relative;
    z-index: 3;
  }
  .neg-more-mobile {
    margin-top: -6rem;
    position: relative;
    z-index: 3;
  }
  .chat-section {
    padding-bottom: 3rem;
  }
  .chat-section::after {
    display: none !important;
  }
  .secondary-hero-02 {
    padding-top: 6rem;
  }
  .internal-hero {
    padding-top: 5rem;
    padding-bottom: 6.5rem;
  }
}

/*locations*/
input#input_2_1_3 {
  padding-left: 25px;
  background-color: #fff !important;
}

input#input_2_3 {
  padding-left: 25px;
  background-color: #fff !important;
}
input#input_2_5 {
  padding-left: 25px;
  background-color: #fff !important;
}
input#input_2_4 {
  padding-left: 25px;
  background-color: #fff !important;
}

#seo-img {
  max-width: 500px;
  margin: 0 auto;
}

.gform_wrapper .gform_validation_errors > h2 {
  color: #c02b0a;
  font-size: 13.2px !important;
  font-weight: 500;
  line-height: 17.6px;
  margin: 0 0 12px 0;
}
/*meet our team*/

.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
  cursor: pointer;
}

.handwriting {
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
}

.wpb_wrapper li {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  color: #373737;
}

.max-h {
  max-height: 220px !important;
}

.blobby {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 992px) {
  .single__hero {
    max-height: 355px !important;
  }
  .single__content {
    display: block !important;
  }
  .single__content-content {
    padding: 1rem;
    padding-top: 0;
    width: 1000px;
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .popup-container {
    display: grid;
    padding-left: 0;
  }
  .popup-container img,
  .popup-container h4,
  .popup-container p {
    display: none;
  }
  .popup-container h2 {
    font-size: 22px;
    font-weight: 600 !important;
    margin-top: 1rem;
    margin-bottom: -3rem;
    position: relative;
  }
  .popup-main {
    padding: 1rem;
  }
  header,
  header.overlay-header {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.75) !important;
    position: fixed !important;
  }
  header.overlay-header {
    background: rgba(0, 0, 0, 0.65) !important;
  }
  header.overlay-header i {
    color: white !important;
  }
  .faded {
    visibility: hidden;
  }
  .single__hero-left {
    padding-top: 7rem !important;
  }
  .post-grid {
    margin-top: 3rem !important;
  }
  .single__post .single__post-image {
    height: 110px !important;
  }
  .single__hero-right {
    height: 130px !important;
  }
  .cats {
    display: none;
  }
  .work-hero h1 {
    padding-bottom: 6rem !important;
  }
  .cta-testimonial {
    padding: 1rem 1rem;
    padding-bottom: 2rem;
  }
  .increase-section {
    padding-bottom: 7.5rem;
    padding-top: 0 !important;
  }
  .gform_wrapper.gravity-theme .gform_footer button,
  .gform_wrapper.gravity-theme .gform_footer input,
  .gform_wrapper.gravity-theme .gform_page_footer button,
  .gform_wrapper.gravity-theme .gform_page_footer input {
    padding: 8px !important;
  }
  .internal-hero h1 {
    font-size: 2rem;
  }
  .internal-hero p {
    font-size: 1.2rem;
  }
  .cta-section .container h2 {
    font-size: 2.15rem;
    letter-spacing: 0px !important;
    font-weight: 500 !important;
  }
  .results-text {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .wave-block {
    margin-bottom: -7rem;
  }
  .career-perks
    .vc_row-o-content-top
    .vc_column-inner
    > .wpb_wrapper:not(.vc_figure) {
    max-width: 100% !important;
  }
  .l-job-list {
    display: grid !important;
    max-width: 100% !important;
    margin-bottom: -3rem !important;
    margin-top: 2rem !important;
    padding: 0 !important;
    text-align: center;
    min-width: 100% !important;
    text-align: center;
    justify-content: center !important;
  }
  .l-job-list li {
    min-width: 100% !important;
    max-width: 100%;
    display: block;
    text-align: center !important;
  }
  .l-job-list a {
    display: block;
    width: 100%;
  }
  .secondary-hero .faded-two {
    margin-bottom: -4rem !important;
    display: block;
  }
  .breadcrumbs {
    margin-top: 7rem !important;
  }
  .secondary-hero-02 {
    margin-top: 1rem !important;
  }
  .secondary-hero-02 .breadcrumbs {
    margin-top: 0 !important;
  }
  .secondary-hero {
    margin-top: -5rem;
  }
  .s-text {
    position: relative;
    z-index: 3;
    margin-top: 8rem;
  }
  .case-section {
    margin-top: 5rem;
  }
}

.work-banner {
  min-height: 325px !important;
}
.split-box h2 {
  font-size: 2.15rem;
  display: block;
  font-weight: 500 !important;
}

.locus-social i {
  margin-top: 4px;
}
.single__post {
  padding: 1rem !important;
}
.single__post h2 a {
  color: #272727 !important;
}

.contact input {
  border-radius: 100pc;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.contact textarea {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.contact input[type="submit"] {
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  color: white;
  border-radius: 100pc;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  font-size: 16px;
  padding: 16px;
}

.error404 .cta-section {
  display: none;
}
.fourohfour {
  height: calc(100vh - 105px);
  display: grid;
  place-content: center;
  text-align: center;
}
.fourohfour h1 {
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 3.65rem;
}
.fourohfour p {
  margin-top: 0;
  font-size: 1.365rem;
  margin-bottom: 2rem;
}
.error404 footer {
  display: none;
}

.error404 .main-button {
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  color: white;
  border-radius: 100pc;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.error404 .main-button i {
  margin-right: 0.5rem;
}

@media (min-width: 1300px) {
  .scaled-img {
    transform: scale(1.2);
    margin-left: 7rem;
  }
}

.negmob img {
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.animated-images .wpb_single_image.vc_align_left, .ico-section .wpb_single_image.vc_align_left {
	text-align: center;
	margin-bottom: 16px;
}
.animated-images .wpb_single_image.vc_align_left img, .ico-section img {
	max-width: 100px !important;
}




/* SEO Pages CSS 
----------------------------*/

#seo-img {
  max-width: 500px;
}
.internal-hero-locations h1 {
  font-size: 27px;
  font-weight: 500 !important;
  color: #2890C9;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.internal-hero-locations h2 {
  font-size: 61px !important;
  font-weight: 700 !important;
  font-family: "graphie", sans-serif;
}
.internal-hero-locations h3 {
  font-size: 24px;
  font-weight: 400 !important;
  font-family: 'DM Sans', sans-serif;
}
.internal-hero-locations h4 {
  font-size: 30px;
  font-weight: 700 !important;
  font-family: 'DM Sans', sans-serif;
}
div.vc_row-o-content-middle:nth-child(2)>div:nth-child(2) {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 20px;
}
input#input_2_1_3 {
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #000;
  height: 45px;
}
input#input_2_3 {
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #000;
  height: 45px;
}
input#input_2_5 {
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #000;
  height: 45px;
}
input#input_2_4 {
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #000;
  height: 45px;
}
input#gform_submit_button_2 {
  height: 45px;
  background-color: #368CF0;
  background-image: linear-gradient(to right, #2bb2fb 0%, #368cf0 50%, #2bb2fb 100%);
  font-size: 20px;
  color: #fff;
  font-weight: 400 !important;
  border: 0px !important;
  border-radius: 25px;
}
input#gform_submit_button_2:hover {
  color: #ffffff;
  background-color: #368cf0;
  border: none;
  background-position: 100% 0;
}
body>main>div.vc_row.wpb_row.vc_row-fluid.internal-hero-locations.vc_custom_1690316936813.vc_row-has-fill>div:nth-child(2) {
  display: none;
}
.vc_btn3.vc_btn3-color-sky, .vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat {
  background-color: #368CF0 !important;
  background: #368CF0 !important;
  font-size: 20px
}
.location-cards h3 {
  padding: 20px 0px 0px 0px;
  font-size: 1.5rem;
}
.location-text {
  width: 60%;
  margin: 0 auto;
}
.location-cards:hover {
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 20px;
  height: 575px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.location-cards {
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 20px;
  height: 575px;
  display: flex;
  flex-direction: column;
}
.card-number {
  background-color: #f5fdff;
  width: 14%;
  padding: 10px;
  margin: 0 auto;
  border-radius: 50%;
}
.human-powered {
  width: 70%;
  margin: 0 auto;
}
#start-today h2 {
  font-size: 65px;
  font-weight: 700;
}
#start-today {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0px;
}
.vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat {
  background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
  color: white;
  border-radius: 100pc;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
/*section.cta-section {
  display: none;
}*/
.googlemap {
  position: relative;
  padding-bottom: 15% !important;
  height: 0;
  overflow: hidden;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: auto !important;
}
ul.our-services {
  list-style: none;
  column-count: 3;
  column-gap: 10px;
  width: 90%;
  margin: 0 auto;
}
ul.our-services li:before {
  content: '✅';
  padding-right: 20px;
}
.our-services li {
  padding: 10px 0px;
}
#start-today {
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -188px;
}
.locus-marketing-success {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: space-evenly;
  flex-wrap: wrap;
  gap: 57px;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .internal-hero-locations h2 {
    font-size: 34px !important;
    font-weight: 700 !important;
    text-align: center;
  }
  .internal-hero-locations h1 {
    text-align: center;
    font-size: 20px;
  }
  .internal-hero-locations h3 {
    text-align: center;
    font-size: 16px;
  }
  h2 {
    font-size: 24px !important;
  }
  div.vc_btn3-container:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .vc_btn3.vc_btn3-color-sky, .vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat {
    font-size: 18px;
  }
  .vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 0px;
  }
  .vc_custom_1690394079433>div:nth-child(1)>div:nth-child(1)>div:nth-child(1)>div:nth-child(1) {
    display: none;
  }
  .wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0px;
  }
  .internal-hero-locations h4 {
    font-size: 20px;
    font-weight: 700 !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
  }
  .human-powered {
    width: 100%;
    margin: 0 auto;
  }
  .location-text {
    width: 100%;
    margin: 0 auto;
  }
  ul.our-services {
    list-style: none;
    column-count: 1;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
  }
  #swap-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  #hero {
    background-position: 90% 100%;
    top: 65px;
    margin-bottom: 65px;
  }
  .vc_btn3-container.vc_btn3-inline {
    display: flex;
    justify-content: center;
  }
  #start-today {
    background-image: url(https://locuswebmarketing.com/wp-content/uploads/2023/08/locaions.png) !important;
    padding: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0px !important;
    background-position: center;
  }
  #start-today h2 {
    font-size: 23px !important;
    ;
  }
  #start-today h3 {
    font-size: 20px !important;
    padding-bottom: 20px;
  }
  #start-today p {
    font-size: 16px !important;
    padding-bottom: 20px;
  }
  .vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 5px;
  }
  .vc_custom_1690394079433>div:nth-child(1)>div:nth-child(1)>div:nth-child(1)>div:nth-child(1) {
    display: none;
  }
  .wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 25px;
  }
  .vc_custom_1690394079433>div:nth-child(1)>div:nth-child(1)>div:nth-child(1)>div:nth-child(3) {
    display: none;
  }
  .wpb_gmaps_widget.wpb_content_element.vc_map_responsive {
    margin-bottom: 0;
  }
  #hero>div>div>div>div:nth-child(2)>div:nth-child(1)>div>div>div.vc_empty_space {
    display: none;
  }
  body>main>div.vc_row.wpb_row.vc_row-fluid.vc_custom_1690394056116.vc_row-has-fill>div:nth-child(1)>div>div>div.vc_empty_space {
    display: none;
  }
  #start-today>div>div>div>div:nth-child(5) {
    display: none;
  }
  body>main>div.vc_row.wpb_row.vc_row-fluid.vc_custom_1690394066984.vc_row-has-fill>div:nth-child(1)>div>div>div:nth-child(4) {
    display: none;
  }
  .vc_row.wpb_row.vc_row-fluid.vc_custom_1690394056116.vc_row-has-fill {
    margin-top: 25px;
  }
}



.intro-hero h2 {
  font-size: 2.9rem;
  line-height: 1.2;
}
ol {
	padding-left: 1rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
ol li {
	font-size: 18px;
	margin-bottom: .5rem;
	font-weight: 500;
}


.cta-section {
	margin-top: -11rem;
}


/* Customizer Code 12/16/2025 
 * --------------------------------- */

.hl-app .no-shadow, .hl-app .white-bg, .hl-app .hl_widget-inner, .hl-app .hl_widget, .hl-app .hl_widget>* {
	background: transparent !important;
}
.form-box-widget {
	position: relative;
	z-index: 2;
}
.form-box-widget {
	text-align: center;
}
.formy iframe {
	overflow: hidden;
	border-radius: 12px;
}
.lead-logo img {
	max-height: 65px;
	width: auto;
}
.home-video-section img {
	width: 1450px !important;
}
.page-id-3925 .cta-section {
	background-image: url(https://locuswebmarketing.com/storage/2024/04/cta-background-scaled.jpg) !important;
}
.tab-title {
	background: #B3E5FC;
	padding: 1rem 1.5rem;
	font-weight: 800;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	position: relative;
	height: 68px;
	display: inline-grid;
	align-items: center;
}
.tab-title::after {
	content: '';
	width: 48px;
	height: 48px;
	background: #B3E5FC;
	display: block;
	position: absolute;
	top: 10px;
	right: -24px;
	transform: rotate(45deg);
	z-index: -1;
}
.tab-title::before {
	content: '';
	width: 45px;
	height: 70px;
	background: #B3E5FC;
	display: block;
	position: absolute;
	top: -8px;
	left: -32px;
	transform: rotate(20deg);
	z-index: -1;
}
.title-02, .title-02::after, .title-02::before {
	color: white;
	background: #4797D4;
}
.title-03, .title-03::after, .title-03::before {
	color: white;
	background: #55BEC9;
}
.page-id-3925 div.vc_row-o-content-middle:nth-child(2)>div:nth-child(2) {
	background: transparent !important;
}
.page-id-4162 div.vc_row-o-content-middle:nth-child(2)>div:nth-child(2) {
	background: transparent !important;
}
@media(min-width: 992px) {
	.laptop-01 img {
		max-width: 150% !important;
	}
	.laptop-02 img {
		max-width: 150% !important;
		transform: translateX(-400px);
	}
}
@media(max-width: 992px) {
	.page-id-3925 .cta-section {
		margin-top: 10px !important;
	}
	.lead-logo img {
		max-height: 50px;
		margin-top: 38px;
		width: auto;
		display: block;
	}
	.center-mobile {
		text-align: center !important;
	}
	.neg-form {
		margin-top: -9rem !important;
	}
}
.popup-container iframe {
	min-height: 600px;
}
@media(max-width: 992px) {
	.page-id-4082 .cta-section {
		display: none;
	}
	.page-id-4082 iframe {
		height: 600px;
	}
	.page-id-4082 {
		padding-top: 75px !important;
	}
	.cta-section {
		margin-top: 0rem !important;
	}
}
/*annas css*/

div#keyseo {
	background-repeat: no-repeat !important;
	background-size: 100% 100% !important;
}
.wpb_text_column.wpb_content_element.digitaltext {
	width: 60%;
	margin: 60px auto;
}
.service-cards {
	background-color: #fff;
	border-radius: 40px;
	text-align: center;
	padding: 1rem;
	height: 350px;
}
.service-cards:hover {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.service-cards h4 {
	text-align: center;
	color: #2890C9;
	font-weight: bold;
}
.service-cards-row {
	width: 80%;
	margin: 0 auto;
}
.vc_row.wpb_row.vc_row-fluid.vc_custom_1742936527621.vc_row-has-fill {
	background-repeat: no-repeat;
	text-align: center;
	background-size: cover !important;
}
.introtext {
	width: 80%;
	margin: 0 auto;
}
#seo-cta h2 {
	font-size: 3rem;
	font-weight: bold !important;
}
div#seo-cta {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center;
}
.popup-container iframe {
	min-height: 600px !important;
	height: 800px !important;
}
@media(max-width: 780px) {
	div#keyseo {
		background-repeat: no-repeat !important;
		background-size: cover !important;
	}
	body>main>section>div.vc_row.wpb_row.vc_row-fluid.vc_custom_1742937335266.vc_row-has-fill>div>div>div>div:nth-child(3) {
		width: auto;
		margin: auto;
	}
	.service-cards {
		height: auto;
	}
	.introtext {
		width: 100%;
		margin: 0 auto;
	}
	.service-cards-row {
		width: 100%;
		margin: 0 auto;
	}
	.wpb_text_column.wpb_content_element.digitaltext {
		width: 100%;
		margin: 0px auto;
	}
	.popup-container iframe {
		min-height: 600px !important;
		height: 800px !important;
	}
	.popup-container h2 {
		font-size: 22px;
		font-weight: 600 !important;
		margin-top: 0rem;
		margin-bottom: -1rem;
		position: relative;
	}
}
/* Showcase CSS 
-------------------------*/

/* Heading */

.single-showcase h1 {
	padding-bottom: 0;
	font-size: 3.5rem;
	letter-spacing: -2px;
}
/* Tags */

.showcase-tags {
	display: flex;
	align-content: center;
	justify-content: center;
	width: 100%;
	gap: 1rem;
}
.showcase-tags a {
	color: #212121;
	background: #f9f9f9;
	padding: 10px 14px;
	border-radius: 100pc;
	border: 1px solid rgba(0, 0, 0, .1);
	font-size: 13px;
	transition: all .3s ease;
}
.showcase-tags a:hover {
	color: white;
	background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
}
.phone-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	display: grid;
	width: 1000px;
	margin: 0 auto;
	max-width: 100%;
	gap: 2rem
}
.phone-grid .threedee:nth-child(2), .phone-grid .threedee:nth-child(5) {
	margin-top: -45px
}
.bg-block {
	background: #f9f9f9;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 12px;
	padding: 3rem;
}
/* Masonry Showcase */

.showcase-masonry {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	display: grid;
	gap: .5rem;
	width: 1280px;
	max-width: 100%;
	margin: 0 auto;
}
.showcase-masonry {
	display: grid;
	gap: 1rem !important;
}
.showcase-masonry img {
	margin-top: 16px !important;
}
.showcase-masonry>div:nth-child(1) {
	grid-column: span 4 / span 4;
}
.showcase-masonry>div:nth-child(2) {
	grid-column: span 5 / span 5;
}
.showcase-masonry>div:nth-child(3) {
	grid-column: span 3 / span 3;
}
.showcase-masonry>div:nth-child(1) img {
	max-height: 335px;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
	object-position: bottom;
}
.showcase-masonry>div:nth-child(3) img {
	min-height: 590px;
	object-fit: cover;
	border-radius: 12px;
}
.stat h3 {
	color: #2D93CA;
	font-weight: 700 !important;
	transition: all .3s ease;
}
.stat p {
	transition: all .3s ease;
}
.stat {
	background: #f9f9f9;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, .1);
	transition: all .3s ease;
}
.stat:hover {
	transform: translateY(-6px) !important;
	background: #2D93CA;
	opacity: 1;
	color: white;
}
.stat:hover h3 {
	color: white;
}
.stat:hover p {
	color: #f9f9f9;
}
.pill {
	font-weight: 600 !important;
	font-size: 14px;
	display: inline-block;
	padding: 12px 21px;
	border-radius: 100px;
	color: #ffffff;
	background: #212121;
	letter-spacing: .25px;
}
.three-grid .threedee {
	margin-top: 0 !important;
	;
}
div.vc_row-o-content-middle:nth-child(2)>div:nth-child(2) {
	background: transparent;
}
.flex {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: #212121;
	background: #f9f9f9;
	padding: 8px 18px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 100pc;
	transition: all .3s ease;
	font-weight: 900 !important;
}
.flex:hover {
	color: white;
	background: linear-gradient(80.72deg, #fac474 -3.04%, #f97266 103.82%);
}
/* Laptop Video */

.laptop-video {
	position: relative;
}
.laptop-video img {
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.laptop-video video {
	position: absolute;
	top: 16px;
	left: 10%;
	width: 80%;
	z-index: 1;
}
.single-showcase .eyebrow, .page-id-4781 .eyebrow {
	color: #212121;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.page-id-4781 .eyebrow {
	margin-bottom: -10px !important;
	display: block;
}
@media(max-width: 1000px) {
	.laptop-video video {
		width: 540px
	}
	.bg-block {
		background: #f9f9f9;
		border: 1px solid rgba(0, 0, 0, .1);
		border-radius: 12px;
		padding: 1rem;
		padding-bottom: 0;
		padding-top: 2rem;
		max-width: 100%;
		margin: 0 auto;
		margin-top: -44px;
	}
	.showcase-masonry>div:nth-child(1) {
		grid-column: span 6 / span 4;
	}
	.showcase-masonry>div:nth-child(2) {
		grid-column: span 6 / span 5;
	}
	.showcase-masonry>div:nth-child(3) {
		grid-column: span 12 / span 3;
		order: -1;
		display: none;
	}
	.showcase-masonry>div:nth-child(3) img {
		max-height: 50px !important;
		width: 100%;
		object-fit: cover;
		border-radius: 12px;
		object-position: bottom;
		height: 50px !important;
	}
	.showcase-masonry>div:nth-child(1) img:last-of-type {
		min-height: 50px !important;
		object-fit: cover;
		height: 200px;
		border-radius: 12px;
	}
	.showcase-masonry>div:nth-child(2) img:last-of-type {
		height: 200px;
		width: 100%;
		object-fit
	}
	.showcase-template-default {
		padding-top: 65px;
	}
	.showcase-template-default .eyebrow {
		font-size: 12px !important;
	}
	.pill {
		padding: 10px 14px;
		font-size: 14px !important;
	}
	.phone-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.phone-grid .threedee:nth-child(2), .phone-grid .threedee:nth-child(5) {
		margin-top: 0;
	}
}
@media(max-width: 700px) {
	.laptop-video video {
		width: 79%;
		top: 12px;
	}
	.showcase-masonry>div:nth-child(3) img {
		max-height: 50px !important;
		width: 100%;
		object-fit: cover;
		border-radius: 12px;
		object-position: bottom;
		height: 50px !important;
	}
	.showcase-masonry>div:nth-child(1) img:last-of-type {
		min-height: 50px !important;
		object-fit: cover;
		height: 150px;
		border-radius: 12px;
	}
	.showcase-masonry>div:nth-child(2) img:last-of-type {
		height: 128px;
		width: 100%;
		border-radius: 16px;
	}
	.single-showcase h1 {
		padding-bottom: 0;
		font-size: 2.5rem;
		letter-spacing: -2px;
		margin-top: -13px;
		margin-bottom: -18px !important;
	}
}
/* Showcase */

.locus-showcase {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3rem;
}
.locus-showcase img {
	height: 400px;
	object-fit: cover;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 16px;
	transition: all .3s ease;
}
.locus-showcase .showcase-tags {
	position: absolute;
	align-items: end;
	background: white;
	padding: 14px;
	display: inline-flex;
	width: auto;
	right: 0;
	top: -32px;
	border-radius: 20px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	gap: .75rem;
	font-weight: 400;
	transition: top .3s ease;
	opacity: 0;
	pointer-events: none;
	z-index: 9;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
}
body:not(.showcase-template-default) .single-showcase {
	display: inline-grid;
	position: relative;
	margin-bottom: 32px;
}
.locus-showcase .showcase-tag {
	background: #2D93CA;
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 100px;
	color: white;
}
.locus-showcase .single-showcase:hover .showcase-tags {
	top: 0;
	opacity: 1;
}
.locus-showcase .single-showcase:hover img {
	filter: brightness(65%);
}
.locus-showcase h4 {
	font-size: 14px;
	margin-top: 16px;
}
.locus-showcase h3 {
	font-size: 32px;
	letter-spacing: -.5px;
	margin-top: -14px;
	padding-top: 0;
}
.locus-showcase h3 a {
	color: #212121;
}
.locus-showcase .single-showcase a {
	border-radius: 16px;
	display: block;
	overflow: hidden;
	/* keeps the zoomed image inside its box */
}
.locus-showcase .single-showcase a img {
	transition: transform 2s ease;
	display: block;
	max-height: 350px;
	object-position: bottom;
}
.locus-showcase .single-showcase a:hover img {
	transform: scale(1.08);
}
@media(max-width: 992px) {
	.locus-showcase {
		display: block;
	}
}
/* Hide native cursor on hover */

.locus-showcase .single-showcase, .locus-showcase .single-showcase * {
	cursor: none !important;
}
/* Custom cursor */

.custom-cursor {
	width: 64px;
	/* desired size */
	height: 64px;
	background: url('https://locuswebmarketing.com/storage/2025/09/arrow.png') no-repeat center center;
	background-size: contain;
	position: fixed;
	pointer-events: none;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%) scale(0);
	/* start hidden */
	z-index: 9999;
}
.showcase-hero-devices {
	margin-top: -500px;
}
@keyframes fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fade-in {
	opacity: 0;
	animation: fade-in .3s ease-out forwards;
	animation-delay: .2s;
}
@media(max-width: 780px) {
	.showcase-hero-devices {
		margin-top: -500px;
		transform: scale(1.4) !important;
		margin-left: 4%;
	}
	.page-id-4781 .eyebrow {
		margin-top: 80px;
		font-size: 12px !important;
	}
}
.tag main {
	padding: 5rem 0;
	padding-top: 2rem
}
.tag .tag-container {
	width: 1200px;
	margin: 0 auto;
	max-width: 100%;
	padding: 1rem;
}
.tag h1 {
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
}
@media(max-width: 800px) {
	.three-grid {
		display: block;
	}
}
.single__hero {
	height: 475px;
	max-height: none !important;
}
.single__hero h1 {
	font-size: 2.75rem;
	margin-bottom: 32px !important;
	line-height: 1 !important;
}
.single__content {
	width: 800px !important;
	max-width: 100%;
	padding-top: 1rem !important;
}
.single__content h1 {
	font-size: 32px;
	line-height: 1.2 !important;
	margin-bottom: 22px !important;
}
.single__content h2 {
	font-size: 32px !important;
	line-height: 1.2 !important;
}
.single__content ul {
	margin-top: 1.5rem !important;
	margin-bottom: 2rem !important;
	font-size: 18px
}
.single__content ol li {
	margin-bottom: 22px;
	line-height: 1.4
}
.single__content ol li strong {
	display: block;
}
.single__content img {
	min-width: 100%;
	object-fit: cover;
	border-radius: 16px;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.single__content {
	margin-bottom: 7rem !important;
}
.single__hero-left {
	display: grid;
}
@media(max-width: 992px) {
	.cats {
		display: block !important;
	}
	.single__hero h1 {
		font-size: 2.25rem;
	}
	.single__content h2 {
		width: 100%;
		max-width: none;
		font-size: 1.65rem !important;
		line-height: 1.1 !important;
	}
	.single__content ul {
		padding-left: 0;
	}
}
.pum-container.pum-responsive.pum-responsive-small {
	max-height: 90vh;
	overflow: scroll;
	top: 20px;
}
@media (max-width: 780px) {
	.showcase-hero-devices {
		margin-top: -90px;
		transform: scale(1.4) !important;
		margin-left: 4%;
	}
	.showcase-hero-background {
		margin-top: -20px;
	}
}
.showcase-media {
	position: relative;
	display: block;
	overflow: hidden;
}
.showcase-media img {
	display: block;
	width: 100%;
	height: auto;
}
.showcase-media .showcase-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.showcase-media:hover .showcase-video {
	opacity: 1;
}
.showcase-hero-devices {
	margin-top: -500px;
	z-index: 9999;
	position: relative;
}