:root {
  --g-bg: #F7F5F2;
  --g-bg-alt: #f2f2f2;
  --g-surface: #000000;
  --g-text: #1A1A1A;
  --g-text-muted: #000000;
  --g-accent: #f5c518;
  --g-accent-hover: #be980f;
  --g-accent-light: rgba(184,112,45,0.08);
  --g-border: rgba(26,26,26,0.08);
  --g-overlay: rgba(10,8,6,0.88);
  --g-radius: 10px;
  --g-radius-lg: 16px;
  --g-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04);
  --g-shadow-hover: 0 4px 12px rgba(0,0,0,0.06), 0 12px 28px rgba(0,0,0,0.08);
  --g-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-section {
  margin: 0 auto;
  padding: 48px 88px 80px;
}

.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--g-surface);
  border-radius: 100px;
  box-shadow: var(--g-shadow);
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  animation: gFadeUp 0.8s ease 0.4s both;
}

.g-filter-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--g-transition);
  white-space: nowrap;
}

.g-filter-btn:hover {
  color: var(--g-text);
  background: var(--g-accent-light);
}

.g-filter-btn.active {
  background: var(--g-accent);
  color: #000000;
  box-shadow: 0 2px 8px rgba(184,112,45,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--g-surface);
  box-shadow: var(--g-shadow);
  transition: all var(--g-transition);
  opacity: 0;
  transform: translateY(20px);
  aspect-ratio: 4/3;
}

.gallery-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateY(-4px);
}

.gallery-card.visible:hover {
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.0) 55%);
  opacity: 0;
  transition: opacity var(--g-transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.card-overlay h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.card-overlay span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--g-transition);
}

.gallery-card:hover .card-icon {
  opacity: 1;
  transform: scale(1);
}

.card-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.gallery-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 899px) {
  .gallery-card.featured {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

.gallery-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
  animation: gFadeUp 0.8s ease 0.5s both;
}

.gallery-counter p {
  font-size: 14px;
  color: var(--g-text-muted);
}

.gallery-counter strong {
  color: var(--g-text);
  font-weight: 600;
}

.g-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--g-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(16px);
}

.g-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.g-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.g-lightbox.open .g-lightbox-inner {
  transform: scale(1);
}

.g-lightbox-inner img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: var(--g-radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  object-fit: contain;
}

.g-lightbox-caption {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.g-lightbox-caption h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

.g-lightbox-caption span {
  font-size: 13px;
  opacity: 0.6;
}

.g-lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--g-transition);
  z-index: 10;
}

.g-lb-btn:hover {
  background: rgba(255,255,255,0.16);
}

.g-lb-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.g-lb-prev {
  left: -72px;
}

.g-lb-next {
  right: -72px;
}

.g-lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--g-transition);
  z-index: 10;
}

.g-lb-close:hover {
  background: rgba(255,255,255,0.14);
}

.g-lb-close svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.g-lb-counter {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  z-index: 10;
}

@media (max-width: 900px) {
  .g-lb-prev {
    left: 12px;
  }

  .g-lb-next {
    right: 12px;
  }

  .g-lb-btn {
    width: 44px;
    height: 44px;
  }
}

.gallery-cta {
  text-align: center;
  padding: 72px 24px 88px;
  background: var(--g-bg-alt);
  position: relative;
}

.gallery-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--g-accent);
  border-radius: 2px;
}

.gallery-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.gallery-cta p {
  color: var(--g-text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
  font-weight: 300;
  font-size: 1.05rem;
}

.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--g-accent);
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--g-transition);
  box-shadow: 0 4px 16px rgba(184,112,45,0.3);
}

.gallery-cta-btn:hover {
  background: var(--g-accent-hover);
  box-shadow: 0 6px 24px rgba(184,112,45,0.4);
  transform: translateY(-2px);
  color: #fff;
}

.gallery-cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.gallery-card.hiding {
  opacity: 0 !important;
  transform: scale(0.95) !important;
  pointer-events: none;
}

@keyframes gFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 72px 20px 60px;
  }

  .gallery-section {
    padding: 40px 16px 60px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-filter-bar {
    gap: 4px;
    padding: 4px;
  }

  .g-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .card-overlay {
    opacity: 1;
  }

  .card-icon {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 601px) and (max-width: 899px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

html {
  scroll-behavior: auto;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #f5c400;
  border-radius: 4px;
}

#sdv3-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #c49a00, #f5c400, #ffe566, #f5c400, #c49a00);
  background-size: 200% 100%;
  animation: sdv4Shimmer 2.5s linear infinite;
  box-shadow: 0 0 12px rgba(245,196,0,0.8), 0 0 28px rgba(245,196,0,0.3);
  z-index: 99999;
  pointer-events: none;
  will-change: width;
}

@keyframes sdv4Shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0% 0;
  }
}

.hero-outer,
.section-1, #why-choose,
.section-2, #services-section,
.section-3, #service-area,
#s1, #s2, #s3 {
  position: relative;
}

.sdv3-bg {
  position: absolute;
  inset: -25% 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.sdv3-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sdv3-bg.sdv3-why-choose::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.85) 100%);
}

.sdv3-bg.sdv3-services::after {
  background: linear-gradient(180deg, rgb(134 129 129 / 0%)    0%, rgb(255 255 255 / 0%)    100%);
}

.sdv3-bg.sdv3-service-area::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.83) 100%);
}

.sdv3-bg.sdv3-reviews::after {
  background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 100%);
}

.sdv3-bg.sdv3-before-after::after {
  background: linear-gradient(180deg, rgb(10 10 10 / 0%)    0%, rgb(10 10 10 / 0%)    100%);
}

.sdv3-bg.sdv3-coupons::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.84) 100%);
}

.sdv3-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  filter: blur(55px);
}

.sdv3-glow-dark {
  background: radial-gradient(circle, rgba(0,0,0,0.10) 0%, transparent 65%);
}

.sdv3-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
  animation: sdv4Particle linear infinite;
  opacity: 0;
}

@keyframes sdv4Particle {
  0% {
    opacity: 0;
    transform: translateY(0)      scale(0.7);
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px)  scale(1.1);
  }
}

.hero-right-col {
  overflow: hidden;
  position: relative;
}

.hero-right-col .slide-image {
  will-change: transform;
}

.hero-content-area, .hero-trust-bar,
.top-section, .stats-bar, .feature-grid,
.svc-header, .svc-cards-wrap,
.sa-left, .sa-right, .sa-chips,
.s2-hdr, .ba-body,
#s1 .row, #s3 .row,
.container-fluid, .container-xl, .container-lg {
  position: relative;
  z-index: 2;
}

.sdv3-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.sdv3-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity   0.90s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.90s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.sdv3-right {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity   0.90s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.90s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.sdv3-scale {
  opacity: 0;
  transform: scale(0.93) translateY(18px);
  transition: opacity   0.80s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.80s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.sdv3-on.sdv3-up {
  opacity: 1;
  transform: translateY(0);
}

.sdv3-on.sdv3-left {
  opacity: 1;
  transform: translateX(0);
}

.sdv3-on.sdv3-right {
  opacity: 1;
  transform: translateX(0);
}

.sdv3-on.sdv3-scale {
  opacity: 1;
  transform: scale(1) translateY(0);
}

#cpnMinis .cpn-mini {
  transition: opacity   0.55s ease,
    transform 0.55s cubic-bezier(0.16,1,0.3,1),
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.b-footer .b-col-wrap {
  position: relative;
  z-index: 2;
}

.b-cta {
  position: relative;
  z-index: 2;
}

.sdv3-sep {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(245,196,0,0.22) 25%,
    rgba(245,196,0,0.22) 75%,
    transparent);
  opacity: 0;
  transform: scaleX(0.15);
  transition: opacity 1.3s ease, transform 1.5s cubic-bezier(0.16,1,0.3,1);
}

.sdv3-on.sdv3-sep,
.sdv3-sep.sdv3-on {
  opacity: 1;
  transform: scaleX(1);
}

.slide-content.active .hero-eyebrow {
  animation: sdv4HeroRise 0.95s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}

.slide-content.active .hero-headline {
  animation: sdv4HeroRise 1.05s cubic-bezier(0.16,1,0.3,1) 0.38s both;
}

.slide-content.active .hero-bullets {
  animation: sdv4HeroRise 1.00s cubic-bezier(0.16,1,0.3,1) 0.52s both;
}

.slide-content.active .hero-ctas {
  animation: sdv4HeroRise 1.00s cubic-bezier(0.16,1,0.3,1) 0.64s both;
}

.hero-trust-bar {
  animation: sdv4HeroRise 0.90s cubic-bezier(0.16,1,0.3,1) 0.80s both;
}

.hero-right-col .slide-image.active img {
  animation: sdv4ImageIn 1.30s cubic-bezier(0.16,1,0.3,1) 0.10s both;
}

@keyframes sdv4HeroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sdv4ImageIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

header.nav-scrolled, nav.nav-scrolled,
.site-header.nav-scrolled, #masthead.nav-scrolled {
  box-shadow: 0 2px 22px rgba(0,0,0,0.16);
  transition: box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .sdv3-up, .sdv3-left, .sdv3-right, .sdv3-scale,
  .b-footer .b-col-wrap, .b-cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .sdv3-bg, .sdv3-glow, .sdv3-particle {
    display: none !important;
  }

  html {
    scroll-behavior: smooth;
  }
}

html {
  --size: 14px !important;
  position: inherit;
}

.site {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0em 0em 2em #e0e5ff;
}

.show-for-small-only {
  display: none !important;
}

a {
  -webkit-transition: color .4s ease 0s;
  -moz-transition: color .4s ease 0s;
  -o-transition: color .4s ease 0s;
  transition: color .4s ease 0s;
}

.hide {
  display: none;
}

.modal-dialog {
  max-width: 660px;
  margin: 12.75rem auto !important;
  z-index: 99999;
}

.modal-backdrop {
  z-index: 99991 !important;
}

.schema a {
  text-decoration: none;
}

body .btn-primary, body .btn-secondary {
  background-color: #65ee62;
  border: 0;
  text-transform: uppercase;
  padding: 0.72em 1.6em;
  letter-spacing: .09em;
  margin: auto;
  display: block;
  position: relative;
  color: black;
  font-weight: 700;
  border-radius: 0em;
  font-family: var(--oswald);
}

.btn-primary.content-btn {
  max-width: 500px;
  margin-left: 0;
}

body .btn-secondary {
  background-color: #3f63c9;
  color: white !important;
  font-weight: 900;
}

body .btn-secondary:hover {
  background-color: #282828 !important;
}

.post-thumbnail img {
  position: relative;
  padding: 0 !important;
  margin: auto;
  display: block;
}

.post-thumbnail {
  overflow: hidden;
  margin-top: 1em;
}

body .button:focus, body .button:hover {
  background-color: #ddaf0c;
  color: #000000;
}

.single-blog img {
  padding: 5%;
}

.single-blog .entry-title {
  font-size: 2em;
  color: black;
}

.single-blog .entry-meta {
  position: relative;
  padding: 2%;
  background: #f4f4f4;
  border-left: .5em solid #f43b3b;
}

.single-blog .nav-links a {
  display: block;
  background: #f43b3b;
  color: white;
  transition: all .3s ease-in-out;
  padding: 2% 5% !important;
  margin-bottom: 7%;
}

.single-blog .nav-links a:hover {
  background: black !important;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  margin-bottom: 0;
  display: block;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ededd !important;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #ededd !important;
}

@font-face {
  font-family: "Untitled";
  src: url("/wp-content/themes/plumberseo-bootstrap/fonts/Untitled.woff2") format("woff2"),
        url("/wp-content/themes/plumberseo-bootstrap/fonts/Untitled.ttf") format("truetype"),
        url("/wp-content/themes/plumberseo-bootstrap/fonts/Untitled.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-palette-values --palette0 {
  font-family: "Untitled";
  base-palette: 0;
}

.icon {
  font-family: "Untitled" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.palette0 {
  font-palette: --palette0;
  color: currentColor;
}

@font-face {
  font-family: "icomoon";
  src: url("/wp-content/themes/plumberseo-bootstrap/fonts/icomoon.eot?cx701b#iefix") format("embedded-opentype"),
    url("/wp-content/themes/plumberseo-bootstrap/fonts/icomoon.woff2?cx701b") format("woff2"),
    url("/wp-content/themes/plumberseo-bootstrap/fonts/icomoon.ttf?cx701b") format("truetype"),
    url("/wp-content/themes/plumberseo-bootstrap/fonts/icomoon.woff?cx701b") format("woff"),
    url("/wp-content/themes/plumberseo-bootstrap/fonts/icomoon.svg?cx701b#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-water-leaks-icon:before {
  content: "";
}

.icon-money-icon-secop:before {
  content: "";
}

.icon-building-icon:before {
  content: "";
}

.icon-calendar-spotcon:before {
  content: "";
}

.icon-price-tag-spotcon:before {
  content: "";
}

.icon-watercondcon:before {
  content: "";
}

.icon-leak-detectcon:before {
  content: "";
}

.icon-background-check-crcon:before {
  content: "";
}

.icon-tankless-water-heater-cr-con:before {
  content: "";
}

.icon-water-heater-cr-con:before {
  content: "";
}

.icon-wac-er-icon:before {
  content: "";
}

.icon-thumbs-up-sm:before {
  content: "";
}

.icon-toolcon-sm:before {
  content: "";
}

.icon-service-area-patriot-icon:before {
  content: "";
}

.icon-drain-clean-patriot-icon:before {
  content: "";
}

.icon-sewer-patriot-icon:before {
  content: "";
}

.icon-fast-truck-con:before {
  content: "";
}

.icon-calculator-icon:before {
  content: "";
}

.icon-coin-hands-icon:before {
  content: "";
}

.icon-gear-aplus-icon:before {
  content: "";
}

.icon-aplus-bbb-con:before {
  content: "";
}

.icon-aplus-ontime-con:before {
  content: "";
}

.icon-aplus-fam-con:before {
  content: "";
}

.icon-ac-repair-con:before {
  content: "";
}

.icon-toilet-con:before {
  content: "";
}

.icon-plumbcon:before {
  content: "";
}

.icon-newtech-icon:before {
  content: "";
}

.icon-ontime-icon:before {
  content: "";
}

.icon-clean-masters:before {
  content: "";
}

.icon-trophy-masters:before {
  content: "";
}

.icon-pricetag-masters:before {
  content: "";
}

.icon-finance-masters:before {
  content: "";
}

.icon-customer-education:before {
  content: "";
}

.icon-home-comfort:before {
  content: "";
}

.icon-live-answer:before {
  content: "";
}

.icon-mid-finance:before {
  content: "";
}

.icon-mid-shield:before {
  content: "";
}

.icon-mid-thumbs-up:before {
  content: "";
}

.icon-schedule-icon-spring:before {
  content: "";
}

.icon-emergency-icon-spring:before {
  content: "";
}

.icon-tools-icon-spring:before {
  content: "";
}

.icon-family-icon-spring:before {
  content: "";
}

.icon-live-answer-icon-spring:before {
  content: "";
}

.icon-truck-icon-spring:before {
  content: "";
}

.icon-calendar-icon-spring:before {
  content: "";
}

.icon-finance-icon-spring:before {
  content: "";
}

.icon-stars-icon-spring:before {
  content: "";
}

.icon-trustedtechs-icon-spring:before {
  content: "";
}

.icon-pricing-icon-spring:before {
  content: "";
}

.icon-leftcoast-repaircon:before {
  content: "";
}

.icon-circ-yelp-icon:before {
  content: "";
}

.icon-fb-circle:before {
  content: "";
}

.icon-instagram-circle:before {
  content: "";
}

.icon-linkedin-cricle:before {
  content: "";
}

.icon-morrow-bbb:before {
  content: "";
}

.icon-new-x-circle:before {
  content: "";
}

.icon-yt-circle:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-heart:before {
  content: "";
}

.icon-star:before {
  content: "";
}

.icon-star-o:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-remove:before {
  content: "";
}

.icon-times:before {
  content: "";
}

.icon-search-plus:before {
  content: "";
}

.icon-search-minus:before {
  content: "";
}

.icon-cog:before {
  content: "";
}

.icon-gear:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-clock-o:before {
  content: "";
}

.icon-play-circle-o:before {
  content: "";
}

.icon-print:before {
  content: "";
}

.icon-image:before {
  content: "";
}

.icon-photo:before {
  content: "";
}

.icon-picture-o:before {
  content: "";
}

.icon-map-marker:before {
  content: "";
}

.icon-chevron-left:before {
  content: "";
}

.icon-chevron-right:before {
  content: "";
}

.icon-check-circle:before {
  content: "";
}

.icon-check-circle-o:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-cogs:before {
  content: "";
}

.icon-gears:before {
  content: "";
}

.icon-comments:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-facebook-f:before {
  content: "";
}

.icon-wrench:before {
  content: "";
}

.icon-group:before {
  content: "";
}

.icon-users:before {
  content: "";
}

.icon-bars:before {
  content: "";
}

.icon-navicon:before {
  content: "";
}

.icon-reorder:before {
  content: "";
}

.icon-google-plus:before {
  content: "";
}

.icon-money:before {
  content: "";
}

.icon-caret-down:before {
  content: "";
}

.icon-caret-up:before {
  content: "";
}

.icon-caret-left:before {
  content: "";
}

.icon-caret-right:before {
  content: "";
}

.icon-envelope:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-angle-double-left:before {
  content: "";
}

.icon-angle-double-right:before {
  content: "";
}

.icon-angle-double-up:before {
  content: "";
}

.icon-angle-double-down:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

.icon-angle-right:before {
  content: "";
}

.icon-angle-up:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-mobile:before {
  content: "";
}

.icon-mobile-phone:before {
  content: "";
}

.icon-ticket:before {
  content: "";
}

.icon-level-down:before {
  content: "";
}

.icon-thumbs-up:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-yelp:before {
  content: "";
}

.icon-newspaper-o:before {
  content: "";
}

.icon-calculator:before {
  content: "";
}

.icon-calendar-check-o:before {
  content: "";
}

.icon-user-circle:before {
  content: "";
}

.icon-user-circle-o:before {
  content: "";
}

.wrap1 {
  z-index: 2;
  position: relative;
  padding: 0 2%;
}

.row {
  max-width: 100% !important;
  margin: auto;
}

.clear {
  clear: both;
}

ul {
  margin-left: 0em !important;
}

.desk-nav {
  display: none;
  width: 100%;
  max-width: none;
  padding: 0.5% 0% 1% 0%;
}


.desk-nav .sdv3-on.sdv3-up {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    left: -110px;
}

.logo-block {
  position: relative;
  z-index: 99;
  background-color: #fff;
}

.desk-nav .row>* , .mobile-nav .row>* {
  padding: 0;
}

.mobile-nav {
  width: 100%;
  max-width: none;
  padding: 0% 0 0% 0;
  z-index: 3;
  position: relative;
  background: white;
}

.main-bar {
  padding: 0% 0%;
}

.logo-image {
  position: relative;
}

.logo-image img {
  position: relative;
  width: 18em;
  display: block;
  margin: auto;
  transition: all .3s ease-in-out;
  left: -0.8em;
  z-index: -2;
}

.logo-image a {
  position: relative;
  display: block;
  transform: scale(1);
}

.smallbar .logo-image img {
  width: 11em;
}

.contact-info {
  font-size: 1.7em;
  font-weight: 900;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  line-height: 1;
  letter-spacing: .04em;
  text-align: -webkit-center;
  margin-top: 0%;
  padding-right: 1%;
}

.contact-info strong {
  position: relative;
  font-size: 0.9em;
  font-weight: 400;
  color: #0a05e4;
  letter-spacing: .04em;
  top: .1em;
  display: block;
}

.contact-info span {
  position: relative;
  top: 0.1em;
}

.contact-info a:hover {
  color: #137bbe;
}

.contact-info a {
  font-size: 1.4em;
  display: block;
  background-color: #163776;
  width: 1.9em;
  border-radius: 23em;
  height: 1.9em;
  line-height: 2;
  color: #ffffff;
  margin: auto;
  transition: all .3s ease-in-out;
  text-align: center;
  text-decoration: none;
  outline: .1em solid #65ee61;
  outline-offset: -0.2em;
}

.mobile-nav .btn-primary {
  color: #1f1f1f;
  border: 0;
  border-radius: 0;
  padding: 0.8em 1.6em;
  background: #edf5fc;
  margin-left: 0;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  font-size: 1.3em;
}

.mobile-nav .btn-primary span {
  display: block;
}

.shift-menu {
  background: radial-gradient(circle, rgba(42,42,42,1) 0%, rgba(42,42,42,1) 62%, rgba(22,22,22,1) 100%);
  padding: 10.2em 0 0 0;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2a2a",endColorstr="#161616",GradientType=1);
}

.shift-item {
  position: relative;
}

.offcanvas-end {
  z-index: 99999;
  width: 25em;
}

.shift-item a {
  display: block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .85em 0em .85em 1em;
  background: #ff000000;
  color: white;
  margin: 0em 0;
  border-bottom: 1px solid #ffffff1a;
  border-left: 0em solid #003046;
  transition: all .3s ease-in-out;
}

.shift-item .btn-secondary {
  display: none;
  position: absolute;
  right: 0em;
  top: 0.3em;
  background: #ff000000;
  border: 0;
  font-size: 1.3em;
  padding: 0.2em 0.7em;
}

.shift-item a:hover {
  color: #ffffff;
  background-color: #163776;
}

.dropdown.shift-item .btn-secondary {
  display: block;
}

.shift-item a.sub-item {
  background: #0000005c;
}

.shift-item a.sub-item:hover {
  background-color: #163776;
}

body:not(.home) #masthead {
  background: transparent !important;
  box-shadow: none !important;
  transition: background .3s ease, color .3s ease;
}

body:not(.home) #masthead .top-bar a,
body:not(.home) #masthead .main-nav a,
body:not(.home) #masthead .head-contact-row a:not([href^="tel:"]):not(.btn-phone):not(.btn-estimate),
body:not(.home) #masthead .head-contact-row .icon-calendar:not(.btn-phone *):not(.btn-estimate *),
body:not(.home) #masthead .head-contact-row .bi:not(.btn-phone *):not(.btn-estimate *) {
  color: #ffffff !important;
  transition: color .3s ease;
}

body:not(.home) #masthead .menu>li a:hover {
  background-color: #f4d038 !important;
  color: #000000 !important;
}

.menu>li a[aria-current=page] {
  background-color: #f4d42b !important;
  color: #000 !important;
}

body:not(.home) #masthead .menu>li a[aria-current=page] {
  background-color: #f4d42b !important;
  color: #000000 !important;
}

body:not(.home) #masthead .sub-menu a,
body:not(.home) #masthead .dropdown-menu a {
  color: inherit !important;
  transition: none !important;
}

body:not(.home) #masthead.smallbar {
  background: #ffffff !important;
  box-shadow: none !important;
}

body:not(.home) #masthead.smallbar .top-bar a,
body:not(.home) #masthead.smallbar .main-nav a,
body:not(.home) #masthead.smallbar .head-contact-row a:not([href^="tel:"]):not(.btn-phone):not(.btn-estimate),
body:not(.home) #masthead.smallbar .head-contact-row .icon-calendar:not(.btn-phone *):not(.btn-estimate *),
body:not(.home) #masthead.smallbar .head-contact-row .bi:not(.btn-phone *):not(.btn-estimate *) {
  color: #000 !important;
}

.modal {
  z-index: 9999999999999999999999999999999999999999999;
}

.modal-header {
  padding: 0;
  border: 0;
}

.section-protecte .modal-header h5 {
  color: white !important;
}

.section-protecte .with_frm_style .frm_primary_label, .section-protecte .with_frm_style .frm_checkbox label {
  color: white;
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
  width: 100% !important;
  display: block;
  background-color: #000000;
  color: #ffffff;
}

.formbg .frm_style_formidable-style.with_frm_style .frm_submit button:hover {
    background: #fff;
    border-color: var(--submit-hover-border-color);
    color: var(--submit-hover-color);
}

.pop-label {
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.6em;
  letter-spacing: .05em;
}

.modal-content {
  background-color: #1f2c5f;
  box-shadow: 0em 0em 1em #0000004f;
}

.modal-content iframe {
  height: 46em !important;
}

.modal-header .btn-close {
  position: relative;
  left: -.9em;
}

.modal-title {
  display: block;
  text-align: center !important;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 1.3em;
  padding-top: 1em;
  margin-bottom: -0.5em;
}

header#masthead {
  margin-bottom: 0;
  background-color: #b3dce300 !important;
  padding: 0rem 0rem !important;
  z-index: 9999;
  width: 100%;
  transition: all .3s ease-in-out;
  top: 0em;
  display: block;
  position: fixed;
  max-width: 100%;
  box-shadow: none !important;
}

header#masthead.smallbar {
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 10%) !important;
  background-color: #ffffff !important;
}

.nav-accent {
  position: relative;
  padding: 1em 0;
}

.nav-accent:before, .nav-accent:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #1f2c5f;
  z-index: -1;
  clip-path: polygon(2.5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.nav-accent:after {
  background: #044ba1;
  z-index: -2;
  right: 0;
  clip-path: polygon(3% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 101.2%;
}

.contact-info-desk a {
  color: #030303;
  text-align: center;
  font-weight: 900;
  font-size: 2em;
  line-height: 1.1;
  margin-bottom: 0;
}

.contact-info-desk a em {
  display: block;
  font-style: normal;
  font-size: .45em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--oswald);
}

.contact-info-desk a span {
  color: #65ee62;
}

.nav-accent .btn {
  transform: skew(-10deg);
}

.top-bar {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: .1em;
  transition: all .3s ease-in-out;
  color: #0099bb;
  margin: auto;
  padding-right: 10em;
}

.top-bar #menu-top-menu {
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.smallbar .top-bar {
  font-size: 1em;
}

.top-bar input::-webkit-input-placeholder,.top-bar textarea::-webkit-input-placeholder {
  color: #fff !important;
}

.top-bar input:-moz-placeholder,.top-bar textarea:-moz-placeholder {
  color: #fff !important;
}

.top-bar .btn-primary {
  display: block;
  letter-spacing: .08em;
  font-size: .9em;
  color: black;
  border: 0;
  border-radius: 0;
}

.main-nav {
  position: relative;
  padding-top: 1%;
  border-top: 1px solid #0000001f;
  margin-top: 1em;
}

.search-bar input {
  background-color: #ffffff00;
  border: 0;
  color: white;
  border-bottom: 1px solid white;
}

.smallbar .desk-nav .btn-primary {
  font-size: 0.9em;
}

.desk-nav .top-bar .btn-primary {
  color: white;
  font-size: .8em;
  width: 100%;
  margin-left: auto;
  transition: all .3s ease-in-out;
  padding-left: 2em;
}

.menu {
  position: relative;
  list-style: none;
  -webkit-justify-content: left;
  -ms-flex-pack: center;
  justify-content: left;
  margin: 0;
  list-style-type: none;
  width: 100%;
  display: flex;
  -webkit-align-items: left;
  -ms-flex-align: center;
  align-items: left;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0;
}

#menu-top-nav {
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.top-bar .menu>li a {
  font-size: 0.7em;
  padding: 0.2em 0.7em;
  color: black !important;
}

.top-bar .menu>li a svg {
  width: 2.1em;
}

.top-bar .menu>li a svg path {
  fill: #044ba1;
}

.top-bar .menu>li a span {
  color: #044ba1;
}

.menu>li a:hover span {
  color: white;
}

.menu>li.sched-link a {
  color: white !important;
  background: #e78b3d;
  border-radius: 0em;
  font-family: "Exo 2", sans-serif;
}

.menu>li a {
  padding: 0.3em 0.9em 0.3em 0.9em;
  text-decoration: none;
  color: black !important;
  font-size: 1.2em;
  display: block;
  transition: all .3s ease-in-out;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: var(--oswald);
  border-radius: 7px;
}

.menu>li.menu-item-has-children> a:before {
  content: "";
  font-family: "icomoon" !important;
  color: #000000;
  display: block;
  position: absolute;
  font-size: 0.8em;
  top: 22%;
  right: 0.2%;
}

.menu>li.menu-item-has-children> a:hover:before {
  color: #ffffff;
}

.sub-menu li a {
  color: #030303 !important;
}

.top-bar .menu>li:nth-child(3) a {
  border: 0;
}

.menu>li a:hover {
  background-color: #f4d038 !important;
  color: #000000 !important;
}

.mainnav {
  text-align: right;
  padding: 0.7% 0;
  position: relative;
}

.nav-border {
  padding-left: 0em !important;
  padding-right: 0em !important;
}

.mainnav .menu {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mainnav .menu .active>a {
  color: #ffffff;
  background: #f78d1f;
}

.mainnav .menu .active>a:before {
  color: black !important;
}

.mainnav .menu .current-menu-item.active>a {
  color: #ffffff;
  background: #faa61a;
}

.mainnav .menu .sub-menu .current-menu-item.active>a {
  color: #fefefe !important;
  background: #f78d1f !important;
}

.mainnav .menu>li>a {
  display: block;
  padding: 0.7rem 0.6rem;
  line-height: 1;
  font-weight: 400;
  font-size: 0.78em;
  color: black;
  letter-spacing: .02em;
}

.mainnav .menu>li>a:hover {
  color: #ffffff;
  background: #f78d1f;
}

.mainnav .menu>li>a:hover:before {
  color: white;
}

.menu-item-has-children {
  position: relative;
  transition: all .3s ease-in-out;
}

.menu>li .sub-menu  a {
  text-transform: none;
  letter-spacing: inherit;
  padding: 0.6em 1em;
  text-align: left;
}

.mainnav .menu>li.menu-item-has-children >a:before {
  content: "";
  font-family: "icomoon" !important;
  color: #ffffff;
  display: block;
  position: absolute;
  font-size: 0.8em;
  top: 37%;
  right: 0.5%;
}

.main-nav .menu-item-has-children > .sub-menu {
  top: 100%;
  right: auto;
  left: 0;
}

.main-nav .menu-item-has-children .sub-menu {
  opacity: 0;
  transition: all .3s ease-in-out;
  position: absolute;
  background: #ebebec;
  list-style: none;
  margin-left: 0.0rem;
  width: 17em;
  height: 0;
  display: none;
  z-index: 99;
}

.main-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  height: auto;
  top: 100%;
  left: 0;
  display: block;
  animation: fadeIn .2s;
  font-size: .88em;
  text-align: left;
  padding-left: 0;
}

.main-nav .last-column.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  height: auto;
  top: 100%;
  right: 0%;
  left: auto !important;
  display: block;
  animation: fadeIn .2s;
  font-size: .88em;
  text-align: left;
}

.main-nav .slim.menu-item-has-children .sub-menu {
  color: #9ad25d;
  background: #33204d;
  width: 165%;
  text-align: left;
  padding-left: 0%;
}

.main-nav .slim.menu-item-has-children:hover .sub-menu {
  left: 0%;
}

.main-nav .menu-item-has-children .sub-menu>li {
  padding: 0%;
}

.sub-menu a {
  padding: 5% 4% 5% 4%;
  display: block;
  color: #1d1d1d;
  font-size: .9em;
  transition: all .3s ease-in-out;
  border-bottom: 1px solid #00000014;
}

.sub-menu a:hover {
  color: #ffffff;
  background: #e62318;
  padding: 5% 4% 5% 7%;
}

.main-nav .double-column.menu-item-has-children .sub-menu {
  opacity: 0;
  transition: all .3s ease-in-out;
  position: absolute;
  background: #e1e1e1;
  list-style: none;
  margin-left: 0.0rem;
  width: 36em;
  height: 0;
  display: none;
  text-align: left;
  z-index: 99;
}

.main-nav .double-column.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  height: auto;
  top: 100%;
  left: 0%;
  display: block;
  animation: fadeIn .2s;
}

.main-nav .double-column.menu-item-has-children .sub-menu>li {
  width: 50%;
  float: left;
  padding: 0%;
}

.main-nav .double-column.menu-item-has-children .sub-menu>li.full-sub {
  width: 100%;
  float: left;
  padding: 0%;
}

.double-column .sub-menu .full-sub a {
  padding: 0.3em 0.6em 0.7em 0.6em;
  border-right: 1px solid #00000014;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.double-column .sub-menu .full-sub a span {
  font-size: 1.8em;
  position: relative;
  top: 0.2em;
}

.last-cool {
  float: right !important;
}

.double-column .sub-menu a {
  padding: 0.9em 0.6em 0.9em 0.7em;
  border-right: 1px solid #00000014;
}

.main-nav .double-column-l.menu-item-has-children .sub-menu {
  opacity: 0;
  transition: all .3s ease-in-out;
  position: absolute;
  background: #006ee3;
  list-style: none;
  margin-left: 0.0rem;
  width: 410%;
  height: 0;
  display: none;
  text-align: left;
  z-index: 99;
}

.main-nav .double-column-l.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  height: auto;
  top: 100%;
  right: 0%;
  display: block;
  left: auto;
  animation: fadeIn .2s;
}

.main-nav .double-column-l.menu-item-has-children .sub-menu>li {
  width: 50%;
  float: left;
  padding: 0%;
}

.main-nav .double-column .fly-out.menu-item-has-children .sub-menu {
  opacity: 0;
  transition: all .3s ease-in-out;
  position: absolute;
  background: #1a6887;
  list-style: none;
  margin-left: 0.0rem;
  width: 18.8em;
  height: 0;
  display: none;
  text-align: left;
  z-index: 99;
}

.main-nav .double-column.menu-item-has-children .sub-menu>li.fly-out:hover {
  background-color: #f2a525;
}

.main-nav .double-column.menu-item-has-children .sub-menu>li.fly-out:hover .sub-menu {
  opacity: 1;
  position: absolute;
  background: #dcdcdc;
  height: auto;
  top: 0%;
  right: -18.8em;
  display: block;
  animation: fadeInUp .2s;
  left: auto;
}

.main-nav .double-column .fly-out.menu-item-has-children .sub-menu>li {
  width: 100%;
  float: left;
  padding: 0%;
}

div.mobile-nav {
  --mh-logo-h: 90px;
  --mh-bar-h: calc(var(--mh-logo-h) + 10px);
  --mh-y: #F5C518;
  --mh-yd: #c9a000;
  --mh-dark: #1a1a1a;
  --mh-spring: cubic-bezier(.16, 1, .3, 1);
  --mh-ease: cubic-bezier(.45, 0, .25, 1);
}

div.mobile-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  transition: box-shadow .4s ease;
}

div.mobile-nav.mh-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

@media (min-width: 992px) {
  div.mobile-nav {
    display: none !important;
  }

.desk-nav {
    display: block;
}
  
}

div.mobile-nav .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

div.mobile-nav .logo-block {
  background: #ffffff !important;
  position: relative !important;
  z-index: 10 !important;
  padding: 0 !important;
}

div.mobile-nav .logo-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mh-y);
  transform: scaleX(0);
  transform-origin: left;
  animation: mhSweep 800ms .2s var(--mh-spring) forwards;
}

@keyframes mhSweep {
  to {
    transform: scaleX(1);
  }
}

div.mobile-nav .logo-block .row {
  height: var(--mh-bar-h) !important;
  padding: 0 16px !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

div.mobile-nav .logo-block .row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

div.mobile-nav .logo-image {
  display: flex !important;
  align-items: center !important;
  opacity: 0;
  transform: translateX(-14px);
  animation: mhSlideLeft 800ms .1s var(--mh-spring) forwards;
}

@keyframes mhSlideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

div.mobile-nav .logo-image a {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  z-index: 5 !important;
  transform: none !important;
  top: 0 !important;
  margin: 0 !important;
  gap: 193em;
}

div.mobile-nav .logo-image img,
div.mobile-nav .logo-image .mobile-logo-img {
  height: var(--mh-logo-h) !important;
  width: auto !important;
  max-width: 200px !important;
  display: block !important;
  margin: 0 !important;
  left: 0 !important;
  position: relative !important;
  z-index: 5 !important;
  object-fit: contain !important;
  transition: none !important;
}

div.mobile-nav .mobile-top-right {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  opacity: 0;
  transform: translateX(14px);
  animation: mhSlideRight 800ms .15s var(--mh-spring) forwards;
}

@keyframes mhSlideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

div.mobile-nav a.mobile-call-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 50% !important;
  background: var(--mh-y) !important;
  color: #111111 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: background .2s !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

div.mobile-nav a.mobile-call-btn:hover {
  background: var(--mh-yd) !important;
  color: #111111 !important;
}

div.mobile-nav a.mobile-call-btn::before,
div.mobile-nav a.mobile-call-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--mh-y);
  opacity: 0;
  animation: mhPulse 3s 1.6s ease infinite;
  pointer-events: none;
}

div.mobile-nav a.mobile-call-btn::after {
  animation-delay: 2.4s;
}

@keyframes mhPulse {
  0% {
    transform: scale(1);
    opacity: .65;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

div.mobile-nav a.mobile-call-btn span,
div.mobile-nav a.mobile-call-btn i {
  color: #111111 !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  display: block !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
}

div.mobile-nav button.mobile-ham-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: #111111 !important;
  line-height: 1 !important;
  gap: 5px !important;
}

div.mobile-nav button.mobile-ham-btn:focus,
div.mobile-nav button.mobile-ham-btn:hover,
div.mobile-nav button.mobile-ham-btn:active {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

div.mobile-nav button.mobile-ham-btn::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  border-radius: 1px;
  box-shadow: 0 7px 0 #111111, 0 14px 0 #111111;
  flex-shrink: 0;
}

div.mobile-nav button.mobile-ham-btn > span {
  display: none !important;
}

div.mobile-nav .mobile-info-strip {
  background: var(--mh-y) !important;
  height: 34px !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 2 !important;
  transition: height .7s var(--mh-ease) !important;
  animation: mhStripGrow .6s .75s var(--mh-spring) backwards;
}

@keyframes mhStripGrow {
  from {
    height: 0;
  }

  to {
    height: 34px;
  }
}

div.mobile-nav .mobile-info-strip.mh-hidden {
  height: 0 !important;
}

div.mobile-nav .mobile-info-strip-inner {
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
  opacity: 0;
  animation: mhFadeIn .5s 1.2s ease forwards;
}

@keyframes mhFadeIn {
  to {
    opacity: 1;
  }
}

div.mobile-nav .mobile-strip-item {
  font-family: "Oswald", sans-serif;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

div.mobile-nav .mobile-strip-item i {
  font-size: .7rem;
  color: rgba(0,0,0,.35);
}

div.mobile-nav .mobile-strip-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  flex-shrink: 0;
  display: inline-block;
}

div.mobile-nav .mobile-nav-bar {
  background: var(--mh-dark) !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  top: auto !important;
}

div.mobile-nav .quick-nav,
div.mobile-nav .quick-nav.adjust {
  display: flex !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  position: static !important;
  top: auto !important;
  font-size: 1rem !important;
  list-style: none !important;
  align-items: stretch !important;
  background: transparent !important;
}

div.mobile-nav .mobile-nav-bar .col-3 {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  width: 25% !important;
  padding: 0 !important;
}

#offcanvasRight.offcanvas.offcanvas-end {
  background-color: #0a0a0a !important;
  width: 100vw !important;
  max-width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  border: none !important;
  border-left: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  transform: translateY(100%) !important;
  transition: transform .65s cubic-bezier(.16,1,.3,1) !important;
}

#offcanvasRight.offcanvas.offcanvas-end.show,
#offcanvasRight.offcanvas.offcanvas-end.showing {
  transform: translateY(0) !important;
}

#offcanvasRight.offcanvas.offcanvas-end.hiding {
  transform: translateY(100%) !important;
  transition: transform .5s cubic-bezier(.45,0,.25,1) !important;
}

#offcanvasRight .offcanvas-header {
  background: #0a0a0a !important;
  padding: 18px 20px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.oc3-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oc3-brand-dot {
  width: 8px;
  height: 8px;
  background: #F5C518;
  border-radius: 50%;
  flex-shrink: 0;
  animation: oc3blink 2.5s ease infinite;
}

@keyframes oc3blink {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

.oc3-brand-text {
  font-family: "Oswald", sans-serif !important;
  font-size: .72rem !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.4) !important;
}

#offcanvasRight .offcanvas-header .btn-close {
  background: #f4d42b !important;
  background-image: none !important;
  filter: none !important;
  opacity: 1 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgb(0 0 0) !important;
  font-size: .9rem !important;
  box-shadow: none !important;
  transition: border-color .2s, color .2s !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

#offcanvasRight .offcanvas-header .btn-close:hover {
  border-color: #F5C518 !important;
  color: #F5C518 !important;
}

#offcanvasRight .offcanvas-header .btn-close i {
  display: block !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

#offcanvasRight .offcanvas-body.shift-menu {
  background: #0a0a0a !important;
  padding: 4px 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  flex: 1 1 auto !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,197,24,.2) transparent;
}

#offcanvasRight .offcanvas-body.shift-menu::-webkit-scrollbar {
  width: 3px;
}

#offcanvasRight .offcanvas-body.shift-menu::-webkit-scrollbar-thumb {
  background: rgba(245,197,24,.2);
  border-radius: 2px;
}

#offcanvasRight .shift-menu .shift-item {
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
  position: relative !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s calc(var(--oc3-i, 1) * 60ms) ease,
              transform .5s calc(var(--oc3-i, 1) * 60ms) cubic-bezier(.16,1,.3,1);
}

#offcanvasRight.show .shift-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#offcanvasRight .oc3-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 13px 20px !important;
  flex: 1 !important;
  text-decoration: none !important;
  color: rgba(255,255,255,.65) !important;
  transition: color .2s !important;
  min-width: 0 !important;
  background: transparent !important;
}

#offcanvasRight .oc3-nav-link:hover {
  color: #F5C518 !important;
  text-decoration: none !important;
  background: transparent !important;
}

.oc3-num {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  color: rgb(245 197 24) !important;
  min-width: 26px !important;
  flex-shrink: 0 !important;
  transition: color .2s;
}

#offcanvasRight .oc3-nav-link:hover .oc3-num {
  color: rgba(245,197,24,.55) !important;
}

.oc3-label {
  font-family: "Oswald", sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  line-height: 1 !important;
  color: inherit !important;
}

#offcanvasRight .shift-menu .oc3-sub-toggle {
  all: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 14px 14px 14px !important;
  color: rgb(0 0 0) !important;
  font-size: .7rem !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: color .2s !important;
  background-color: #f4d42b!important;
}

#offcanvasRight .shift-menu .oc3-sub-toggle:hover {
  color: #000000 !important;
}

#offcanvasRight .shift-menu .oc3-sub-toggle[aria-expanded="true"] {
  color: #000000 !important;
}

.oc3-arr {
  display: block !important;
  transition: transform .35s cubic-bezier(.16,1,.3,1) !important;
  pointer-events: none;
}

#offcanvasRight .shift-menu .oc3-sub-toggle[aria-expanded="true"] .oc3-arr {
  transform: rotate(90deg) !important;
}

#offcanvasRight .shift-item:has(.oc3-sub-toggle[aria-expanded="true"]) .oc3-label {
  color: #F5C518 !important;
}

#offcanvasRight .shift-item:has(.oc3-sub-toggle[aria-expanded="true"]) .oc3-num {
  color: rgba(245,197,24,.55) !important;
}

#offcanvasRight .shift-menu .collapse.oc3-sub,
#offcanvasRight .shift-menu .collapsing.oc3-sub {
  width: 100% !important;
  flex-basis: 100% !important;
  background: rgba(0,0,0,.4) !important;
  border-top: 1px solid rgba(255,255,255,.04) !important;
}

.oc3-sub-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1px !important;
  padding: 8px 16px 12px 20px !important;
}

#offcanvasRight .shift-menu .sub-item.oc3-sub-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 7px !important;
  padding: 7px 4px !important;
  color: rgba(255,255,255,.35) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: .72rem !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  line-height: 1.3 !important;
  transition: color .2s !important;
}

#offcanvasRight .shift-menu .sub-item.oc3-sub-link:hover {
  color: #F5C518 !important;
  text-decoration: none !important;
}

.oc3-sub-dot {
  width: 3px;
  height: 3px;
  background: rgba(245,197,24,.4);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.oc3-ctas {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  flex-shrink: 0 !important;
  margin-top: auto !important;
}

.oc3-cta-call,
.oc3-cta-schedule {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 17px 8px !important;
  font-family: "Oswald", sans-serif !important;
  font-size: .73rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border: none !important;
  line-height: 1 !important;
  transition: background .2s, color .2s !important;
}

.oc3-cta-call {
  background: #f4d42b !important;
  color: #000 !important;
}

.oc3-cta-call:hover {
  background: #c9a000 !important;
  color: #000 !important;
  text-decoration: none !important;
}

.oc3-cta-schedule {
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.6) !important;
  border-left: 1px solid rgba(255,255,255,.06) !important;
}

.oc3-cta-schedule:hover {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.oc3-cta-call i,
.oc3-cta-schedule i {
  font-size: .9rem !important;
}

.offcanvas-backdrop {
  background-color: #000 !important;
}

.offcanvas-backdrop.show {
  opacity: .8 !important;
}

div.mobile-nav .mobile-nav-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 13px 4px 11px !important;
  gap: 4px !important;
  color: rgba(255,255,255,.35) !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  border-right: 1px solid rgba(255,255,255,.04) !important;
  border-left: none !important;
  position: relative !important;
  font-family: "Oswald", sans-serif !important;
  font-size: .54rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  transition: color .25s, background .25s !important;
  opacity: 0;
  transform: translateY(10px);
  animation: mhNavIn .55s var(--mh-spring) forwards;
}

@keyframes mhNavIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

div.mobile-nav .mobile-nav-bar .col-3:last-child .mobile-nav-item {
  border-right: none !important;
}

div.mobile-nav .mobile-nav-item:hover,
div.mobile-nav .mobile-nav-item.active {
  color: var(--mh-y) !important;
  background: rgba(245,197,24,.05) !important;
  padding-left: 4px !important;
  border-left: none !important;
  text-decoration: none !important;
}

div.mobile-nav .mobile-nav-item.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--mh-y);
  transform: scaleX(0);
  animation: mhPipIn .5s 1.4s var(--mh-spring) forwards;
}

@keyframes mhPipIn {
  to {
    transform: scaleX(1);
  }
}

div.mobile-nav .mobile-nav-item i {
  font-size: 1.1rem !important;
  color: inherit !important;
  display: block !important;
  line-height: 1 !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
}

@media screen and (max-width: 999em) {
  div.mobile-nav .logo-image img,
  div.mobile-nav .logo-image .mobile-logo-img {
    height: var(--mh-logo-h) !important;
    width: auto !important;
    max-width: 560px !important;
    left: 0 !important;
    margin: 0 !important;
    z-index: 5 !important;
  }

  div.mobile-nav.smallbar .logo-image img {
    height: var(--mh-logo-h) !important;
    width: auto !important;
  }
}

#site-wrap {
  max-width: 1700px;
  margin: auto;
  box-shadow: 0px 0px 2em rgba(181,193,199,.46);
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
}

:root {
  --ya: rgba(245,197,24,.1);
  --c2: #1a1a1a;
  --off: #f7f7f4;
  --sl: #bbbbbb;
  --bdl: rgba(0,0,0,.08);
  --y: #f4d038;
  --yd: #f4d038;
  --c: #111111;
  --w: #ffffff;
  --sg: #555555;
  --oswald: "Oswald", sans-serif;
  --dm: "DM Sans", sans-serif;
}

.hero-outer {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.hero-outer:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -1em;
  background-image: url(/wp-content/uploads/2026/03/bgwhite.jpg);
  width: 83%;
  height: 67.389em;
  -webkit-transform: translate(-1em,13%);
  -ms-transform: translate(-1em,13%);
  transform: translate(-22em,20%);
  transition: transform .4s ease 0s;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-left-col {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.hero-content-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8% 57px 8%;
}

.roof-ghost {
  position: absolute;
  top: -5%;
  left: -8%;
  right: -8%;
  bottom: -5%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.roof-ghost svg {
  width: 100%;
  height: 100%;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: none;
  animation: none;
}

.slide-content.active {
  display: block;
  animation: contentIn .5s cubic-bezier(.16,1,.3,1) both;
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 1rem;
}

.eyebrow-dash {
  width: 34px;
  height: 6px;
  background: var(--y);
  flex-shrink: 0;
  border-radius: 1px;
}

.eyebrow-text {
  font-family: var(--dm);
  font-size: .72rem;
  font-weight: 500;
  color: var(--c);
  letter-spacing: .2px;
}

.hero-headline {
  font-family: var(--oswald);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: .93;
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: 1.4rem;
}

.hero-headline .hl-black {
  color: var(--c);
  display: block;
}

.hero-headline .hl-yellow {
  color: var(--y);
  display: block;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.hero-bullets li {
  font-family: var(--dm);
  font-size: .88rem;
  color: var(--sg);
  line-height: 1.65;
  padding: .14rem 0 .14rem 1.4rem;
  position: relative;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--c);
  font-weight: 600;
  font-family: "icomoon" !important;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 2px solid var(--c);
  background: #000000;
  color: var(--w) !important;
  font-family: var(--oswald);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0px !important;
  border-radius: 7px;
}

.btn-phone:hover {
  background: var(--c);
  color: var(--w);
}

.btn-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: #f4d42b;
  color: var(--c);
  border: 2px solid var(--y);
  font-family: var(--oswald);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 7px;
}

.btn-estimate:hover {
  background: var(--yd);
  border-color: var(--yd);
  color: #000;
}

.hero-trust-bar {
  background: #000;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 8%;
  z-index: 999;
  position: relative;
  width: 141%;
  bottom: -28px;
}

.trust-text {
  font-family: var(--dm);
  font-size: clamp(.88rem, 1.3vw, 1.46rem);
  font-weight: 700;
  color: var(--w);
  white-space: nowrap;
  margin-bottom: 0;
}

.trust-text em {
  color: var(--y);
  font-style: normal;
}

.hero-right-col {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.slide-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
  z-index: 9;
}

.slide-image.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,.55);
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.slide-arrow:hover {
  background: var(--y);
  border-color: var(--y);
  color: var(--c);
  transform: translateY(-50%) scale(1.08);
}

.slide-arrow.prev {
  left: 18px;
}

.slide-arrow.next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1.5px solid rgba(255,255,255,.65);
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.on {
  background: var(--y);
  border-color: var(--y);
  transform: scale(1.35);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,.15);
  z-index: 30;
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  background: var(--y);
  width: 0%;
  transition: width linear;
}

.gaf-badges {
  position: absolute;
  right: 80px;
  bottom: -9px;
  z-index: 25;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.gaf-badge-img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5));
  transition: transform .3s;
  display: block;
}

.gaf-badge-img:hover {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .hero-outer {
    flex-direction: column;
    min-height: auto;
    margin-top: 15em;
  }

  .hero-left-col {
    width: 100%;
  }

  .hero-right-col {
    width: 100%;
    height: 360px;
    position: relative;
  }

  .slide-image {
    position: absolute;
    inset: 0;
  }

  .hero-content-area {
    padding: 40px 6% 44px;
    justify-content: flex-start;
  }

  .hero-trust-bar {
    padding: 0 6%;
  }

  .gaf-badges {
    left: auto;
    right: 80px;
    bottom: 44px;
  }

  .gaf-badge-img {
    width: 76px;
    height: 76px;
  }

  .slide-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .slide-arrow.prev {
    left: 12px;
  }

  .slide-arrow.next {
    right: 12px;
  }
}

@media (max-width: 575px) {
  .hero-content-area {
    padding: 32px 5% 36px;
  }

  .hero-right-col {
    height: 270px;
  }

  .hero-trust-bar {
    height: auto;
    padding: 14px 5%;
  }

  .trust-text {
    font-size: .88rem;
    white-space: normal;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
  }

  .btn-phone,
  .btn-estimate {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: .82rem;
  }

  .slide-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slide-arrow.prev {
    left: 8px;
  }

  .slide-arrow.next {
    right: 8px;
  }

  .gaf-badges {
    right: 52px;
    bottom: 36px;
    gap: 6px;
  }

  .gaf-badge-img {
    width: 60px;
    height: 60px;
  }

  .hero-dots {
    bottom: 16px;
  }
}

.section-1 {
  position: relative;
  z-index: 1;
  padding: 4% 2% 8% 2%;
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

#why-choose {
  background: var(--w);
  padding: 80px 0 0;
}

.top-section {
  padding: 0 0 72px;
  border-bottom: 1px solid var(--bdl);
}

.top-left {
  padding-right: 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
}

.top-eyebrow-dash {
  width: 34px;
  height: 5px;
  background: var(--y);
  flex-shrink: 0;
  border-radius: 1px;
}

.top-eyebrow-text {
  font-family: var(--dm);
  font-size: .78rem;
  font-weight: 700;
  color: var(--c);
  letter-spacing: .2px;
}

.top-headline {
  font-family: var(--oswald);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: 1.8rem;
  color: var(--c);
}

.top-headline .hl-yellow {
  color: #f4d038;
}

.top-ctas {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: nowrap;
}

.top-divider-col {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.top-divider-line {
  width: 1px;
  background: var(--bdl);
  min-height: 100%;
}

.top-right {
  padding-left: 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.top-lead {
  font-family: var(--dm);
  font-size: clamp(.9rem, 1.3vw, 1rem);
  font-weight: 700;
  color: var(--c);
  line-height: 1.75;
}

.top-body {
  font-family: var(--dm);
  font-size: .87rem;
  font-weight: 400;
  color: var(--sg);
  line-height: 1.85;
}

.stats-bar {
  border-bottom: 1px solid var(--bdl);
  border-top: 1px solid var(--bdl);
}

.stat-item {
  text-align: center;
  padding: 1.6rem 1rem;
  border-right: 1px solid var(--bdl);
  position: relative;
  background: var(--off);
  transition: background .3s;
  cursor: default;
  border-left: 1px solid var(--bdl);
}

.stat-item:hover {
  background: var(--c);
}

.stat-item:hover .stat-val {
  color: var(--y);
}

.stat-item:hover .stat-label {
  color: var(--sl);
}

.stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--y);
  transition: width .9s ease;
}

.stat-item.counted .stat-bar {
  width: 100%;
}

.stat-val {
  font-family: var(--oswald);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--y);
  display: block;
  line-height: 1;
  transition: transform .3s, color .3s;
}

.stat-item:hover .stat-val {
  transform: scale(1.07);
}

.stat-label {
  font-size: .6rem;
  color: var(--sg);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
  transition: color .3s;
}

.feature-grid {
  padding: 3rem 0 0;
}

.feat-main {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--c);
}

.feat-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
  z-index: 10;
}

.img-rotator {
  position: absolute;
  inset: 0;
}

.rot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.rot-slide.active {
  opacity: 1;
}

.rot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.3) 40%,
    rgba(0,0,0,.05) 70%,
    transparent 100%
  );
  z-index: 2;
}

.rot-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.2rem;
  z-index: 3;
}

.rot-ghost-num {
  font-family: var(--oswald);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.rot-title {
  font-family: var(--oswald);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--w);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.rot-desc {
  font-family: var(--dm);
  font-size: .79rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 320px;
}

.rot-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  display: flex;
  gap: 6px;
  align-items: center;
}

.rot-arrow {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--w);
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  border-radius: 0;
}

.rot-arrow:hover {
  background: var(--y);
  color: var(--c);
  border-color: var(--y);
}

.rot-dots {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.rot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s;
}

.rot-dot.on {
  background: var(--y);
  border-color: var(--y);
  transform: scale(1.35);
}

.rot-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.1);
  z-index: 10;
  overflow: hidden;
}

.rot-progress-fill {
  height: 100%;
  background: var(--y);
  width: 0%;
  transition: width linear;
}

.feat-sm {
  background: var(--off);
  padding: 1.8rem 1.8rem;
  border-left: 3px solid transparent;
  transition: all .35s;
  cursor: default;
  height: 100%;
}

.feat-sm:hover {
  border-left-color: var(--y);
  background: var(--w);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.feat-icon {
  font-size: 4.5rem;
  display: block;
  margin-bottom: 0rem;
  transition: transform .3s;
  line-height: 0;
}

.feat-sm:hover .feat-icon {
  transform: scale(1.15);
}

.feat-sm h3 {
  font-family: var(--oswald);
  font-size: .88rem;
  font-weight: 700;
  color: var(--c);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .35rem;
}

.feat-sm p {
  font-family: var(--dm);
  font-size: .78rem;
  color: var(--sg);
  line-height: 1.7;
}

.mobile-carousel {
  display: none;
}

.mob-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mob-track {
  display: flex;
  flex-wrap: nowrap;
  width: 400%;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.mob-slide {
  width: 25%;
  flex-shrink: 0;
  padding: 0 2px;
  box-sizing: border-box;
}

.mob-slide .feat-sm {
  height: auto;
  width: 100%;
  box-sizing: border-box;
}

.mob-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  border-top: 1px solid var(--bdl);
  margin-top: 12px;
}

.mob-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.mob-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  cursor: pointer;
  transition: all .3s;
}

.mob-dot.on {
  background: var(--y);
  box-shadow: 0 0 0 3px rgba(245,197,24,.2);
  transform: scale(1.3);
}

.mob-counter {
  font-family: var(--oswald);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sg);
}

.mob-arrows {
  display: flex;
  gap: 8px;
}

.mob-arr {
  width: 36px;
  height: 36px;
  background: var(--c);
  border: none;
  color: var(--w);
  font-size: .8rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-arr:hover {
  background: var(--y);
  color: var(--c);
}

.mob-arr:disabled {
  background: rgb(0 0 0);
  color: rgba(0,0,0,.25);
  cursor: default;
}

@media (max-width: 991px) {
  #why-choose {
    padding-top: 60px;
  }

  .top-divider-col {
    display: none;
  }

  .top-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .top-right {
    padding-left: 0;
  }

  .stat-item {
    border-bottom: 1px solid var(--bdl);
  }

  .feat-main {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  #why-choose {
    padding-top: 44px;
  }

  .top-section {
    padding-bottom: 44px;
  }

  .top-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .top-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
  }

  .btn-top-phone, .btn-top-cta {
    width: 100%;
    justify-content: center;
  }

  .feat-main {
    min-height: 280px;
  }

  .desktop-small-cards {
    display: none !important;
  }

  .mobile-carousel {
    display: block;
  }
}

@media (max-width: 400px) {
  .top-headline {
    font-size: 1.85rem;
  }
}

.form {
  position: relative;
  background: #1f2c5f;
  width: 90%;
  margin: auto;
  padding: 1em;
}

.form .with_frm_style .frm_primary_label {
  color: white;
}

.form iframe {
  margin-top: .5em;
  height: 41em !important;
}

.form-label {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.5em;
  color: white;
}

.section-2 {
  padding: 0% 0% 0% 0%;
  position: relative;
  z-index: 3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: url(/wp-content/uploads/2026/03/orange-bg.jpg);
}

:root {
  --y: #f4d038;
  --yd: #f4d038;
  --c: #111111;
  --w: #ffffff;
  --off: #f5f4f0;
  --sg: #555555;
  --oswald: "Oswald", sans-serif;
  --dm: "DM Sans", sans-serif;
}

#services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f4d03800 0%, #f4d03800 55%, #111111 55%, #111111 100%);
  padding: 64px 0 72px;
}

.svc-ghost {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 55%;
  height: 75%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.svc-ghost svg {
  width: 100%;
  height: 100%;
}

.svc-header {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .8rem;
}

.svc-eyebrow-dash {
  width: 32px;
  height: 4px;
  background: var(--c);
  border-radius: 1px;
  flex-shrink: 0;
}

.svc-eyebrow-text {
  font-family: var(--dm);
  font-size: .78rem;
  font-weight: 700;
  color: var(--c);
  letter-spacing: .5px;
}

.svc-title {
  font-family: var(--oswald);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--c);
  line-height: 1.05;
  letter-spacing: -.5px;
  text-transform: uppercase;
}

.svc-cards-wrap {
  position: relative;
  z-index: 2;
}

.svc-card {
  background: var(--off);
  padding: 2.2rem 2rem 1.8rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}

.svc-card {
  transition: background .4s ease, box-shadow .4s ease, transform .35s ease;
}

.svc-card:hover {
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transform: translateY(-6px);
}

.svc-card h3 {
  transition: color .3s;
}

.svc-card p {
  transition: color .3s;
}

.svc-card:hover h3 {
  color: #fff;
}

.svc-card:hover p {
  color: rgba(255,255,255,.5);
}

.svc-icon-wrap {
  position: relative;
  border-radius: 50%;
}

.svc-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(245,197,24,.12);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .4s ease, transform .4s ease;
  z-index: 0;
}

.svc-card:hover .svc-icon-wrap::before {
  opacity: 1;
  transform: scale(1);
}

.svc-icon-wrap span {
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  font-size: 7em;
  display: block;
  width: 100%;
  text-align: center;
}

.svc-card:hover .svc-icon-wrap span {
  transform: rotate(-8deg) scale(1.12);
}

.svc-card:hover .svc-learn {
  color: var(--y);
}

.svc-card:hover .svc-learn-arr {
  transform: translateX(6px);
  transition: transform .3s ease;
}

.svc-card:hover .badge-new {
  box-shadow: 0 0 0 2px rgba(245,197,24,.4);
}

.svc-icon-wrap {
  position: relative;
  width: 100px;
  height: 90px;
  margin-bottom: 1.6rem;
  flex-shrink: 0;
}

.badge-new {
  position: absolute;
  top: 0;
  right: -6px;
  width: 36px;
  height: 36px;
  background: var(--y);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.badge-new span {
  font-family: var(--oswald);
  font-size: .42rem;
  font-weight: 700;
  color: var(--c);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.svc-card h3 {
  font-family: var(--oswald);
  font-size: .95rem;
  font-weight: 700;
  color: var(--c);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: .85rem;
  flex-shrink: 0;
}

.svc-card p {
  font-family: var(--dm);
  font-size: .82rem;
  color: var(--sg);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.4rem;
}

.svc-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--oswald);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yd);
  text-decoration: none;
  transition: gap .3s;
  margin-top: auto;
}

.svc-learn:hover {
  color: var(--c);
  gap: 14px;
}

.svc-learn-arr {
  font-size: .8rem;
  transition: transform .3s;
}

.svc-learn:hover .svc-learn-arr {
  transform: translateX(4px);
}

.svc-col {
  padding: 0 8px;
}

.svc-cards-wrap .row {
  margin: 0 -8px;
}

.svc-desktop {}

.svc-mobile {
  display: none;
}

.mob-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  will-change: transform;
  width: 400%;
}

.mob-slide {
  width: 25%;
  flex-shrink: 0;
  padding: 0 2px;
}

.mob-slide .svc-card {
  transform: none !important;
}

.mob-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 0;
}

.mob-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mob-dot {
  width: 28px;
  height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s;
}

.mob-dot.on {
  background: var(--c);
  width: 44px;
}

.mob-counter {
  font-family: var(--oswald);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,.5);
}

.mob-arr {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--w);
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.mob-arr:hover {
  background: var(--y);
  color: var(--c);
  border-color: var(--y);
}

.mob-arr:disabled {
  opacity: .25;
  cursor: default;
}

.mob-progress {
  height: 3px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
  margin-top: 14px;
}

.mob-progress-fill {
  height: 100%;
  background: var(--c);
  width: 0%;
  transition: width linear;
}


@media (max-width: 991px) {
  #services-section {
    padding: 44px 0 56px;
  }

  .svc-desktop {
    display: none !important;
  }

  .svc-mobile {
    display: block !important;
  }

  .svc-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .mob-slide {
    box-sizing: border-box;
  }

  .mob-slide .svc-card {
    width: 100%;
    height: auto;
  }
}

.top-services .col-4 {
  padding: 0 0.9%;
}

.top-services {
  position: relative;
  padding: 0% 0%;
  z-index: 3;
}

.top-services:after {
  right: -97%;
  left: auto;
  background-position: left;
}

.top-services .carousel-inner {
  padding: 0em 1em;
}

.top-services a {
  position: relative;
  background-color: #fafafa00;
  color: #ffffff;
  display: block;
  z-index: 2;
  text-decoration: none;
  height: 16em;
  transition: all .3s ease-in-out;
  text-align: center;
  margin: 0em auto;
  font-size: .9em;
}

.top-services a:after {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0;
  border: 2px solid #65ee62;
  width: 100%;
  height: 100%;
  transform: skew(-8deg);
  z-index: -1;
}

.top-services a span {
  display: block;
  font-size: 6.5em;
  position: absolute;
  top: 0.39em;
  right: -0.1em;
  transition: all .3s ease-in-out;
  width: 100%;
  color: #ffffff;
}

.top-services a span:after {
  content: "";
  position: absolute;
  top: -0.15em;
  left: 0;
  width: 100%;
  height: 1.3em;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: center;
  background-size: 1.1em;
}

.top-services a svg {
  width: 6em;
  height: 6em;
  position: relative;
  top: 0.6em;
  transition: all .3s ease-in-out;
}

.top-services a svg path {
  transition: all .3s ease-in-out;
  fill: #0056a6;
}

.servi-label {
  position: absolute;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  bottom: 1.8em;
  left: 0em;
  width: 100%;
  font-size: 1em;
  padding: 0% 5%;
  line-height: 1.1;
  transition: all .3s ease-in-out;
  font-weight: 700;
}

.top-services p {
  position: absolute;
  bottom: -10em;
  padding: 2em 1.5em 2em 1.5em;
  font-size: 0.8em;
  left: 0;
  transition: all .3s ease-in-out;
  opacity: 0;
}

.ts-box-4, .ts-box-5 {
  position: relative;
  left: 16.5%;
}

@keyframes uspTada {
  20% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.top-services a:hover {
  color: #000000;
}

.top-services a:hover:after {
  background: #65ee62;
}

.top-services a:hover span {
  opacity: 0;
  top: 0em;
}

.top-services a:hover svg {
  width: 2em;
  height: 2em;
  right: 0.3em;
  opacity: 0;
  top: 0em;
}

.top-services a:hover svg path {
  fill: #000;
}

.top-services a:hover .servi-label {
  bottom: 75%;
  text-shadow: none;
  left: 1em;
}

.top-services a:hover .servi-label strong {
  color: black;
}

.top-services a:hover p {
  opacity: 1;
  left: 1.3em;
  bottom: 0em;
  padding: 2em 0.7em 2em 0.5em;
}

.box-3 {
  border: 0 !important;
}

.section-3 {
  padding: 0em 0% 0em 0%;
  position: relative;
  z-index: 3;
  background-size: 100%;
  background-position: 0% 100%;
  background-repeat: no-repeat;
}

:root {
  --y: #f4d42b;
  --ya: #F5C51822;
  --c: #1a1a1a;
  --off: #f4f4f2;
  --w: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--c);
  background: var(--w);
}

.tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.tl {
  width: 28px;
  height: 3px;
  background: var(--y);
}

.tag span {
  font-family: "Oswald", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c);
}

#service-area {
  background: var(--w);
  overflow: hidden;
}

.sa-left {
  background: var(--off);
  padding: 90px 6% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sa-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -54px;
  bottom: 0;
  width: 110px;
  background: var(--off);
  transform: skewX(-4deg);
  z-index: -1;
}

.sa-left h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.sa-left h2 em {
  font-style: normal;
  color: var(--y);
}

.sa-left p {
  font-size: .9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  margin-top: .4rem;
  background: var(--y);
  color: var(--c);
  font-family: "Oswald", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  transition: all .25s;
  align-self: flex-start;
  border-radius: 7px;
}

.btn-cta:hover {
  background: var(--c);
  color: var(--y);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.sa-right {
  position: relative;
  min-height: 540px;
  padding: 0;
  overflow: hidden;
}

.img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.img-top {
  overflow: hidden;
}

.img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.img-top:hover img {
  transform: scale(1.04);
}

.img-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.img-thumb {
  overflow: hidden;
}

.img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.img-thumb:hover img {
  transform: scale(1.06);
}

.img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  background: var(--y);
  color: var(--c);
  font-family: "Oswald", sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 9px 18px;
}

.sa-chips {
  padding: 52px 0 64px;
  background: var(--w);
  position:relative;
  z-index:0
}



.sa-chips:before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    background-image: url(/wp-content/uploads/2026/03/bgwhite.jpg);
    width: 83%;
    height: 67.389em;
    -webkit-transform: translate(-1em, 13%);
    -ms-transform: translate(-1em,13%);
    transform: translate(18em, 5%);
    transition: transform .4s ease 0s;
    z-index: 2;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.svc-header-left {
  font-family: "Oswald", sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #999;
}

.svc-header-count {
  font-family: "Oswald", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c);
}

.svc-rule {
  height: 2px;
  background: var(--y);
  margin: 10px 0 36px;
  border: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 24px;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  color: var(--c);
  font-size: .86rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: color .25s;
}

.svc-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .4s ease, transform .4s ease, color .25s;
}

.svc-item:hover {
  color: #555;
}

.svc-item:hover .svc-dot {
  transform: scale(1.4);
}

.svc-dot {
  width: 8px;
  height: 8px;
  background: var(--y);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .25s;
}

@media (max-width: 1199px) {
  .svc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .sa-left::after {
    display: none;
  }

  .sa-left {
    padding: 60px 6%;
  }

  .sa-right {
    min-height: 300px;
    position: relative;
  }

  .img-grid {
    position: relative;
    height: 300px;
  }
}

@media (max-width: 575px) {
  .chip-grid {
    grid-template-columns: 1fr;
  }
}

.section-4 {
  padding: 6% 5% 2% 5%;
  position: relative;
  z-index: 3;
  background: #ffffff00;
  margin-bottom: -1px;
}

:root {
  --y: #f4d42b;
  --yd: #f4d42b;
  --ya: rgba(245,197,24,.12);
  --c: #1a1a1a;
  --sg: #767676;
  --sl: #aaa;
  --w: #fff;
  --off: #fafaf8;
  --off2: #f2f2ee;
  --bdr: rgba(0,0,0,.09);
  --bdr2: rgba(0,0,0,.16);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .9rem;
}

.tl {
  width: 26px;
  height: 3px;
  background: #f5c518;
  border-radius: 2px;
  flex-shrink: 0;
}

.review-sec .tag span {
  color: #f5c518;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#s3 .sub {
  font-size: .87rem;
  color: #000;
  line-height: 1.82;
}

#s3 .sec-title {
  font-family: "Oswald",sans-serif;
  font-size: clamp(1.8rem,2.8vw,2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
  color: #000000;
}

.sec-title {
  font-family: "Oswald",sans-serif;
  font-size: clamp(1.8rem,2.8vw,2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--w);
}

.sec-title em {
  color: #f4d42b;
  font-style: normal;
}

#s2 .sec-title em {
  color: var(--c);
  font-style: normal;
}

.sub {
  font-size: .87rem;
  color: var(--w);
  line-height: 1.82;
}

.btn-base {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-family: "Oswald",sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  border: 2px solid;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 7px;
}

.btn-y {
  background: var(--w);
  color: var(--c);
  border-color: var(--y);
}

.btn-y:hover {
  background: var(--yd);
  border-color: var(--yd);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,197,24,.3);
  color: var(--c);
}

.btn-c {
  background: #f4d42b;
  color: var(--c);
  border-color: var(--c);
}

.btn-c:hover {
  background: var(--y);
  color: var(--c);
  border-color: var(--y);
  transform: translateY(-2px);
}

.btn-o {
  background: #ffffff;
  color: var(--c);
  border-color: var(--bdr2);
}

.btn-o:hover {
  background: var(--c);
  color: var(--w);
  border-color: var(--c);
}

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease,transform .7s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

.rvl {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .7s ease,transform .7s ease;
}

.rvl.on {
  opacity: 1;
  transform: none;
}

.rvr {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .7s ease,transform .7s ease;
}

.rvr.on {
  opacity: 1;
  transform: none;
}

#s1 {
  background: var(--c);
  padding: 90px 0;
}

#s2 {
  background: var(--off);
  padding: 0;
}

.s2-hdr {
  background: #f4d42b;
  padding: 3.5rem 0;
}

.s2-hdr .sec-title {
  color: var(--c);
}

.s2-hdr .sub {
  color: rgb(0 0 0);
  font-size: .83rem;
}

.ba-body {
  padding: 3rem 0;
}

.ba-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  border: 3px solid var(--c);
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  display: block;
}

.ba-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-clip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  display: block;
}

.ba-lbl {
  position: absolute;
  top: 1.1rem;
  z-index: 5;
  font-family: "Oswald",sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.lbl-a {
  left: 1.1rem;
  background: var(--y);
  color: var(--c);
}

.lbl-b {
  right: 1.1rem;
  background: rgba(0,0,0,.7);
  color: rgba(255,255,255,.7);
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--w);
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0,0,0,.35);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  background: var(--w);
  border: 3px solid var(--y);
  border-radius: 50%;
  z-index: 6;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(0,0,0,.22);
  transition: box-shadow .2s,border-color .2s;
  cursor: grab;
}

.ba-handle:active,.ba-handle.drag {
  cursor: grabbing;
  box-shadow: 0 6px 30px rgba(245,197,24,.5);
  border-color: var(--yd);
}

.ba-handle svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.ba-hint {
  text-align: center;
  margin-top: 1.1rem;
  font-size: .7rem;
  color: var(--sl);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

.ba-hint::before,.ba-hint::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.ba-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin-top: 1.5rem;
  border: 1px solid var(--bdr);
  overflow: hidden;
}

.ba-si {
  padding: 1.1rem 1.4rem;
  border-right: 1px solid var(--bdr);
}

.ba-si:last-child {
  border-right: none;
  background: #f4d42b;
}

.ba-si-l {
  font-size: .6rem;
  color: var(--sg);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.ba-si:last-child .ba-si-l {
  color: rgba(0,0,0,.45);
}

.ba-si-v {
  font-family: "Oswald",sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--c);
}

.s3 {
  padding: 64px 0;
  background: var(--wh);
}

.pill-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #000000;
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 44px;
}

.pill-btn {
  padding: 11px 22px;
  font-family: var(--oswald);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .3s,color .3s,box-shadow .3s;
}


.pill-btn.act {
  background: #f4d42b;
  color: var(--tx)!important;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.pill-btn i {
  color: var(--gr4);
  font-size: .88rem;
  transition: color .3s;
}

.pill-btn.act i {
  color: var(--g);
}

.mob-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--gr);
  border-radius: var(--rad);
  border: 1px solid var(--gr3);
}

.mob-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gr3);
  background: var(--wh);
  color: var(--tx);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s,background .2s;
}

.mob-btn:hover {
  border-color: var(--g);
  background: var(--glt);
}

.mob-lbl {
  font-family: "Rajdhani",sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tx);
  text-align: center;
  flex: 1;
  padding: 0 12px;
}

.mob-lbl span {
  color: var(--g);
}

.tab-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}

.tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gr3);
  cursor: pointer;
  transition: background .3s,transform .3s;
}

.tab-dot.act {
  background: var(--g);
  transform: scale(1.3);
}

.tab-panel {
  display: none;
}

.tab-panel.show {
  display: block;
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .pill-nav {
    display: none!important;
  }

  .mob-nav {
    display: flex;
  }
}

.cpn-feat {
  background: var(--c);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--y);
}

.cpn-feat::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgb(255 255 255);
  pointer-events: none;
}

.cpn-wm {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Oswald",sans-serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.cpn-sci {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.1);
}

.cpn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ya);
  border: 1px solid rgba(245,197,24,.22);
  padding: 5px 12px;
  margin-bottom: 1.2rem;
}

.cpn-badge span {
  font-family: "Oswald",sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--y);
}

.cpn-valrow {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.cpn-v {
  font-family: "Oswald",sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #f4d42b;
  line-height: 1;
  transition: opacity .3s,transform .3s;
}

.cpn-u {
  font-family: "Oswald",sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--y);
  transition: opacity .3s,transform .3s;
}

.cpn-title {
  font-family: "Oswald",sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--w);
  text-transform: uppercase;
  margin: .45rem 0 .25rem;
  transition: opacity .3s,transform .3s;
}

.cpn-fine {
  font-size: .72rem;
  color: #d4d4d4;
  margin-bottom: 1.8rem;
  transition: opacity .3s,transform .3s;
}

.cpn-list-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--y);
}

.cpn-list-hdr span {
  font-family: "Oswald",sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sg);
}

.cpn-list-hdr strong {
  font-family: "Oswald",sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--c);
}

.cpn-mini {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--bdr);
  margin-top: -1px;
  cursor: pointer;
  transition: all .3s;
  background: var(--w);
  position: relative;
  overflow: hidden;
}

.cpn-mini::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--y);
  transition: width .3s;
}

.cpn-mini.on::before,.cpn-mini:hover::before {
  width: 3px;
}

.cpn-mini.on,.cpn-mini:hover {
  background: var(--off);
  padding-left: 1.5rem;
  z-index: 1;
}

.cpn-mini-val {
  font-family: "Oswald",sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--y);
  min-width: 64px;
  transition: transform .3s;
}

.cpn-mini-unit {
  font-size: .55em;
  font-weight: 700;
}

.cpn-mini.on .cpn-mini-val,.cpn-mini:hover .cpn-mini-val {
  transform: scale(1.06);
}

.cpn-mini-info {
  flex: 1;
}

.cpn-mini-title {
  font-family: "Oswald",sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--c);
  text-transform: uppercase;
}

.cpn-mini-fine {
  font-size: .68rem;
  color: var(--sg);
}

.cpn-mini-arr {
  font-size: .8rem;
  color: var(--sl);
  transition: all .3s;
}

.cpn-mini.on .cpn-mini-arr,.cpn-mini:hover .cpn-mini-arr {
  color: var(--c);
  transform: translateX(4px);
}

@media (max-width:991px) {
  .ba-strip {
    grid-template-columns: 1fr 1fr;
  }

  .ba-si:nth-child(2) {
    border-right: none;
  }

  .ba-si:nth-child(3) {
    border-top: 1px solid var(--bdr);
  }

  .ba-si:nth-child(5) {
    border-top: 1px solid var(--bdr);
    grid-column: 1/-1;
  }
}

@media (max-width:767px) {
  #s1,#s3 {
    padding: 64px 0;
  }

  #cpnMinis {
    display: none;
  }

  .cpn-mob-carousel {
    display: block !important;
  }
}

@media (max-width:575px) {
  .rev-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

.cpn-mob-carousel {
  display: none;
}

.cpn-mob-viewport {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--bdr);
}

.cpn-mob-track {
  display: flex;
  transition: transform .38s ease;
}

.cpn-mob-track .cpn-mini {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 0;
  border: none;
}

.cpn-mob-track .cpn-mini.on {
  padding-left: 1.5rem;
}

.cpn-mob-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  border: 1px solid var(--bdr);
  border-top: none;
  background: var(--off);
}

.cpn-mob-arrows {
  display: flex;
  gap: 8px;
}

.cpn-mob-arr {
  width: 38px;
  height: 38px;
  background: var(--w);
  border: 1.5px solid var(--bdr);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--sg);
  transition: all .22s;
}

.cpn-mob-arr:hover:not(:disabled) {
  background: var(--c);
  color: var(--w);
  border-color: var(--c);
}

.cpn-mob-arr:disabled {
  opacity: .3;
  cursor: default;
}

.cpn-mob-counter {
  font-family: "Oswald", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--sg);
}

.cpn-mob-dots {
  display: flex;
  gap: 5px;
}

.cpn-mob-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bdr2);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.cpn-mob-dot.on {
  background: var(--y);
  transform: scale(1.3);
}

.b-cta {
  position: relative;
}

.b-cta-call {
  background: #f4d42b;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 36px 8%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  height: 100%;
}

.b-cta-call:hover {
  background: var(--yd);
}

.b-cta-call-bg {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11rem;
  color: rgba(0,0,0,.05);
  line-height: 1;
  pointer-events: none;
}

.b-cta-sched {
  background: var(--c);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 36px 8%;
  border: none;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
  height: 100%;
}

.b-cta-sched:hover {
  background: #1e1e1e;
}

.b-cta-sched-bg {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}

.b-cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  flex-shrink: 0;
  transition: transform .35s;
}

.b-cta-call:hover  .b-cta-icon,
.b-cta-sched:hover .b-cta-icon {
  transform: scale(1.1);
}

.b-cta-icon-call {
  background: rgba(0,0,0,.1);
  color: #000;
}

.b-cta-icon-sched {
  background: var(--ya);
  border: 1px solid rgba(245,197,24,.25);
  color: var(--y);
}

.b-cta-sched:hover .b-cta-icon-sched {
  background: var(--y);
  color: #000;
}

.b-cta-lbl {
  font-family: "Oswald", sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: .2rem;
}

.b-cta-lbl-call {
  color: rgba(0,0,0,.45);
}

.b-cta-lbl-sched {
  color: rgba(255,255,255,.3);
}

.b-cta-main {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  letter-spacing: 1px;
  line-height: 1;
  display: block;
}

.b-cta-main-call {
  color: #000;
}

.b-cta-main-sched {
  color: var(--w);
}

.b-cta-sub {
  font-family: var(--dm);
  font-size: .75rem;
  margin-top: .2rem;
  display: block;
}

.b-cta-sub-call {
  color: rgba(0,0,0,.45);
}

.b-cta-sub-sched {
  color: rgba(255,255,255,.35);
}

.b-cta-arr {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .85rem;
  flex-shrink: 0;
  transition: all .3s;
}

.b-cta-sched:hover .b-cta-arr {
  background: var(--y);
  color: #000;
  border-color: var(--y);
}

.b-divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: var(--w);
  border: 3px solid var(--y);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--oswald);
  font-size: .58rem;
  font-weight: 700;
  color: var(--c);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.b-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--y) 60%, transparent 100%);
}

.b-footer {
  background: var(--w);
  padding-top: 4em;
}

.b-col-h {
  font-family: var(--oswald);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yd);
  margin-bottom: 1.3rem;
}

.b-col-hover {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid transparent;
  transition: border-color .3s;
}

.b-col-hover:hover {
  border-color: var(--y);
}

.b-brand-name {
  font-family: var(--oswald);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}

.b-brand-name span {
  color: var(--y);
}

.b-brand-tag {
  font-family: var(--dm);
  font-size: .83rem;
  color: var(--sg);
  line-height: 1.78;
  margin: .8rem 0 1.2rem;
}

.b-lic {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--off2);
  border: 1px solid var(--bdo);
  padding: 7px 13px;
  font-family: var(--oswald);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sg);
  width: 100%;
  text-align: center;
}

.b-lic i {
  color: var(--y);
}

.b-addr {
  font-family: var(--dm);
  font-size: .83rem;
  line-height: 1.85;
  color: var(--sg);
}

.b-addr strong {
  color: var(--c);
  font-weight: 500;
}

.b-addr a {
  color: var(--yd);
  text-decoration: none;
  transition: color .2s;
}

.b-addr a:hover {
  color: var(--c);
}

.b-phone {
  display: block;
  font-family: var(--oswald);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c);
  letter-spacing: .5px;
  text-decoration: none;
  margin-top: .8rem;
  transition: color .2s;
  line-height: 1;
}

.b-phone:hover {
  color: var(--yd);
}

.b-soc {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.b-soc-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 13px;
  background: var(--off);
  border: 1px solid var(--bdo);
  color: var(--sg);
  text-decoration: none;
  font-family: var(--dm);
  font-size: .78rem;
  transition: all .3s;
}

.b-soc-btn:hover {
  background: var(--y);
  color: #000;
  border-color: var(--y);
}

.b-soc-btn i {
  font-size: 1rem;
}

.b-soc-btn span {
  font-family: var(--oswald);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.b-pay {
  margin-bottom: 1rem;
}

.b-pay-item {
  background: var(--off);
  border: 0px solid var(--bdo)!important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s;
}

.b-pay-item:hover {
  border-color: var(--y);
}

.b-sched-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 15px;
  background: var(--c);
  border: 2px solid var(--c);
  color: var(--w);
  font-family: var(--oswald);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.b-sched-btn:hover {
  background: var(--y);
  color: #000;
  border-color: var(--y);
}

.b-foot-bar {
  background: var(--c);
  padding: 18px 0;
}

.b-foot-copy {
  font-family: var(--dm);
  font-size: .72rem;
  color: rgb(255 255 255);
}

.b-foot-copy a {
  color: rgba(255,255,255,.25);
  text-decoration: none;
}

.b-foot-copy a:hover {
  color: var(--y);
}

.b-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.b-foot-links a {
  font-family: var(--oswald);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(255 255 255);
  text-decoration: none;
  padding: 0 .9rem;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}

.b-foot-links a:last-child {
  border-right: none;
  padding-right: 0;
}

.b-foot-links a:hover {
  color: var(--y);
}

.b-footer-grid .b-col-wrap {
  border-right: 1px solid var(--bdo);
  padding: 56px 2.5rem;
}

.b-footer-grid .b-col-wrap:first-child {}

.b-footer-grid .b-col-wrap:last-child {}

@media (max-width: 991px) {
  .b-divider-dot {
    display: none;
  }

  .b-cta-call,
  .b-cta-sched {
    padding: 32px 6%;
  }

  .b-footer-grid .b-col-wrap {
    border-right: none;
    border-bottom: 1px solid var(--bdo);
    padding: 2rem 0;
  }

  .b-footer-grid .b-col-wrap:last-child {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .b-cta-main {
    font-size: 2rem;
  }

  .b-foot-bar .d-flex {
    flex-direction: column;
    text-align: center;
    gap: .8rem;
  }

  .b-foot-links {
    justify-content: center;
  }

  .b-foot-copy {
    text-align: center;
  }
}

:root {
  --y: #F5C518;
  --yd: #c89f00;
  --ya: rgba(245,197,24,.13);
  --yb: rgba(245,197,24,.06);
  --c: #111111;
  --c2: #1a1a1a;
  --c3: #222;
  --w: #ffffff;
  --off: #f7f7f4;
  --off2: #efefea;
  --sg: #6a6a6a;
  --sm: #aaa;
  --bdo: rgba(0,0,0,.08);
  --bdos: rgba(0,0,0,.14);
  --bebas: "Bebas Neue",display;
  --oswald: "Oswald",sans-serif;
  --dm: "DM Sans",sans-serif;
}

.why-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245,197,24,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.why-header {
  position: relative;
  z-index: 9;
  background: var(--c);
  padding: 72px 3% 64px;
  overflow: hidden;
  margin-top: 60px;
}

.why-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  width: 340px;
  background: rgb(245 197 24);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.why-header-in {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  position: relative;
  z-index: 2;
}

.why-eyebrow {
  font-family: var(--oswald);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--y);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.why-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--y);
}

.why-h {
  font-size: clamp(3rem, 5vw, 5.0rem);
  color: #fff;
  line-height: .88;
  letter-spacing: 1px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.why-h em {
  color: #f4d42b;
  font-style: normal;
}

.why-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  padding-bottom: .4rem;
}

.why-sub {
  font-family: var(--dm);
  font-size: .88rem;
  line-height: 1.82;
  color: rgb(255 255 255);
  max-width: 320px;
  text-align: right;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  font-family: var(--oswald);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: #f4d42b;
  color: #000;
  border: 2px solid var(--y);
  transition: all .3s;
  white-space: nowrap;
  border-radius: 7px;
}

.why-cta:hover {
  background: var(--yd);
  border-color: var(--yd);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,197,24,.3);
  color: #000;
}

.why-cta-out {
  background: transparent;
  color: #fff;
  border-color: rgb(0 0 0 / 25%);
}

.why-cta-out:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.why-stage {
  position: relative;
  z-index: 2;
  padding: 56px 6% 0;
  max-width: 100%;
  margin: 0 auto;
}

.why-stage:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -1em;
  background-image: url(/wp-content/uploads/2026/03/bgwhite.jpg);
  width: 88%;
  height: 67.389em;
  -webkit-transform: translate(-1em,13%);
  -ms-transform: translate(-1em,13%);
  transform: translate(-22em,31%);
  transition: transform .4s ease 0s;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.why-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 1rem;
}

.why-pager-label {
  font-family: var(--oswald);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sm);
}

.why-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.why-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--off2);
  cursor: pointer;
  transition: all .35s;
}

.why-dot.on {
  background: var(--y);
  width: 44px;
}

.why-dot:hover:not(.on) {
  background: var(--sm);
}

.why-auto-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--oswald);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sm);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: color .2s;
}

.why-auto-toggle:hover {
  color: var(--c);
}

.why-auto-toggle .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

.why-auto-toggle.paused .pulse {
  animation: none;
  background: var(--sm);
}

@keyframes pulse {
  0%,100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .3;
    transform: scale(.7);
  }
}

.why-grid-viewport {
  overflow: hidden;
  position: relative;
}

.why-grid-track {
  display: flex;
  gap: 20px;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.why-flip {
  flex-shrink: 0;
  height: 380px;
  perspective: 1100px;
  cursor: pointer;
}

.why-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.4, 0, .2, 1);
}

.why-flip:hover .why-flip-inner,
.why-flip.flipped .why-flip-inner {
  transform: rotateY(180deg);
}

.why-front, .why-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2rem;
}

.why-front {
  background: var(--off);
  border: 1px solid var(--bdo);
  justify-content: flex-end;
  transition: border-color .3s;
}

.why-flip:hover .why-front {
  border-color: var(--y);
}

.why-front-num {
  position: absolute;
  bottom: .6rem;
  right: 1rem;
  font-family: var(--bebas);
  font-size: 7rem;
  color: rgba(0,0,0,.04);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}

.why-flip:hover .why-front-num {
  color: rgba(245,197,24,.08);
}

.why-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--y);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.why-flip:hover .why-front::before {
  transform: scaleX(1);
}

.why-front-icon {
  font-size: 4.8rem;
  color: var(--y);
  margin-bottom: 10px;
  transition: transform .35s, font-size .35s;
  line-height: 0;
}

.why-flip:hover .why-front-icon {
  transform: scale(1.12);
  font-size: 3rem;
}

.why-front-title {
  font-family: var(--oswald);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c);
  margin-bottom: .35rem;
}

.why-front-short {
  font-family: var(--dm);
  font-size: .73rem;
  color: var(--sg);
}

.why-back {
  background: var(--y);
  transform: rotateY(180deg);
  justify-content: center;
  gap: .8rem;
}

.why-back-icon {
  font-size: 4.8rem;
  color: rgb(0 0 0);
  line-height: 0;
}

.why-back-title {
  font-family: var(--oswald);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #000;
}

.why-back-body {
  font-family: var(--dm);
  font-size: .82rem;
  line-height: 1.78;
  color: rgba(0,0,0,.62);
}

.why-back-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin-top: .4rem;
  font-family: var(--oswald);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: #000;
  color: var(--y);
  border: 2px solid #000;
  transition: all .3s;
  align-self: flex-start;
}

.why-back-cta:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.why-mob-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 20px 0 0;
}

.why-mob-arr {
  width: 46px;
  height: 46px;
  background: var(--c);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.why-mob-arr:hover {
  background: var(--y);
  color: #000;
}

.why-mob-arr:disabled {
  background: var(--off2);
  color: var(--sm);
  cursor: default;
}

.why-mob-counter {
  font-family: var(--oswald);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sg);
  min-width: 52px;
  text-align: center;
}

.why-footer {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 6% 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--bdo);
  margin-top: 48px;
}

.why-footer-copy {
  font-family: var(--dm);
  font-size: .86rem;
  color: var(--sg);
  max-width: 520px;
  line-height: 1.78;
}

.why-footer-copy strong {
  color: var(--c);
}

.why-phone {
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: var(--c);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
}

.why-phone:hover {
  color: var(--yd);
}

@media (max-width: 900px) {
  .why-header-in {
    grid-template-columns: 1fr;
  }

  .why-header-right {
    align-items: flex-start;
  }

  .why-sub {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .why-flip {
    height: 340px;
  }

  .why-pager {
    display: none;
  }

  .why-mob-nav {
    display: flex;
  }
}

.usp-wrap {
  width: 80%;
  position: relative;
  margin: 3em auto 2em 0;
}

.usp-wrap .col-lg-4 {
  padding: 0 .59%;
}

.usp-blk {
  position: relative;
  padding: 2em;
  text-align: center;
  height: 29em;
  font-size: .9em;
  border: 1px solid #0000002e !important;
  transition: all .3s ease-in-out;
  background: #edffff;
}

.usp-blk span {
  color: #65ee62;
  font-size: 6em;
  position: relative;
  z-index: 1;
}

.usp-blk span:after {
  content: "";
  position: absolute;
  top: -0.15em;
  left: 0;
  width: 100%;
  height: 1.3em;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: center;
  background-size: 1.1em;
  opacity: 0.2;
}

.usp-label {
  font-size: 1.4em;
}

.usp-blk.box-3 {
  border: 1px solid #0000002e !important;
}

.section-5 {
  padding: 12% 4% 5% 4%;
  position: relative;
  z-index: 2;
  color: white;
  background-color: #1f2c5f;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.add-box {
  position: relative;
  padding: 0 1em;
  margin-top: 1%;
}

.add-header {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  font-size: 1.2em;
  padding-bottom: .5em;
  border-bottom: 1px solid #ffffff1c;
}

.service-list {
  overflow-y: scroll;
  height: 15em;
  margin-top: 3%;
  margin-left: 0rem;
  width: 99%;
  background: #f9f9f900;
  padding: 1% 0% 1% 2%;
  overflow-x: hidden;
  text-align: left;
}

.service-list li {
  font-size: 1em;
  list-style-type: none !important;
  position: relative;
}

.service-list li a span {
  color: #059dcf;
  position: relative;
  left: 0.2em;
  top: 0.14em;
  font-size: 1.2em;
}

.service-list li a {
  display: block;
  padding: 0.4em 0.2em 0.3em 0.5em;
  position: relative;
  transition: all .3s ease-in-out;
  color: white;
  border-left: .0em solid #65ee62;
  text-decoration: none;
}

.service-list li a:after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: -2.4em;
  height: 1.8em;
  width: 1.8em;
  background-size: 100%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: all .3s ease-in-out;
  background-repeat: no-repeat;
}

.service-list li a:hover {
  background-color: #ececec;
  color: #000000;
  padding: 0.4em 0.2em 0.3em 1.4em;
  border-left: 0.7em solid #65ee62;
}

.service-list li a:hover:after {
  left: 0.4em;
}

.service-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 49%);
  border-radius: 15px;
  background-color: #00000029;
}

.service-list::-webkit-scrollbar {
  width: 5px;
}

.service-list::-webkit-scrollbar-thumb {
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 3px rgb(0 0 0 / 36%);
  background-color: #000000;
}

.coupon {
  position: relative;
  border-radius: 0em;
  letter-spacing: 0.08em;
  color: #000000;
  text-align: center;
  padding: 2em 2em 2.9em 2em;
  width: 100%;
  margin: 1em auto;
  background-color: #f4d42b;
  outline: .3em dashed #000000;
  outline-offset: -1em;
}

.coupon .btn-primary {
  background-color: #000000;
  color: #ffffff !important;
}

.price {
  position: relative;
  font-size: 4.1em;
  color: #000000;
  margin: 0.2em 0;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}

.price span {
  font-size: .58em;
  color: #65ee62;
  position: relative;
  top: -.5em;
}

.price span:last-child {
  top: auto;
}

.coupon .btn {
  width: 95%;
  z-index: 233;
}

.offer {
  position: relative;
  color: #000000;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1.1;
  margin: .5em auto 0.8em auto;
}

.offer span {
  display: block;
  font-size: .5em;
}

.coupon p {
  font-size: 0.8em;
  text-transform: uppercase;
  margin-top: 3em;
  letter-spacing: 0.03em;
}

.section-6 {
  position: relative;
  padding: 5% 6% 2% 6%;
  background-size: 100%;
  background-position: 100% 160%;
  z-index: 3;
  background-repeat: no-repeat;
}

.section-7 {
  position: relative;
  padding: 4% 7%;
  background-position: center;
  background-size: cover;
}

.section-8 {
  padding: 4% 0% 7% 4%;
  position: relative;
  z-index: 2;
  color: white;
}

.section-8 .map-side {
  padding: 0;
  position: relative;
}

.section-8 .map-side iframe {
  padding: 0;
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.section-8 .bullet-list li:after {
  content: "";
  color: #ffffff;
  font-size: 1.333em;
}

.service-areas {
  position: relative;
}

.service-areas-list {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: flex;
  list-style: none;
  padding: 10px;
  margin-top: 2em;
}

.service-areas-list {
  overflow-y: scroll;
  height: 13em;
  overflow-x: hidden;
  margin-left: 0rem;
}

#result-message {
  margin-top: .3em;
  display: block;
  font-weight: 900;
}

.service-areas-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 49%);
  border-radius: 15px;
  background-color: #00000029;
}

.service-areas-list::-webkit-scrollbar {
  width: 5px;
}

.service-areas-list::-webkit-scrollbar-thumb {
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 3px rgb(0 0 0 / 36%);
  background-color: #000000;
}

.service-areas-list li {
  position: relative;
  padding: 0.4em 0.3em 0.4em 0.2em;
  font-size: 1em;
  font-weight: 500;
  width: 48%;
  margin: 0.3em 0.2em;
  background: #172045ba;
  border-radius: 0.5em;
  transform: skew(-8deg, 0deg);
  color: #ffffff;
  text-transform: uppercase;
}

.service-areas-list li strong {
  display: block;
  padding-left: 1.6em;
}

.service-areas-list li a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.service-areas-list li:after {
  content: "";
  font-family: "icomoon" !important;
  position: absolute;
  top: 0.2em;
  left: 0.6em;
  color: #65ee62;
  font-size: 1.333em;
  border-radius: 50%;
  line-height: 1;
}

#profile-2 .service-areas-list li {
  padding-left: 0em;
}

#profile-2 .service-areas-list li  strong {
  padding-left: 2em;
}

.serv-list {
  width: 100%;
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  display: flex !important;
  list-style: none;
  padding: 10px;
  border-top: 1px solid #ffffff17;
  margin: auto !important;
}

.serv-list li {
  position: relative;
  padding: 0.2em 0em 0em 0em;
  font-size: 0.6em;
  font-weight: 500;
  width: 45% !important;
  font-style: normal !important;
}

.serv-list li:after {
  display: none;
}

.serv-list li a {
  color: #65ee62;
  text-decoration: none;
}

.serv-list li a:hover {
  color: #044ba1;
}

.section-8 .btn {
  max-width: 400px;
  margin: 1em 0 0 0;
}

.zip-check {
  position: relative;
  margin-top: 1em;
  font-size: 0.8em;
}

.search-subtitle {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

#zip-input {
  position: relative;
  background: #00000047;
  color: white;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
  padding: 0.1em 0.1em 0.5em 1.1em;
}

.zip-check button {
  position: relative;
  padding: .2em 1.4em;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  background: #65ee62;
  color: #000000;
}

.close-cta {
  font-size: 1.25em;
  padding: 2em 1.5em 2em 1.5em;
  position: relative;
  text-align: center;
  margin: 0rem 0 0rem;
  color: #000000;
  z-index: 2;
  border-top: 1px solid #ffffff24;
  background: #ffffff;
  width: 100%;
  font-weight: 700;
}

.close-cta:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3em;
  top: -1.6em;
  left: 0em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sched-row {
  position: relative;
  padding: 0;
  max-width: 1700px !important;
  margin: auto;
  box-shadow: 0em 0em 2em #00000000;
}

.sched-row.row>* {
  padding: 0;
}

.sched-row a, .sched-row button {
  color: white;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  padding: 2% 2% 3% 2%;
  transition: all .3s ease-in-out;
  letter-spacing: .06em;
  text-decoration: none;
  font-size: 0.9em;
  margin: 0;
  border-radius: 0em;
  position: relative;
  z-index: 1;
  background: #044ba1;
  width: 100%;
  border: 0;
}

.sched-row button.pop-button:before {
  transform: scale(1);
}

.sched-row button.pop-button {
  position: relative;
  color: #000000;
  background-color: #65ee62;
}

.sched-row button.pop-button:after {
  content: " ";
  position: absolute;
  bottom: 0em;
  height: 100%;
  z-index: -1;
  width: 100%;
  transition: all .3s ease-in-out;
  right: 0%;
}

.sched-row button.pop-button strong {
  text-shadow: none;
}

.sched-row button.pop-button span {
  color: black;
}

.sched-row a .column,.sched-row a .columns , .sched-row button .column,.sched-row button .columns {
  padding-left: 0rem;
  padding-right: 0rem;
}

.sched-row a strong, .sched-row button strong {
  letter-spacing: 0.03em;
  font-size: 2.2em;
  font-weight: 900;
  display: block;
  text-shadow: -0.1em 0.1em 0em #000000;
  margin-bottom: 0.3em;
}

.sched-row a span, .sched-row button span {
  display: block;
  text-align: center;
  font-size: 9em;
  position: relative;
  opacity: 1;
  line-height: 0.6;
  left: -0.1em;
}

.sched-row a:hover span, .sched-row button:hover span {
  -webkit-animation: tada 1s;
  animation: tada 1s;
}

.sched-row a:hover, .sched-row button:hover {
  background-color: #464646;
  color: #ffffff;
  cursor: pointer;
}

.site-footer {
  background-color: #ffffff !important;
  color: black !important;
  max-width: 1700px !important;
  margin: auto;
  box-shadow: 0em 0em 2em #000000;
  padding-bottom: 0em;
  padding-top: 1.2em;
}

.site-footer .bullet-list li:after {
  display: none;
}

.site-footer .bullet-list li {
  padding: 0.2em 0;
}

.site-footer .bullet-list li {
  width: 50%;
}

.logo-foot {
  text-align: center;
}

.logo-foot img {
  display: block;
  width: 14em;
  margin: 1em auto;
}

.logo-foot a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: black !important;
}

.schema {
  text-align: center;
}

.schema a {
  display: block;
  font-weight: 900;
}

.schema a:hover {
  color: #03a8e2 !important;
}

.footer-txt {
  text-align: center;
  color: #1f2c5f;
  letter-spacing: .03em;
  font-size: 1.2em;
  margin-top: 1em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.foot-links {
  text-align: center;
  font-size: .9em;
}

.help-link {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #0000001c;
  padding: 0.5em;
  text-align: center;
}

.help-links a {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #0000001c;
  padding: .5em;
}

.help-links a:hover {
  color: #03a8e2 !important;
}

.copyright {
  color: white;
  text-transform: uppercase;
  font-size: 0.7em !important;
  letter-spacing: .08em;
  padding: 1.1em 0em 0.8em 0em !important;
  max-width: none;
  width: 100%;
  background: #111111;
  margin-top: 2%;
  border-top: 1px solid #00000029;
}

.lic-numbner {
  text-transform: uppercase;
  font-size: .9em;
  letter-spacing: .08em;
}

.socialmedia {
  position: relative;
}

.socialmedia .navbar {
  position: relative;
  padding-left: 0rem;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.socialmedia .navbar a {
  color: #3f63c9 !important;
  font-size: 2em;
  text-decoration: none;
  padding: 0em 0.2em 0em 0.2em;
  margin: 0em 0em;
  display: block;
  text-align: center;
}

.socialmedia .navbar a span {
  line-height: 1.7;
}

.socialmedia .navbar a:hover {
  background-color: #b5201d00;
}

.socialmedia .navbar a:hover {
  color: #03a8e2 !important;
}

.schema-title {
  margin: 0.7em 0 0em 0 !important;
}

footer a {
  text-decoration: none;
}

#iphBanner.iph-wrap {
  position: relative;
  min-height: 580px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0C0C0C;
}

#iphBanner .iph-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#iphBanner .iph-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 6s ease;
}

#iphBanner .iph-bg-slide.iph-active {
  opacity: 1;
  transform: scale(1);
}

#iphBanner .iph-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12,12,12,.4) 0%,
    rgba(12,12,12,.55) 45%,
    rgba(12,12,12,.88) 78%,
    rgba(12,12,12,.97) 100%
  );
}

#iphBanner .iph-body {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

#iphBanner .iph-inner {
  padding: 72px 0 44px;
  width: 100%;
}

#iphBanner .iph-tag {
    display: inline-flex;
    align-items: center;
    font-family: Rajdhani, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgb(242, 169, 0);
    margin-bottom: 14px;
    opacity: 1;
    gap: 10px;
    animation: 0.5s ease 0.2s 1 normal forwards running iphFadeLeft;
}

#iphBanner .iph-tag-line {
    display: block;
    width: 28px;
    height: 2px;
    transform-origin: left center;
    background: rgb(242, 169, 0);
    animation: 0.5s ease 0.2s 1 normal forwards running iphLineGrow;
}

#iphBanner .iph-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: Oswald !important;
}

#iphBanner .iph-accord {
  position: relative;
  z-index: 5;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  gap: 3px !important;
  height: 130px !important;
  flex-shrink: 0;
}

#iphBanner .iph-panel {
  position: relative;
  display: flex !important;
  flex-direction: column;
  flex: 1 1 0 !important;
  min-width: 0;
  width: auto !important;
  height: 130px !important;
  overflow: hidden;
  cursor: pointer;
  background: rgba(12,12,12,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 3px solid transparent;
  transition: flex .6s cubic-bezier(.77,0,.18,1), border-color .35s, background .35s;
}

#iphBanner .iph-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(242,169,0,.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

#iphBanner .iph-panel.iph-active::before {
  opacity: 1;
}

#iphBanner .iph-panel.iph-active {
  display: flex !important;
  flex: 3.5 1 0 !important;
  border-top-color: #F2A900;
  background: rgba(14,14,14,.92);
}

#iphBanner .iph-panel-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
}

#iphBanner .iph-panel-icon {
  width: 40px;
  height: 40px;
  background: rgba(242,169,0,.1);
  border: 1px solid rgba(242,169,0,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .35s, border-color .35s, transform .35s;
}

#iphBanner .iph-panel.iph-active .iph-panel-icon {
  background: #f4d42b;
  border-color: #F2A900;
  transform: scale(1.05);
}

#iphBanner .iph-panel-icon i,
#iphBanner .iph-panel-icon svg {
  color: #f4d42b;
  fill: currentColor;
  font-size: 1rem;
  transition: color .35s, fill .35s;
}

#iphBanner .iph-panel.iph-active .iph-panel-icon i,
#iphBanner .iph-panel.iph-active .iph-panel-icon svg {
  color: #0C0C0C;
  fill: currentColor;
}

#iphBanner .iph-panel-title {
  font-family: Oswald !important;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .35s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#iphBanner .iph-panel.iph-active .iph-panel-title {
  color: #FFFFFF;
}

#iphBanner .iph-panel-chev {
  margin-left: auto;
  color: rgba(255,255,255,.2);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .4s, color .3s;
}

#iphBanner .iph-panel.iph-active .iph-panel-chev {
  transform: rotate(180deg);
  color: #F2A900;
}

#iphBanner .iph-panel-body {
  padding: 0 22px 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  flex: 1;
  overflow: hidden;
}

#iphBanner .iph-panel.iph-active .iph-panel-body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: .15s;
}

#iphBanner .iph-panel-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}

#iphBanner .iph-panel-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #F2A900;
  width: 0%;
  opacity: 0;
  transition: width linear;
}

#iphBanner .iph-panel.iph-active .iph-panel-timer {
  opacity: .5;
}

#iphBanner .iph-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 6;
  display: flex;
  gap: 7px;
  padding: 0 24px 16px;
  pointer-events: none;
}

#iphBanner .iph-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .4s, transform .4s;
}

#iphBanner .iph-dot.iph-active {
  background: #F2A900;
  transform: scale(1.3);
}

#iphBanner .iph-mob-nav {
  display: none !important;
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 7;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

#iphBanner .iph-mob-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}

#iphBanner .iph-mob-btn:hover {
  background: rgba(242,169,0,.2);
  border-color: #F2A900;
}

@media (min-width: 768px) {
  #iphBanner .iph-accord {
    flex-direction: row !important;
    height: 130px !important;
  }

  #iphBanner .iph-panel {
    display: flex !important;
    flex: 1 1 0 !important;
    width: auto !important;
    height: 130px !important;
  }

  #iphBanner .iph-panel.iph-active {
    display: flex !important;
    flex: 3.5 1 0 !important;
  }

  #iphBanner .iph-mob-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #iphBanner.iph-wrap {
    min-height: 520px !important;
  }

  #iphBanner .iph-title {
    font-size: 2.2rem !important;
  }

  #iphBanner .iph-accord {
    flex-direction: column !important;
    gap: 0 !important;
    height: 130px !important;
  }

  #iphBanner .iph-panel {
    flex: none !important;
    display: none !important;
    width: 100% !important;
    height: 130px !important;
  }

  #iphBanner .iph-panel.iph-active {
    display: flex !important;
  }

  #iphBanner .iph-mob-nav {
    display: flex !important;
  }

  #iphBanner .iph-dots {
    padding-right: 62px;
  }
}

.banner-head {
  position: relative;
  color: #000000 !important;
  letter-spacing: .12em;
  font-size: 1.9em;
  text-transform: uppercase;
  z-index: 2;
  padding-left: 0.5em;
  border-radius: 0em;
  width: 55%;
}

.banner-head:after {
  content: "";
  position: absolute;
  left: -0.3em;
  top: 0em;
  background: #000000;
  border-radius: 90em;
  width: .25em;
  height: 100%;
}

.extra-pad {
  padding: 0 5%;
}

.wp-video {
  margin: auto;
}

#breadcrumbs {
  border-bottom: solid 1px rgba(0, 0, 0, 0.18);
  color: black;
  z-index: 999;
  position: relative;
  margin-bottom: 0px;
  margin-right: auto;
  margin-top: 30px;
  padding: 0% 2% 1.8% 1%;
}

#breadcrumbs a {
  color: #000000;
  font-weight: 900;
  text-decoration: none;
}

#breadcrumbs .icon-home {
  font-size: 1.2em;
  border-right-width: thin;
  border-right-style: solid;
  border-right-color: rgba(0, 0, 0, 0.2);
  padding: 1em;
  margin-right: 12px;
  color: #1e2c5f;
}

.inside-section-3 h2, .inside-section-4 h2 {
  font-size: 2em;
  font-weight: 900;
}

.inside-section-4 h2 {
  color: #343434;
  text-align: center;
}

.inside-section-3.careers-padding {
  margin-top: 15%;
}

.inside-section-3 {
  position: relative;
  background-color: #ebebeb;
  padding: 6% 7% 4% 7%;
  color: #000000;
  z-index: 9;
}

.inside-section-3:after {
  content: "";
  position: absolute;
  top: -6em;
  left: 0;
  width: 100%;
  height: 7em;
  transform: scale(-1,-1);
  background-size: 100%;
  background-repeat: no-repeat;
}

.inside-section-3 blockquote:before {}

.inside-section-3 h2 {
  color: #373737;
}

.inside-section-3 .accordion-button,.inside-section-4  .accordion-button {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  background-color: #1f2c5f;
  letter-spacing: .08em;
}

.inside-section-3 .accordion-item, .inside-section-4 .accordion-item {
  background-color: #e9e9e9;
  color: #070707;
}

.inside-section-3 .accordion-button:not(.collapsed),.inside-section-4 .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #044ba1;
}

.inside-section-3 .accordion,.inside-section-4 .accordion {
  margin-bottom: 2em;
}

.inside-section-4 {
  position: relative;
  background-color: #ffffff;
  padding: 3% 7% 6% 7%;
  color: black;
}

.faq-item {
  background: var(--wh);
  border: 1px solid var(--gr3);
  border-radius: var(--rad);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow .3s,border-color .3s;
}

.faq-item:hover {
  box-shadow: var(--sh);
}

.faq-item.open {
  border-color: var(--g);
  box-shadow: var(--shlg);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}

.faq-trigger:hover {
  background: var(--gr);
}

.faq-item.open .faq-trigger {
  background: var(--glt);
}

.faq-q {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.4;
  flex: 1;
  font-family: var(--oswald);
}

.faq-item.open .faq-q {
  color: var(--gdk);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gr3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s,transform .4s;
}

.faq-item.open .faq-icon {
  background: var(--g);
  transform: rotate(45deg);
}

.faq-icon i {
  color: var(--wh);
  font-size: .7rem;
}

.faq-item.open .faq-icon i {
  color: var(--tx);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.77,0,.18,1);
}

.faq-item.open .faq-body {
  max-height: 700px;
}

.faq-body-inner {
  padding: 0 22px 22px;
}

.faq-body-inner p {
  font-size: .9rem;
  color: var(--mt);
  line-height: 1.72;
  margin-bottom: 10px;
}

.faq-body-inner p:last-child {
  margin-bottom: 0;
}

.emp-form {
  position: relative;
  padding: 6% 5% 3% 5%;
  background-color: #ebebeb;
  border-radius: 1em;
  margin: 1em auto 3em auto;
  width: 85%;
}

.emp-form .with_frm_style .vertical_radio .frm_checkbox label, .emp-form .with_frm_style .vertical_radio .frm_radio label {
  color: #fff;
}

.emp-form .frm_style_formidable-style-2.with_frm_style input[type=submit] {
  display: block;
  width: 100%;
  padding: 1em 0em;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 1.1em;
  background-color: #03a8e2;
  color: white;
  border: 0;
  box-shadow: none;
}

.emp-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #383838;
  font-size: 1.5em;
  margin-bottom: .8em;
}

blockquote {
  font-size: 1.22em !important;
  margin-top: 35px !important;
  width: 95%;
  border-left: aliceblue;
  position: relative;
  padding: 1em 4em 1em 2.5em !important;
  margin: 4% 1% 6% 1% !important;
  z-index: 9;
  color: #000000 !important;
}

blockquote, blockquote p {
  line-height: 1.6;
  margin-bottom: 0em;
  color: #000000 !important;
}

blockquote:before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0em;
  height: 100%;
  width: 100%;
  transition: all .3s ease-in-out;
  z-index: -01;
  background-color: #f4d42b;
  border-top-right-radius: 0em;
  border-radius: 0em;
  border-top-left-radius: 0em;
  border-bottom-left-radius: 0em;
  border-left: 0.8em solid #000000;
  border-top: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}

blockquote a {
  color: #3f63c9;
  text-decoration: none;
}

blockquote a:hover {
  color: #ffffff;
}


.inside-content h1 {
  margin-bottom: -1px;
  color: #163776;
  font-weight: 900;
  font-size: 2.5em;
}

.inside-content h1 strong {
  color: #3f6fa6;
}

.inside-content h1 span {
  display: block;
  font-size: .6em;
  font-family: "Poppins";
  font-weight: normal;
  color: white;
}

.inside-content h2 em {
  font-size: .8em;
  font-family: "Poppins";
  font-weight: normal;
  font-style: normal;
}

.inside-content h2 {
  color: #313131;
  font-weight: 900;
  font-size: 2em;
}

.inside-content h3 {
  color: #184ba1;
  font-weight: 900;
  font-size: 1.4em;
}

.inside-content h5 {
  font-size: 1.3em;
}

.coup-page {
  position: relative;
  padding-bottom: 7%;
}

.coup-page .text-highlight {
  margin-bottom: 3em;
}

.coup-page .col-lg-6 {
  margin: 0em  0 2.5em 0 !important;
}

.rev-sec-in {
  padding: 1em 2em 1em 2em !important;
}

.inside-section {
  background-color: #000;
  padding-bottom: 7em !important;
}

#sidebar1 .price {
  font-size: 3em;
}

#sidebar1 .offer {
  font-size: 1.1em;
  color: #fff;
}

#sidebar1 .coupon a {
  display: block;
  font-size: 0.8em;
}

:root {
  --g: #f4d42b;
  --gdk: #C98D00;
  --glt: #FFF8E1;
  --glt2: #FFF0CC;
  --dk: #111111;
  --dk2: #1C1C1C;
  --wh: #FFFFFF;
  --gr: #000000;
  --gr3: #E2E2E2;
  --gr4: #CCCCCC;
  --tx: #222222;
  --mt: #666666;
  --rad: 8px;
  --sh: 0 2px 12px rgba(0,0,0,.07);
  --shlg: 0 6px 32px rgba(0,0,0,.10);
}

.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease,transform .6s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.s1 {
  padding: 56px 0 64px;
  background: var(--wh);
}

.s1-left {
  padding-right: 36px;
}

.slabel {
  font-family: "Rajdhani",sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gdk);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.slabel::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gr3);
}

.pg-h {
  font-family: "Barlow Condensed",sans-serif;
  font-size: clamp(1.7rem,3.5vw,2.5rem);
  font-weight: 800;
  color: var(--dk);
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.05;
  margin: 0 0 6px;
}

.gold-rule {
  width: 44px;
  height: 3px;
  background: var(--g);
  border-radius: 2px;
  margin-bottom: 18px;
}

.body-p {
  font-size: .95rem;
  color: var(--mt);
  line-height: 1.75;
  margin-bottom: 14px;
}

.city-note {
  font-size: .85rem;
  color: var(--mt);
  line-height: 1.6;
  margin: 8px 0 16px;
}

.bullet-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.bullet-list li{
  width: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--mt);
  padding: 3px 0;
}


.bullet-list li a{
color:#000;
}

.bullet-list li a:hover{color: #f5c518;}

.bullet-list li::before{
  content: '\f26e';
  font-family: 'bootstrap-icons';
  color: var(--g);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 768px){
  .bullet-list li{
    width: 100%;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: cl;
  margin-bottom: 20px;
}

.check-list li {
  counter-increment: cl;
  position: relative;
  padding: 14px 16px 14px 72px;
  background: var(--wh);
  border: 1px solid var(--gr3);
  border-left: 3px solid transparent;
  border-radius: var(--rad);
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.6;
  cursor: default;
  transition: border-color .25s,border-left-color .25s,box-shadow .25s,transform .25s;
}

.check-list li:hover {
  border-color: var(--g);
  border-left-color: var(--g);
  box-shadow: var(--sh);
  transform: translateX(4px);
}

.check-list li::before {
  content: counter(cl,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gr3);
  border-right: 1px solid var(--gr3);
  transition: color .25s;
}

.check-list li:hover::before {
  color: rgba(242,169,0,.35);
}

.check-list li strong {
  font-weight: 700;
  color: var(--tx);
}

.check-list li strong::before {
  content: "";
  font-family: "bootstrap-icons";
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--glt);
  border: 1px solid var(--glt2);
  border-radius: 4px;
  color: var(--gdk);
  font-size: .58rem;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: background .25s,color .25s,border-color .25s;
}

.check-list li:hover strong::before {
  background: var(--g);
  border-color: var(--g);
  color: var(--tx);
}

.check-list.why-card {
  gap: 0;
  border: 1px solid var(--gr3);
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--sh);
}

.check-list.why-card li {
  border-radius: 0;
  border: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--gr3);
}

.check-list.why-card li:last-child {
  border-bottom: none;
}

blockquote {
  background: var(--g);
  padding: 15px 20px;
  border-radius: 6px;
  margin: 20px 0 0;
  border: none;
}

blockquote p {
  margin: 0;
  font-size: .9rem;
  color: var(--dk);
  font-weight: 500;
}

blockquote a {
  color: var(--dk);
  font-weight: 700;
  text-decoration: underline;
}

.sidebar {
  position: relative;
  align-self: flex-start;
}

#sidebar1 {
  position: relative;
}

.sbar {
  background: var(--wh);
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shlg);
  border: 1px solid var(--gr3);
  margin-top: 22px;
}

.sbar-promo {
  background: var(--dk);
  padding: 22px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sbar-promo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g);
}

.sbar-badge {
  display: inline-block;
  background: var(--g);
  color: var(--dk);
  font-family: "Barlow Condensed",sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  padding: 9px 18px 6px;
  border-radius: 6px;
  margin-bottom: 7px;
  letter-spacing: -1px;
}

.sbar-promo p {
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.sbar-coupon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wh);
  color: var(--dk);
  font-family: "Rajdhani",sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px dashed var(--g);
  transition: background .2s,color .2s,transform .2s,box-shadow .2s;
}

.sbar-coupon-btn:hover {
  background: var(--g);
  color: var(--dk);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(242,169,0,.35);
}

.sbar-coupon-btn .bi-scissors {
  font-size: .85rem;
  color: var(--gdk);
  transition: color .2s;
}

.sbar-coupon-btn:hover .bi-scissors {
  color: var(--dk);
}

.sbar-coupon-btn .bi-arrow-right {
  font-size: .75rem;
  transition: transform .2s;
}

.sbar-coupon-btn:hover .bi-arrow-right {
  transform: translateX(3px);
}

.sbar-coupon-exp {
  display: block;
  font-size: .65rem;
  color: rgb(255 255 255);
  letter-spacing: 1px;
  margin-top: 9px;
  font-style: italic;
}

.sbar-form {
  padding: 0;
}

.hl-app .btn-dark {
  background-color: #000 !important;
  color: #fff;
}

.sbar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dk2);
  color: var(--wh) !important;
  text-decoration: none;
  padding: 12px;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-top: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
  text-align: center;
}

.sbar-call i {
  color: #f4d42b;
}

.sbar-call:hover {
  background: #111;
  color: var(--wh);
}

.sbar-trust {
  padding: 11px 20px;
  background: var(--gr);
  border-top: 1px solid var(--gr3);
  display: flex;
  justify-content: space-between;
}

.sbar-trust-i {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #888;
}

.sbar-trust-i i {
  color: var(--g);
  font-size: .78rem;
}

.sbar-privacy {
  text-align: center;
  font-size: .65rem;
  color: #aaa;
  padding: 5px 20px 9px;
  background: var(--gr);
  margin-bottom: 0;
}


.schemaa {
  text-decoration: none;
}

.post-thumbnailimg {
  position: relative;
  padding: 0 !important;
  margin: auto;
  display: block;
}

body .button:focus, body .button:hover {
  background-color: #c2a613;
  color: #000000;
}

.single-blogimg {
  padding: 5%;
}

.single-blog .nav-linksa {
  display: block;
  background: #f43b3b;
  color: white;
  transition: all .3s ease-in-out;
  padding: 2% 5% !important;
  margin-bottom: 7%;
}

.single-blog .nav-linksa:hover {
  background: black !important;
}

.logo-imageimg {
  position: relative;
  width: 18em;
  display: block;
  margin: auto;
  transition: all .3s ease-in-out;
  left: -0.8em;
  z-index: -2;
}

.logo-imagea {
  position: relative;
  display: block;
  transform: scale(1);
}

.smallbar .logo-imageimg {
  width: 11em;
}

.contact-infostrong {
  position: relative;
  font-size: 0.9em;
  font-weight: 400;
  color: #0a05e4;
  letter-spacing: .04em;
  top: .1em;
  display: block;
}

.contact-infospan {
  position: relative;
  top: 0.1em;
}

.contact-infoa:hover {
  color: #137bbe;
}

.contact-infoa {
  font-size: 1.4em;
  display: block;
  background-color: #163776;
  width: 1.9em;
  border-radius: 23em;
  height: 1.9em;
  line-height: 2;
  color: #ffffff;
  margin: auto;
  transition: all .3s ease-in-out;
  text-align: center;
  text-decoration: none;
  outline: .1em solid #65ee61;
  outline-offset: -0.2em;
}

.mobile-nav .btn-primaryspan {
  display: block;
}

.shift-itema {
  display: block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .85em 0em .85em 1em;
  background: #ff000000;
  color: white;
  margin: 0em 0;
  border-bottom: 1px solid #ffffff1a;
  border-left: 0em solid #003046;
  transition: all .3s ease-in-out;
}

.shift-itema:hover {
  color: #ffffff;
  background-color: #163776;
  border-left: 0.5em solid #65ee62;
}

.shift-itema.sub-item {
  background: #0000005c;
}

.shift-itema.sub-item:hover {
  background-color: #163776;
}

.modal {
  z-index: 999999999999999999999999999999;
}

.section-protecte .modal-headerh5 {
  color: white !important;
}

.section-protecte .with_frm_style .frm_primary_label, .section-protecte .with_frm_style .frm_checkboxlabel {
  color: white;
}

.frm_style_formidable-style.with_frm_style .frm_submitbutton {
  width: 100% !important;
  display: block;
  background-color: #65ee62;
  color: black;
}

.modal-contentiframe {
  height: 46em !important;
}

.contact-info-deska {
  color: #030303;
  text-align: center;
  font-weight: 900;
  font-size: 2em;
  line-height: 1.1;
  margin-bottom: 0;
}

.contact-info-deska em {
  display: block;
  font-style: normal;
  font-size: .45em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--oswald);
}

.contact-info-deska span {
  color: #65ee62;
}

.top-barinput::-webkit-input-placeholder,.top-bar textarea::-webkit-input-placeholder {
  color: #fff !important;
}

.top-barinput:-moz-placeholder,.top-bar textarea:-moz-placeholder {
  color: #fff !important;
}

.search-barinput {
  background-color: #ffffff00;
  border: 0;
  color: white;
  border-bottom: 1px solid white;
}

.sub-menuli a {
  color: #030303 !important;
}

.sub-menua {
  padding: 5% 4% 5% 4%;
  display: block;
  color: #1d1d1d;
  font-size: .9em;
  transition: all .3s ease-in-out;
  border-bottom: 1px solid #00000014;
}

.sub-menua:hover {
  color: #ffffff;
  background: #e62318;
  padding: 5% 4% 5% 7%;
}

.double-column .sub-menu .full-suba {
  padding: 0.3em 0.6em 0.7em 0.6em;
  border-right: 1px solid #00000014;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.double-column .sub-menu .full-suba span {
  font-size: 1.8em;
  position: relative;
  top: 0.2em;
}

.double-column .sub-menua {
  padding: 0.9em 0.6em 0.9em 0.7em;
  border-right: 1px solid #00000014;
}

#offcanvasRight .offcanvas-header .btn-closei {
  display: block !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.oc3-cta-calli,
.oc3-cta-schedule i {
  font-size: .9rem !important;
}

div.mobile-nav .logo-image img,
  div.mobile-nav .logo-image .mobile-logo-img {
  height: var(--mh-logo-h) !important;
  width: auto !important;
  max-width: 560px !important;
  left: 0 !important;
  margin: 0 !important;
  z-index: 5 !important;
}

div.mobile-nav.smallbar .logo-image img {
  height: var(--mh-logo-h) !important;
  width: auto !important;
}

}


#site-wrap {
  max-width: 1700px;
  margin: auto;
  box-shadow: 0px 0px 2em rgba(181,193,199,.46);
}

.roof-ghostsvg {
  width: 100%;
  height: 100%;
}

.hero-bulletsli {
  font-family: var(--dm);
  font-size: .88rem;
  color: var(--sg);
  line-height: 1.65;
  padding: .14rem 0 .14rem 1.4rem;
  position: relative;
}

.hero-bulletsli::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--c);
  font-weight: 600;
  font-family: "icomoon" !important;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 2px solid var(--c);
  background: #000000;
  color: var(--w) !important;
  font-family: var(--oswald);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0px !important;
  border-radius: 7px;
  text-align: center;
}

.btn-estimate:hover {
  background: var(--yd);
  border-color: var(--yd);
}

.trust-textem {
  color: var(--y);
  font-style: normal;
}

.slide-imageimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rot-slideimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feat-smh3 {
  font-family: var(--oswald);
  font-size: .88rem;
  font-weight: 700;
  color: var(--c);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .35rem;
}

.feat-smp {
  font-family: var(--dm);
  font-size: .78rem;
  color: var(--sg);
  line-height: 1.7;
}

.mob-arr:disabled {
  background: rgb(0 0 0);
  color: rgb(255 255 255);
  cursor: default;
}

.formiframe {
  margin-top: .5em;
  height: 41em !important;
}

:root {
  --y: #f4d42b;
  --yd: #f4d038;
  --c: #111111;
  --w: #ffffff;
  --off: #f5f4f0;
  --sg: #555555;
  --oswald: "Oswald", sans-serif;
  --dm: "DM Sans", sans-serif;
}

.svc-ghostsvg {
  width: 100%;
  height: 100%;
}

.svc-cardh3 {
  transition: color .3s;
}

.svc-cardp {
  transition: color .3s;
}

.svc-icon-wrapspan {
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  font-size: 7em;
  display: block;
  width: 100%;
  text-align: center;
}

.badge-newspan {
  font-family: var(--oswald);
  font-size: .42rem;
  font-weight: 700;
  color: var(--c);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.svc-cardh3 {
  font-family: var(--oswald);
  font-size: .95rem;
  font-weight: 700;
  color: var(--c);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: .85rem;
  flex-shrink: 0;
}

.svc-cardp {
  font-family: var(--dm);
  font-size: .82rem;
  color: var(--sg);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.4rem;
}

.mob-dot.on {
  background: var(--y);
  width: 44px;
}

.mob-arr {
  width: 44px;
  height: 44px;
  background: rgb(0 0 0);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--w);
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.mob-progress {
  height: 3px;
  background: #f4d42b;
  overflow: hidden;
  margin-top: 14px;
}

.top-servicesa {
  position: relative;
  background-color: #fafafa00;
  color: #ffffff;
  display: block;
  z-index: 2;
  text-decoration: none;
  height: 16em;
  transition: all .3s ease-in-out;
  text-align: center;
  margin: 0em auto;
  font-size: .9em;
}

.top-servicesa:after {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0;
  border: 2px solid #65ee62;
  width: 100%;
  height: 100%;
  transform: skew(-8deg);
  z-index: -1;
}

.top-servicesa span {
  display: block;
  font-size: 6.5em;
  position: absolute;
  top: 0.39em;
  right: -0.1em;
  transition: all .3s ease-in-out;
  width: 100%;
  color: #ffffff;
}

.top-servicesa span:after {
  content: "";
  position: absolute;
  top: -0.15em;
  left: 0;
  width: 100%;
  height: 1.3em;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: center;
  background-size: 1.1em;
}

.top-servicesa svg {
  width: 6em;
  height: 6em;
  position: relative;
  top: 0.6em;
  transition: all .3s ease-in-out;
}

.top-servicesa svg path {
  transition: all .3s ease-in-out;
  fill: #0056a6;
}

.top-servicesp {
  position: absolute;
  bottom: -10em;
  padding: 2em 1.5em 2em 1.5em;
  font-size: 0.8em;
  left: 0;
  transition: all .3s ease-in-out;
  opacity: 0;
}

.top-servicesa:hover {
  color: #000000;
}

.top-servicesa:hover:after {
  background: #65ee62;
}

.top-servicesa:hover span {
  opacity: 0;
  top: 0em;
}

.top-servicesa:hover svg {
  width: 2em;
  height: 2em;
  right: 0.3em;
  opacity: 0;
  top: 0em;
}

.top-servicesa:hover svg path {
  fill: #000;
}

.top-servicesa:hover .servi-label {
  bottom: 75%;
  text-shadow: none;
  left: 1em;
}

.top-servicesa:hover .servi-label strong {
  color: black;
}

.top-servicesa:hover p {
  opacity: 1;
  left: 1.3em;
  bottom: 0em;
  padding: 2em 0.7em 2em 0.5em;
}

:root {
  --y: #F5C518;
  --ya: #F5C51822;
  --c: #1a1a1a;
  --off: #f4f4f2;
  --w: #ffffff;
}

.tagspan {
  font-family: "Oswald", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c);
}

.sa-lefth2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.sa-lefth2 em {
  font-style: normal;
  color: var(--y);
}

.sa-leftp {
  font-size: .9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  margin-top: .4rem;
  background: #f4d42b;
  color: var(--c);
  font-family: "Oswald", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  transition: all .25s;
  align-self: flex-start;
  border-radius: 7px;
}

.img-topimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.img-thumbimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

:root {
  --y: #f4d038;
  --yd: #f4d038;
  --ya: rgba(245,197,24,.12);
  --c: #1a1a1a;
  --sg: #767676;
  --sl: #aaa;
  --w: #fff;
  --off: #fafaf8;
  --off2: #f2f2ee;
  --bdr: rgba(0,0,0,.09);
  --bdr2: rgba(0,0,0,.16);
}

.review-sec .tagspan {
  color: #f5c518;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sec-titleem {
  color: #f5c518;
  font-style: normal;
}

#s2 .sec-titleem {
  color: var(--c);
  font-style: normal;
}

.btn-c {
  background: var(--y);
  color: var(--c);
  border-color: var(--c);
}

.ba-clipimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  display: block;
}

.ba-handlesvg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.ba-si:last-child {
  border-right: none;
  background: var(--y);
}

.pill-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #000;
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 44px;
}


.pill-btn:hover {
  color: #ffffff;
}



.pill-btni {
  color: var(--gr4);
  font-size: .88rem;
  transition: color .3s;
}

.pill-btn.acti {
  color: var(--g);
}

.mob-lblspan {
  color: var(--g);
}

.cpn-badgespan {
  font-family: "Oswald",sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--y);
}

.cpn-v {
  font-family: "Oswald",sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--y);
  line-height: 1;
  transition: opacity .3s,transform .3s;
}

.cpn-fine {
  font-size: .72rem;
  color: var(--sg);
  margin-bottom: 1.8rem;
  transition: opacity .3s,transform .3s;
}

.cpn-list-hdrspan {
  font-family: "Oswald",sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sg);
}

.cpn-list-hdrstrong {
  font-family: "Oswald",sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--c);
}

.b-cta-call {
  background: var(--y);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 36px 8%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  height: 100%;
}

.b-cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform .35s;
}

.b-brand-namespan {
  color: var(--y);
}

.b-lici {
  color: var(--y);
}

.b-addrstrong {
  color: var(--c);
  font-weight: 500;
}

.b-addra {
  color: var(--yd);
  text-decoration: none;
  transition: color .2s;
}

.b-addra:hover {
  color: var(--c);
}

.b-soc-btni {
  font-size: 1rem;
}

.b-soc-btnspan {
  font-family: var(--oswald);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.b-foot-copya {
  color: rgba(255,255,255,.25);
  text-decoration: none;
}

.b-foot-copya:hover {
  color: var(--y);
}

.b-foot-linksa {
  font-family: var(--oswald);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  text-decoration: none;
  padding: 0 .9rem;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}

.b-foot-linksa:last-child {
  border-right: none;
  padding-right: 0;
}

.b-foot-linksa:hover {
  color: var(--y);
}

.b-cta-main {
  font-size: 2rem;
}

.b-foot-bar .d-flex {
  flex-direction: column;
  text-align: center;
  gap: .8rem;
}

.b-foot-links {
  justify-content: center;
}

.b-foot-copy {
  text-align: center;
}

}



:root {
  --y: #F5C518;
  --yd: #c89f00;
  --ya: rgba(245,197,24,.13);
  --yb: rgba(245,197,24,.06);
  --c: #111111;
  --c2: #1a1a1a;
  --c3: #222;
  --w: #ffffff;
  --off: #f7f7f4;
  --off2: #efefea;
  --sg: #6a6a6a;
  --sm: #aaa;
  --bdo: rgba(0,0,0,.08);
  --bdos: rgba(0,0,0,.14);
  --bebas: "Bebas Neue",display;
  --oswald: "Oswald",sans-serif;
  --dm: "DM Sans",sans-serif;
}

.why-header {
  position: relative;
  z-index: 9;
  background: var(--c);
  padding: 72px 3% 64px;
  overflow: hidden;
}

.why-hem {
  color: var(--y);
  font-style: normal;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  font-family: var(--oswald);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--y);
  color: #000;
  border: 2px solid var(--y);
  transition: all .3s;
  white-space: nowrap;
  border-radius: 7px;
}

.why-cta-out {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.why-footer-copystrong {
  color: var(--c);
}

.usp-blkspan {
  color: #65ee62;
  font-size: 6em;
  position: relative;
  z-index: 1;
}

.usp-blkspan:after {
  content: "";
  position: absolute;
  top: -0.15em;
  left: 0;
  width: 100%;
  height: 1.3em;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: center;
  background-size: 1.1em;
  opacity: 0.2;
}

.service-listli {
  font-size: 1em;
  list-style-type: none !important;
  position: relative;
}

.service-listli a span {
  color: #059dcf;
  position: relative;
  left: 0.2em;
  top: 0.14em;
  font-size: 1.2em;
}

.service-listli a {
  display: block;
  padding: 0.4em 0.2em 0.3em 0.5em;
  position: relative;
  transition: all .3s ease-in-out;
  color: white;
  border-left: .0em solid #65ee62;
  text-decoration: none;
}

.service-listli a:after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: -2.4em;
  height: 1.8em;
  width: 1.8em;
  background-size: 100%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: all .3s ease-in-out;
  background-repeat: no-repeat;
}

.service-listli a:hover {
  background-color: #ececec;
  color: #000000;
  padding: 0.4em 0.2em 0.3em 1.4em;
  border-left: 0.7em solid #65ee62;
}

.service-listli a:hover:after {
  left: 0.4em;
}

.coupon {
  position: relative;
  border-radius: 0em;
  letter-spacing: 0.08em;
  color: #000000;
  text-align: center;
  padding: 2em 2em 2.9em 2em;
  width: 100%;
  margin: 1em auto;
  background-color: #f5c518;
  outline: .3em dashed #000000;
  outline-offset: -1em;
}

.pricespan {
  font-size: .58em;
  color: #65ee62;
  position: relative;
  top: -.5em;
}

.pricespan:last-child {
  top: auto;
}

.offerspan {
  display: block;
  font-size: .5em;
}

.couponp {
  font-size: 0.8em;
  text-transform: uppercase;
  margin-top: 3em;
  letter-spacing: 0.03em;
}

.section-8 {
  padding: 4% 0% 7% 4%;
  position: relative;
  z-index: 2;
  color: white;
  background-position: top;
  background-color: #1f2c5f;
  background-repeat: no-repeat;
  border-top: .5em solid #044ba1;
  border-bottom: .5em solid #044ba1;
}

.section-8 .map-side:after {
  content: "";
  position: absolute;
  right: 2%;
  top: 0;
  width: 100%;
  height: 99%;
  background: #044ba1;
  z-index: -1;
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.section-8 .map-sideiframe {
  padding: 0;
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.section-8 .bullet-listli:after {
  content: "";
  color: #ffffff;
  font-size: 1.333em;
}

.service-areas-listli {
  position: relative;
  padding: 0.4em 0.3em 0.4em 0.2em;
  font-size: 1em;
  font-weight: 500;
  width: 48%;
  margin: 0.3em 0.2em;
  background: #172045ba;
  border-radius: 0.5em;
  transform: skew(-8deg, 0deg);
  color: #ffffff;
  text-transform: uppercase;
}

.service-areas-listli strong {
  display: block;
  padding-left: 1.6em;
}

.service-areas-listli a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.service-areas-listli:after {
  content: "";
  font-family: "icomoon" !important;
  position: absolute;
  top: 0.2em;
  left: 0.6em;
  color: #65ee62;
  font-size: 1.333em;
  border-radius: 50%;
  line-height: 1;
}

#profile-2 .service-areas-listli {
  padding-left: 0em;
}

#profile-2 .service-areas-listli  strong {
  padding-left: 2em;
}

.serv-listli {
  position: relative;
  padding: 0.2em 0em 0em 0em;
  font-size: 0.6em;
  font-weight: 500;
  width: 45% !important;
  font-style: normal !important;
}

.serv-listli:after {
  display: none;
}

.serv-listli a {
  color: #65ee62;
  text-decoration: none;
}

.serv-listli a:hover {
  color: #044ba1;
}

.zip-checkbutton {
  position: relative;
  padding: .2em 1.4em;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  background: #65ee62;
  color: #000000;
}

.sched-rowa, .sched-row button {
  color: white;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  padding: 2% 2% 3% 2%;
  transition: all .3s ease-in-out;
  letter-spacing: .06em;
  text-decoration: none;
  font-size: 0.9em;
  margin: 0;
  border-radius: 0em;
  position: relative;
  z-index: 1;
  background: #044ba1;
  width: 100%;
  border: 0;
}

.sched-rowbutton.pop-button:before {
  transform: scale(1);
}

.sched-rowbutton.pop-button {
  position: relative;
  color: #000000;
  background-color: #65ee62;
}

.sched-rowbutton.pop-button:after {
  content: " ";
  position: absolute;
  bottom: 0em;
  height: 100%;
  z-index: -1;
  width: 100%;
  transition: all .3s ease-in-out;
  right: 0%;
}

.sched-rowbutton.pop-button strong {
  text-shadow: none;
}

.sched-rowbutton.pop-button span {
  color: black;
}

.sched-rowa .column,.sched-row a .columns , .sched-row button .column,.sched-row button .columns {
  padding-left: 0rem;
  padding-right: 0rem;
}

.sched-rowa strong, .sched-row button strong {
  letter-spacing: 0.03em;
  font-size: 2.2em;
  font-weight: 900;
  display: block;
  text-shadow: -0.1em 0.1em 0em #000000;
  margin-bottom: 0.3em;
}

.sched-rowa span, .sched-row button span {
  display: block;
  text-align: center;
  font-size: 9em;
  position: relative;
  opacity: 1;
  line-height: 0.6;
  left: -0.1em;
}

.sched-rowa:hover span, .sched-row button:hover span {
  -webkit-animation: tada 1s;
  animation: tada 1s;
}

.sched-rowa:hover, .sched-row button:hover {
  background-color: #464646;
  color: #ffffff;
  cursor: pointer;
}

.site-footer .bullet-listli:after {
  display: none;
}

.site-footer .bullet-listli {
  padding: 0.2em 0;
}

.site-footer .bullet-listli {
  width: 50%;
}

.logo-footimg {
  display: block;
  width: 14em;
  margin: 1em auto;
}

.logo-foota {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: black !important;
}

.schemaa {
  display: block;
  font-weight: 900;
}

.schemaa:hover {
  color: #03a8e2 !important;
}

.help-linksa {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #0000001c;
  padding: .5em;
}

.help-linksa:hover {
  color: #03a8e2 !important;
}

.socialmedia .navbara {
  color: #3f63c9 !important;
  font-size: 2em;
  text-decoration: none;
  padding: 0em 0.2em 0em 0.2em;
  margin: 0em 0em;
  display: block;
  text-align: center;
}

.socialmedia .navbara span {
  line-height: 1.7;
}

.socialmedia .navbara:hover {
  background-color: #b5201d00;
}

.socialmedia .navbara:hover {
  color: #03a8e2 !important;
}

.iph-bg-slide:nth-child(1) {
  background-image: url("/wp-content/uploads/2026/03/slide1.jpg");
}

.iph-bg-slide:nth-child(2) {
  background-image: url("/wp-content/uploads/2026/03/slide2.jpg");
}

.iph-bg-slide:nth-child(3) {
  background-image: url("/wp-content/uploads/2026/03/slide3.jpg");
}

.iph-title {
  font-family: Oswald !important;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
  opacity: 1;
  animation: iphFadeLeft .7s .35s ease forwards;
}



from {
  opacity: 0;
  transform: translateX(-24px);
}

to {
  opacity: 1;
  transform: translateX(0);
}

}@keyframes iphLineGrow {}

.iph-wrap {
  min-height: 520px;
}

.iph-title {
  font-size: 2.2rem;
}

.iph-accord {
  flex-direction: column;
  gap: 0;
  height: auto;
}

.iph-panel {
  flex: none !important;
  display: none;
  width: 100%;
  height: 130px;
}

.iph-panel.iph-active {
  display: flex;
}

.iph-mob-nav {
  display: flex !important;
}

}


.banner-head {
  position: relative;
  color: #000000 !important;
  letter-spacing: .12em;
  font-size: 1.9em;
  text-transform: uppercase;
  z-index: 2;
  padding-left: 0.5em;
  border-radius: 0em;
  width: 55%;
}

#breadcrumbsa {
  color: #174aa2;
  font-weight: 900;
  text-decoration: none;
}

.inside-section-3h2, .inside-section-4 h2 {
  font-size: 2em;
  font-weight: 900;
}

.inside-section-4h2 {
  color: #343434;
}

.inside-section-3blockquote:before {}

.inside-section-3h2 {
  color: #373737;
}

.faq-q {
  font-size: .95rem;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.4;
  flex: 1;
}

.faq-iconi {
  color: var(--wh);
  font-size: .7rem;
}

.faq-item.open .faq-iconi {
  color: var(--tx);
}

.faq-body-innerp {
  font-size: .9rem;
  color: var(--mt);
  line-height: 1.72;
  margin-bottom: 10px;
}

.faq-body-innerp:last-child {
  margin-bottom: 0;
}

.emp-form .with_frm_style .vertical_radio .frm_checkboxlabel, .emp-form .with_frm_style .vertical_radio .frm_radio label {
  color: #fff;
}

.emp-form .frm_style_formidable-style-2.with_frm_styleinput[type=submit] {
  display: block;
  width: 100%;
  padding: 1em 0em;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 1.1em;
  background-color: #03a8e2;
  color: white;
  border: 0;
  box-shadow: none;
}



.inside-contenth1 {
  margin-bottom: -1px;
  color: #163776;
  font-weight: 900;
  font-size: 2.5em;
}

.inside-contenth1 strong {
  color: #3f6fa6;
}

.inside-contenth1 span {
  display: block;
  font-size: .6em;
  font-family: "Poppins";
  font-weight: normal;
  color: white;
}

.inside-contenth2 em {
  font-size: .8em;
  font-family: "Poppins";
  font-weight: normal;
  font-style: normal;
}

.inside-contenth2 {
  color: #313131;
  font-weight: 900;
  font-size: 2em;
}

.inside-contenth3 {
  color: #184ba1;
  font-weight: 900;
  font-size: 1.4em;
}

.inside-contenth5 {
  font-size: 1.3em;
}

#sidebar1 .coupona {
  display: block;
  font-size: 0.8em;
}

:root {
  --g: #F2A900;
  --gdk: #C98D00;
  --glt: #FFF8E1;
  --glt2: #FFF0CC;
  --dk: #111111;
  --dk2: #1C1C1C;
  --wh: #FFFFFF;
  --gr: #F8F8F8;
  --gr3: #E2E2E2;
  --gr4: #CCCCCC;
  --tx: #222222;
  --mt: #666666;
  --rad: 8px;
  --sh: 0 2px 12px rgba(0,0,0,.07);
  --shlg: 0 6px 32px rgba(0,0,0,.10);
}



.check-list li{
  counter-increment: cl;
  position: relative;
  padding: 14px 16px 14px 72px;
  background: var(--wh);
  border: 1px solid var(--gr3);
  border-left: 3px solid transparent;
  border-radius: var(--rad);
  font-size: .88rem;
  color: var(--mt);
  line-height: 1.6;
  cursor: default;
  transition: border-color .25s,border-left-color .25s,box-shadow .25s,transform .25s;
}

.check-listli:hover {
  border-color: var(--g);
  border-left-color: var(--g);
  box-shadow: var(--sh);
  transform: translateX(4px);
}

.check-listli::before {
  content: counter(cl,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed",sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gr3);
  border-right: 1px solid var(--gr3);
  transition: color .25s;
}

.check-listli:hover::before {
  color: rgba(242,169,0,.35);
}

.check-listli strong {
  font-weight: 700;
  color: var(--tx);
}

.check-listli strong::before {
  content: "";
  font-family: "bootstrap-icons";
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--glt);
  border: 1px solid var(--glt2);
  border-radius: 4px;
  color: var(--gdk);
  font-size: .58rem;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: background .25s,color .25s,border-color .25s;
}

.check-listli:hover strong::before {
  background: var(--g);
  border-color: var(--g);
  color: var(--tx);
}

.check-list.why-cardli {
  border-radius: 0;
  border: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--gr3);
}

.check-list.why-cardli:last-child {
  border-bottom: none;
}

.sbar-promop {
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.sbar-calli {
  color: var(--g);
}

.sbar-trust-ii {
  color: var(--g);
  font-size: .78rem;
}

.sbar-privacy {
  text-align: center;
  font-size: .65rem;
  color: #aaa;
  padding: 5px 20px 9px;
  background: var(--gr);
}

.side-label {
  text-align: center;
  font-family: var(--oswald);
  font-size: 2em;
  padding-top: 32px;
}

.pc-default {
  position: relative;
  padding: 2% 3%;
  background-size: cover;
  background-position: center;
}

.pc-default .accordion-button {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  background-color: #00488c;
  letter-spacing: .08em;
}

.pc-default .accordion-item {
  background-color: #efefef;
  color: #070707;
}

.pc-default .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #000000;
}

.pc-default .accordion {
  margin-bottom: 2em;
}

.pc-default .usp-box {
  position: relative;
  padding: 2em 2em;
  text-align: center;
  border: 1px solid #00000047;
  border-radius: .5em;
  margin: 1em auto;
  background: white;
}

.pc-defaulth2 {
  font-weight: 900;
}

.pc-default .usp-label {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pc-default .usp-boxspan {
  display: block;
  text-align: center;
  font-size: 4em;
  color: #0056a6;
}

.center-head {
  text-align: center;
  display: block;
}

.pc-defaulth1 {
  font-weight: 900;
  color: #0056a6;
}

.topsec {
  padding-bottom: 3em;
}

.section-faqsech2 {
  color: #00488c;
  font-weight: 900;
}

.pc-default .accordion-buttonh3 {
  margin: 0;
  color: white;
}

.column-section {
  position: relative;
  padding: 5% 5%;
}

.column-sectionstrong.highlight {
  font-size: 1.36em;
  font-style: italic;
  color: #000000;
  position: relative;
  font-weight: 500 !important;
  margin-top: 8px;
  padding-bottom: 3%;
  margin-bottom: 1em;
  line-height: 1.4 !important;
  display: block;
}

.column-sectionstrong.highlight:not(.no-line):after {
  content: " ";
  display: block;
  width: 159%;
  height: 4px;
  background-color: #4fc8e3;
  position: absolute;
  top: 95%;
  right: 20px;
}

.column-section  .btn-primary {
  max-width: 450px;
  margin-left: 0;
  color: white;
}

.column-sectionno {
  display: none;
}

.text-highlightp {
  margin-bottom: 0;
}

.column-sectionh1 {
  color: #414141;
  font-size: 2.6em;
  margin: 0em 0em -0.5em 0em;
}

.compressed-sec {
  padding: 5% 18%;
  background: #ededed;
}

.content-header {
  font-weight: 900;
  font-size: 1.2em;
  color: #ff601f;
}

.usp-box-section {
  position: relative;
  padding: 5% 5%;
  background: #ff5f1f;
}

.usp-box-section .usp-box {
  height: 23em;
  padding: 4em 1em 1em 1em;
}

.accordion-section {
  position: relative;
  padding: 2% 5%;
}

.accordion-section .accordion-button {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  background-color: #209ad6;
  letter-spacing: .08em;
}

.accordion-section .accordion-item {
  background-color: #272727;
  color: white;
}

.accordion-section .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #000000;
}

.accordion-section .accordion {
  margin-bottom: 2em;
}

.accordion-section .accordion-button::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.accordion-section .accordion-button:hover {
  background-color: #333a45;
  color: white !important;
}

.accordion-section .accordion-button:hover h2 {
  color: white;
}

.accordion-section .accordion-button:not(.collapsed)h2 {
  color: white;
}

.galler-section {
  position: relative;
  padding: 3% 5%;
}

.text-highlight {
  font-size: 1.36em;
  font-style: italic;
  color: #000000;
  position: relative;
  font-weight: 500 !important;
  margin-top: 8px;
  padding-bottom: 3%;
  margin-bottom: 39px;
  line-height: 1.4 !important;
}

.text-highlight:not(.no-line):after {
  content: " ";
  display: block;
  width: 159%;
  height: 4px;
  background-color: #184ba2;
  position: absolute;
  top: 99%;
  right: 20px;
}

.text-highlight2 {
  font-size: 1.25em;
  padding: 1.5em 3% 1.1em;
  position: relative;
  border-bottom: solid 1px #00000054;
  text-align: center;
  margin: 4.5rem 0 0.5rem 0em;
  color: #000000;
  font-weight: 900;
  text-wrap: balance;
}

.text-highlight2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right,#00000040 41.99%,#FFFFFB 42%,#FFFFFF 58.99%,#00000040 55%);
}

.text-highlight2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3.4em;
  background-size: 6.6em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  left: 0.2em;
  top: -2.15em;
}

.text-highlight2a {
  display: unset;
  color: #b00c03;
  transition: all .3s ease-in-out;
  transform: scale(1);
  position: relative;
  bottom: 0em;
}

.text-highlight2a:hover {
  font-size: 1.04em;
  bottom: 0.12em;
}









.error-page {
  padding: 11% 4% 6% 4%;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: black;
  margin-top: 9%;
  background-image: url(/wp-content/themes/plumberseo-bootstrap/inc/assets/images/ty-bgdss.jpg);
}

.error-page .inside-content {
  position: relative;
  padding-top: 0px;
  background-color: #00000059;
  padding: 7% 1% 4% 1%;
}

.error-page .error {
  font-size: 14em;
  font-weight: 900;
  color: #65ee62;
  position: relative;
  display: block;
  line-height: 0.8;
  letter-spacing: .03em;
  z-index: 2;
  margin-top: -2%;
  text-shadow: -4px 4px #373535;
  margin-bottom: 1%;
}

.error-page .inside-contenth1 {
  font-size: 4.2em;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-top: -0.2em;
}

.error-page .entry-content {
  font-size: 1.4em;
  padding: 0% 13%;
  position: relative;
  color: white;
}

.reroute-btns {
  padding: 0%;
  position: relative;
}

.reroute-btns .column,.reroute-btns .columns {
  padding-left: .3375rem;
  padding-right: .3375rem;
}

.reroute-btns .btn {
  width: 100%;
  font-size: 1.1em;
  box-shadow: 1px 1px 16px 8px #0000000f;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: 0;
  display: block;
  margin: .7em 0;
  border-radius: 900em;
  color: black;
}

.reroute-btns .btn:hover {
  background-color: #209ad6 !important;
  color: white !important;
  text-shadow: none;
}

.reroute-btnsspan {
  position: relative;
  top: 0.15em;
  font-size: 1.3em;
}

.single-blogul {
  margin-left: 2em !important;
}

.full-inner-max {
  padding-top: 2%;
  background: white;
  z-index: 11;
  position: relative;
}

.main-blog {
  position: relative;
}

.wa-intcode-cardstrong:first-child {
  display: none;
}

.main-bloga {
  text-decoration: none;
  color: #3f63c9 !important;
}

.main-blog .page-nav {
  position: relative;
  background-color: #efefef;
  padding: 1.5em;
  margin-bottom: 1em;
}

.main-blog .post-thumbnailimg {
  width: 100%;
  display: block;
}

.single-blog {
  position: relative;
  padding: 5% 15% 4% 15%;
}

.inside-contenta {
  color: #000000;
  text-decoration: none;
}

.inside-content .btn-primary {
  color: #000000;
}

.thank-you {
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  padding: 9% 1% 5% 1%;
  margin-top: 6%;
  z-index: 99;
  background-image: url(/wp-content/themes/plumberseo-bootstrap/inc/assets/images/ty-bgdss.jpg);
  position: relative;
}

.thank-you .bg-inner {
  text-align: center;
  position: relative;
  padding: 4.063rem 0 3.363rem 0;
  color: white;
}

.thank-you .bg-inner {
  width: 100%;
  max-width: 1100px !important;
  margin: 0 auto;
  position: relative;
}

.thank-you .bg-innerp {
  font-size: 1.5rem;
  line-height: 1.5em;
}

.thank-you .bg-innerh1 {
  margin: 0;
  color: #65ee62;
  font-weight: 900;
  font-size: 5.3rem;
  line-height: 1;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-shadow: -6px -1px .8em #2b2b2b;
}

.thank-you .bg-innerh1 strong {
  display: block;
  font-size: 1.847em;
  color: #fa4f41;
}

.thank-you .button {
  display: block;
  background-color: #f4d42b;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: .08em;
  color: #000000;
  text-decoration: none;
  padding: 0.65em 0em;
  margin: 0.7em 0;
  border-radius: 8px;
  font-family: "Fredoka", sans-serif !important;
}

.client-resp-wrap {
  padding: 0% 5%;
}

.client-response .entry-content {
  padding: 0% 7%;
}


.resp-box {
  border-top: 1px solid #00304624;
  font-weight: 100;
  position: relative;
  margin-top: 2%;
  border-bottom: 1px solid #00304624;
}

.resp-txt {
  font-weight: 900;
  font-size: 1.7em;
  letter-spacing: 0.03em;
  margin-bottom: 2%;
  line-height: 1.7;
  padding: 1% 5% 0% 5%;
}

.resp-box .btn {
  display: block;
  width: 80%;
  max-width: 440px;
  border-radius: 900em;
  border: 0;
  margin: auto;
}

.client-reviewimg {
  display: block;
  width: 90%;
  margin: auto;
}

.client-review .col-12img {
  max-width: 450px;
}

.client-review .row-cols-5 {
  padding: 0% 15%;
  margin-top: 2%;
}


  .sliderfull {
    margin-top: 15%;
  }

  .slider-header {
    font-size: 1.7em;
  }



  blockquote {
    padding: 3% 4% 3% 8% !important;
  }

  blockquote:after {
    display: none;
  }

  .error-page .inside-content h1 {
    font-size: 1.5em;
    margin-bottom: 0em;
  }

  .error-page .error {
    font-size: 8.1em;
  }

  .error-page .entry-content {
    font-size: 1em;
    padding: 0% 3%;
    margin-top: 0.1em;
  }

  .client-review {
    text-align: center;
    margin-top: 15%;
    padding: 22% 4% 5% 4%;
  }

  .client-review .row-cols-5 {
    padding: 0% 1%;
    margin-top: 2%;
  }

  .client-review .row-cols-5 .col {
    padding: 0.5%;
  }

  .client-review img, .client-review .btn {
    margin: auto;
    width: 100%;
  }

  .client-review h1 {
    font-size: 1.7em;
  }

  .client-response .bg-inner p {
    font-size: 1.1rem;
    padding: 0% 0%;
  }

  .client-response .bg-inner h1 {
    font-size: 1.9rem;
  }

  .thank-you .bg-inner h1 {
    font-size: 6.2rem;
    color: #fff;
  }

  .thank-you .button {
    margin: .5em 0;
  }

  .thank-you .bg-inner p {
    font-size: 1rem;
  }

 

  .inner-bottom {
    background-position: 100% 100%;
  }

  .inner-bottom .usp-wrap:after {
    display: none;
  }

  .inner-bottom .usp-wrap {
    width: 100%;
  }

  .insideimage .slider-usp .usp-box {
    font-size: 0.6em;
    padding: 5% 15%;
  }

  .single-blog {
    position: relative;
    padding: 12% 4% 4% 4%;
  }

  .insideimage {
    padding: 28% 4% 0% 4%;
    margin-top: 10.5%;
    border-bottom: 0.2em solid #1d1761;
    background-image: none;
  }

  .insideimage:after {
    width: 155%;
    border-radius: 0;
  }

  .insideimage:before {
    display: none;
  }

  .insideimage .slider-usp .usp-box {
    font-size: 0.5em;
  }

  .thank-you {
    padding: 15% 1% 5% 1%;
    margin-top: 0;
  }

  .banner-head {
    font-size: 1.1em;
  }

  .insideimage .col-lg-6 {
    padding-right: 35%;
  }

  .banner-head {
    font-size: 0.83em;
    width: 100%;
  }



 

  .logo-foot img {
    width: 19em;
  }

  .quick-nav.adjust {
    font-size: .9em;
    top: 4.7em;
  }

  .close-cta {
    font-size: 0.8em;
    padding: 6% 2% 3% 2%;
  }

  .sched-row a ,.sched-row button {
    padding: 3% 0% 3% 0%;
    font-size: 0.6em;
  }

  .resp-txt {
    font-size: 1em;
  }

  .client-response {
    padding: 17% 1% 7% 1%;
    margin-top: 14%;
  }

  .hide-for-small-only {
    display: none !important;
  }

  .error-page {
    padding: 13% 4% 6% 4%;
    margin-top: 18%;
  }

  .help-links a {
    text-align: center;
  }

  .side-form iframe {
    height: 64em !important;
  }

  .insideimage .slider-usp {
    width: 95%;
    margin-right: auto;
    right: 0;
    font-size: 0.7em;
    position: relative;
    margin-top: 1em;
    bottom: -2em;
  }

  .insideimage .slider-usp.row>* {
    padding: 0 1%;
  }

  .show-for-small-only {
    display: block !important;
  }

  .emp-info em {
    width: 90em;
  }

  .compressed-sec {
    padding: 5% 3%;
    background: #ededed;
  }

  .compressed-sec .col-md-8 {
    width: 66.6666666667%;
  }

  .compressed-sec .col-md-4 {
    width: 33.3333333333%;
  }

  .side-label {
    text-align: center;
    font-family: var(--oswald);
    font-size: 2em;
    padding-top: 32px;
  }

  .pc-default {
    position: relative;
    padding: 2% 3%;
    background-size: cover;
    background-position: center;
  }

  .pc-default .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #00488c;
    letter-spacing: .08em;
  }

  .pc-default .accordion-item {
    background-color: #efefef;
    color: #070707;
  }

  .pc-default .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #000000;
  }

  .pc-default .accordion {
    margin-bottom: 2em;
  }

  .pc-default .usp-box {
    position: relative;
    padding: 2em 2em;
    text-align: center;
    border: 1px solid #00000047;
    border-radius: .5em;
    margin: 1em auto;
    background: white;
  }

  .pc-default h2 {
    font-weight: 900;
  }

  .pc-default .usp-label {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .pc-default .usp-box span {
    display: block;
    text-align: center;
    font-size: 4em;
    color: #0056a6;
  }

  .center-head {
    text-align: center;
    display: block;
  }

  .pc-default h1 {
    font-weight: 900;
    color: #0056a6;
  }

  .topsec {
    padding-bottom: 3em;
  }

  .section-faqsec h2 {
    color: #00488c;
    font-weight: 900;
  }

  .pc-default .accordion-button h3 {
    margin: 0;
    color: white;
  }

  .column-section {
    position: relative;
    padding: 5% 5%;
  }

  .column-section strong.highlight {
    font-size: 1.36em;
    font-style: italic;
    color: #000000;
    position: relative;
    font-weight: 500 !important;
    margin-top: 8px;
    padding-bottom: 3%;
    margin-bottom: 1em;
    line-height: 1.4 !important;
    display: block;
  }

  .column-section strong.highlight:not(.no-line):after {
    content: " ";
    display: block;
    width: 159%;
    height: 4px;
    background-color: #4fc8e3;
    position: absolute;
    top: 95%;
    right: 20px;
  }

  .column-section  .btn-primary {
    max-width: 450px;
    margin-left: 0;
    color: white;
  }

  .column-section no {
    display: none;
  }

  .text-highlight p {
    margin-bottom: 0;
  }

  .column-section h1 {
    color: #414141;
    font-size: 2.6em;
    margin: 0em 0em -0.5em 0em;
  }

  .compressed-sec {
    padding: 5% 18%;
    background: #ededed;
  }

  .content-header {
    font-weight: 900;
    font-size: 1.2em;
    color: #ff601f;
  }

  .usp-box-section {
    position: relative;
    padding: 5% 5%;
    background: #ff5f1f;
  }

  .usp-box-section .usp-box {
    height: 23em;
    padding: 4em 1em 1em 1em;
  }

  .accordion-section {
    position: relative;
    padding: 2% 5%;
  }

  .accordion-section .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #209ad6;
    letter-spacing: .08em;
  }

  .accordion-section .accordion-item {
    background-color: #272727;
    color: white;
  }

  .accordion-section .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #000000;
  }

  .accordion-section .accordion {
    margin-bottom: 2em;
  }

  .accordion-section .accordion-button::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .accordion-section .accordion-button:hover {
    background-color: #333a45;
    color: white !important;
  }

  .accordion-section .accordion-button:hover h2 {
    color: white;
  }

  .accordion-section .accordion-button:not(.collapsed) h2 {
    color: white;
  }

  .galler-section {
    position: relative;
    padding: 3% 5%;
  }

  .text-highlight {
    font-size: 1.36em;
    font-style: italic;
    color: #000000;
    position: relative;
    font-weight: 500 !important;
    margin-top: 8px;
    padding-bottom: 3%;
    margin-bottom: 39px;
    line-height: 1.4 !important;
  }

  .text-highlight:not(.no-line):after {
    content: " ";
    display: block;
    width: 159%;
    height: 4px;
    background-color: #184ba2;
    position: absolute;
    top: 99%;
    right: 20px;
  }

  .text-highlight2 {
    font-size: 1.25em;
    padding: 1.5em 3% 1.1em;
    position: relative;
    border-bottom: solid 1px #00000054;
    text-align: center;
    margin: 4.5rem 0 0.5rem 0em;
    color: #000000;
    font-weight: 900;
    text-wrap: balance;
  }

  .closing-cta {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }

  .text-highlight2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right,#00000040 41.99%,#FFFFFB 42%,#FFFFFF 58.99%,#00000040 55%);
  }

  .text-highlight2:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3.4em;
    background-size: 6.6em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    left: 0.2em;
    top: -2.15em;
  }

  .text-highlight2 a {
    display: unset;
    color: #b00c03;
    transition: all .3s ease-in-out;
    transform: scale(1);
    position: relative;
    bottom: 0em;
  }

  .text-highlight2 a:hover {
    font-size: 1.04em;
    bottom: 0.12em;
  }

  .inner-bottom {
    margin-top: 0%;
    color: #000 !important;
    padding: 8em 7% 2em 7%;
    background-color: #1f2c5f;
    z-index: 13;
    position: relative;
    margin-bottom: 33px;
  }

  .inner-bottom .usp-blk {
    height: 24em;
  }

  .inner-bottom .usp-label {
    font-weight: 900;
    line-height: 1.1;
    margin: .4em 0;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: var(--oswald);
  }

  .inner-bottom.section-2:before {
    height: 100%;
  }

  .inner-bottom .carousel-control-prev {
    left: -6em;
  }

  .inner-bottom .carousel-control-next {
    right: -6em;
  }


  .inner-bottom .usp-wrap {
    position: relative;
    margin-top: 0em;
    margin: 3em auto 2em auto;
  }

  .inner-bottom .usp-wrap.row>* {}

  .faq-page .accordion-button {
    background-color: #f5c518;
    color: #000000;
  }

  .faq-page .accordion-button[aria-expanded=true], .faq-page .accordion-button:hover {
    background-color: #343434;
    color: white;
  }

  .faq-page .accordion-button::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  
  .reroute-btns {
    padding: 0%;
    position: relative;
  }

  .reroute-btns .column,.reroute-btns .columns {
    padding-left: .3375rem;
    padding-right: .3375rem;
  }

  .reroute-btns .btn {
    width: 100%;
    font-size: 1.1em;
    box-shadow: 1px 1px 16px 8px #0000000f;
    text-transform: uppercase;
    letter-spacing: .03em;
    border: 0;
    display: block;
    margin: .7em 0;
    border-radius: 900em;
    color: black;
  }

  .reroute-btns .btn:hover {
    background-color: #209ad6 !important;
    color: white !important;
    text-shadow: none;
  }

  .reroute-btns span {
    position: relative;
    top: 0.15em;
    font-size: 1.3em;
  }

  .single-blog ul {
    margin-left: 2em !important;
  }

  .full-inner-max {
    padding-top: 2%;
    background: white;
    z-index: 11;
    position: relative;
  }

.formbg{
  background-color: #f4d42b;
  padding:4em;
}

.formtext{
  font-size:2em;
}

  .main-blog {
    position: relative;
  }

  .wa-intcode-card strong:first-child {
    display: none;
  }

  .main-blog a {
    text-decoration: none;
    color: #3f63c9 !important;
  }

  .main-blog .page-nav {
    position: relative;
    background-color: #efefef;
    padding: 1.5em;
    margin-bottom: 1em;
  }

  .main-blog .post-thumbnail img {
    width: 100%;
    display: block;
  }

  .single-blog {
    position: relative;
    padding: 5% 15% 4% 15%;
  }

  .inside-content a {
    color: #000000;
    text-decoration: none;
  }

  .inside-content .btn-primary {
    color: #000000;
  }

  .client-resp-wrap {
    padding: 0% 5%;
  }

  .client-response .entry-content {
    padding: 0% 7%;
  }

  .client-response .frm_style_formidable-style.with_frm_style input[type=submit] {
    display: block;
    width: 100%;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: .08em;
    background-color: #e62318;
  }

  .client-response .frm_style_formidable-style.with_frm_style input[type=submit]:hover {
    background-color: black;
    color: white;
  }

  .client-response .frm_style_formidable-style-2.with_frm_style .frm_primary_label {
    color: white;
  }

  .client-response .frm_style_formidable-style-2.with_frm_style input[type=submit] {
    display: block;
    background-color: #199ad6;
    color: white;
    width: 100%;
    padding: .85em 0em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1em;
    font-family: "Exo 2", sans-serif !important;
    text-shadow: -0.03em 0.08em black;
  }

  .client-response .frm_forms.frm_style_formidable-style-2.with_frm_style {
    margin: auto;
  }

  .client-response .bg-inner {
    text-align: center;
    position: relative;
    padding: 3.063rem 0 1.363rem 0;
    color: white;
  }

  .client-response .bg-inner {
    width: 100%;
    max-width: 1100px !important;
    margin: 0 auto;
    position: relative;
  }

  .client-response .bg-inner p {
    font-size: 1.6rem;
    line-height: 1.5em;
    padding: 0% 5%;
  }

  .client-response .bg-inner  h1 {
    margin: 0;
    color: #ffffff;
    font-size: 4.3rem;
    line-height: 0.9;
    margin-bottom: 3%;
    text-shadow: 4px 4px 0.7em #00000075;
    text-transform: uppercase;
  }

  .client-response .bg-inner h1 strong {
    display: block;
    font-size: 1.647em;
    color: #f5c518;
    position: relative;
  }

  .client-response .bg-inner  h1 span strong {
    font-size: 1.2em;
  }

  .client-response .bg-inner  h1 span {
    font-size: 0.7em;
    display: block;
    font-weight: normal;
  }

  .client-response .with_frm_style .frm_primary_label {
    color: white;
  }

  .client-response .frm_button_submit {
    position: relative;
    display: block;
    width: 100%;
    background-color: #e7090c;
    padding: .85em 0em;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    font-family: "Ubuntu", sans-serif !important;
  }

  .client-response {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 13% 1% 7% 1%;
    background-color: #4e4e4e;
    margin-top: 0;
    background-image: url(/wp-content/themes/plumberseo-bootstrap/inc/assets/images/ty-bgdss.jpg);
  }

  .client-review {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    padding: 11% 4% 5% 4%;
    position: relative;
    z-index: 9;
    margin-top: 0;
    background-image: url(/wp-content/themes/plumberseo-bootstrap/inc/assets/images/feedback-bg.jpg);
    text-align: center;
    color: #fff;
  }

  .client-review:after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0%;
    height: 100%;
    width: 100%;
    background: #00000087;
    z-index: -1;
  }

  .client-review  p {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0% 0%;
    color: #ffffff;
  }

  .client-review  h1 {
    margin: 0;
    color: #ffffff;
    font-weight: normal;
    font-size: 4.2rem;
    line-height: 1;
    margin-bottom: -0.1em;
    text-transform: uppercase;
    position: relative;
  }

  .client-review h1 strong {
    display: block;
    font-size: 1.47em;
    color: #ffffff;
    font-family: Oswald !important;
  }

  .resp-box {
    border-top: 1px solid #00304624;
    font-weight: 100;
    position: relative;
    margin-top: 2%;
    border-bottom: 1px solid #00304624;
  }

  .resp-txt {
    font-weight: 900;
    font-size: 1.7em;
    letter-spacing: 0.03em;
    margin-bottom: 2%;
    line-height: 1.7;
    padding: 1% 5% 0% 5%;
  }

  .resp-box .btn {
    display: block;
    width: 80%;
    max-width: 440px;
    border-radius: 900em;
    border: 0;
    margin: auto;
  }

  .client-review img {
    display: block;
    width: 90%;
    margin: auto;
  }

  .client-review .col-12 img {
    max-width: 450px;
  }

  .client-review .row-cols-5 {
    padding: 0% 15%;
    margin-top: 2%;
  }

  @media screen and (min-width: 5.001em) and (max-width: 25em) {

.sa-chips:before {
    bottom: 0px;
    right: 0;
    width: 143%;
    height: 67.389em;
    -webkit-transform: translate(28em, -5%);
    -ms-transform: translate(28em, -5%);
    transform: translate(28em, -5%);
}
    
.b-footer {
text-align:center;
}
    
  .hero-outer:before {
    bottom: 0px;
    right: 0em;
    left: 0;
    width: 148%;
    height: 54.389em;
    -webkit-transform: translate(11em, -28%);
    -ms-transform: translate(11em, -28%);
    transform: translate(11em, -28%);
}
    
    .sliderfull {
      margin-top: 15%;
    }

    .slider-header {
      font-size: 1.7em;
    }

    #breadcrumbs {
      font-size: .6em;
      margin-top: 6em;
    }

    blockquote {
      padding: 3% 4% 3% 8% !important;
    }

    blockquote:after {
      display: none;
    }

    .error-page .inside-content h1 {
      font-size: 1.5em;
      margin-bottom: 0em;
    }

    .error-page .error {
      font-size: 8.1em;
    }

    .error-page .entry-content {
      font-size: 1em;
      padding: 0% 3%;
      margin-top: 0.1em;
    }

    .client-review {
      text-align: center;
      margin-top: 15%;
      padding: 22% 4% 5% 4%;
    }

    .client-review .row-cols-5 {
      padding: 0% 1%;
      margin-top: 2%;
    }

    .client-review .row-cols-5 .col {
      padding: 0.5%;
    }

    .client-review img, .client-review .btn {
      margin: auto;
      width: 100%;
    }

    .client-review h1 {
      font-size: 1.7em;
    }

    .client-response .bg-inner p {
      font-size: 1.1rem;
      padding: 0% 0%;
    }

    .client-response .bg-inner h1 {
      font-size: 1.9rem;
    }

    .thank-you .bg-inner h1 {
      font-size: 2.2rem;
    }

    .thank-you .button {
      margin: .5em 0;
    }

    .thank-you .bg-inner p {
      font-size: 1rem;
    }

    .bullet-list li {
      width: 100%;
    }

    .inner-bottom {
      background-position: 100% 100%;
    }

    .inner-bottom .usp-wrap:after {
      display: none;
    }

    .inner-bottom .usp-wrap {
      width: 100%;
    }

    .insideimage .slider-usp .usp-box {
      font-size: 0.6em;
      padding: 5% 15%;
    }

    .single-blog {
      position: relative;
      padding: 12% 4% 4% 4%;
    }

    .insideimage {
      padding: 28% 4% 0% 4%;
      margin-top: 10.5%;
      border-bottom: 0.2em solid #1d1761;
      background-image: none;
    }

    .insideimage:after {
      width: 155%;
      border-radius: 0;
    }

    .insideimage:before {
      display: none;
    }

    .insideimage .slider-usp .usp-box {
      font-size: 0.5em;
    }

    .thank-you {
      padding: 15% 1% 5% 1%;
      margin-top: 13%;
    }

    .banner-head {
      font-size: 1.1em;
    }

    .insideimage .col-lg-6 {
      padding-right: 35%;
    }

    .banner-head {
      font-size: 0.83em;
      width: 100%;
    }

    .logo-image img {
      width: 8.4em;
      top: .1em;
    }

    .smallbar .logo-image img {
      width: 6em;
    }

    .logo-foot img {
      width: 19em;
    }

    .quick-nav.adjust {
      font-size: .9em;
      top: 4.7em;
    }

    .close-cta {
      font-size: 0.8em;
      padding: 6% 2% 3% 2%;
    }

    .sched-row a ,.sched-row button {
      padding: 3% 0% 3% 0%;
      font-size: 0.6em;
    }

    .resp-txt {
      font-size: 1em;
    }

    .client-response {
      padding: 17% 1% 7% 1%;
      margin-top: 14%;
    }

    .hide-for-small-only {
      display: none !important;
    }

    .error-page {
      padding: 13% 4% 6% 4%;
      margin-top: 18%;
    }

    .help-links a {
      text-align: center;
    }

    .side-form iframe {
      height: 64em !important;
    }

    .insideimage .slider-usp {
      width: 95%;
      margin-right: auto;
      right: 0;
      font-size: 0.7em;
      position: relative;
      margin-top: 1em;
      bottom: -2em;
    }

    .insideimage .slider-usp.row>* {
      padding: 0 1%;
    }

    .show-for-small-only {
      display: block !important;
    }

    .emp-info em {
      width: 90em;
    }

    .compressed-sec {
      padding: 5% 3%;
      background: #ededed;
    }

    .compressed-sec .col-md-8 {
      width: 66.6666666667%;
    }

    .compressed-sec .col-md-4 {
      width: 33.3333333333%;
    }
  }

  @media screen and (max-width: 35em) and (min-width: 25.001em) {

.sa-chips:before {
    bottom: 0px;
    right: 0;
    width: 143%;
    height: 67.389em;
    -webkit-transform: translate(28em, -5%);
    -ms-transform: translate(28em, -5%);
    transform: translate(28em, -5%);
}
.b-footer {
text-align:center;
}
    
  .hero-outer:before {
    bottom: 0px;
    right: 0em;
    left: 0;
    width: 148%;
    height: 54.389em;
    -webkit-transform: translate(11em, -28%);
    -ms-transform: translate(11em, -28%);
    transform: translate(11em, -28%);
}

    .logo-foot img {
      width: 19em;
    }

    .widget .home-form .camp-form iframe {
      height: 36.3em !important;
    }

    .modal-dialog .camp-form iframe {
      height: 32em !important;
    }

    .sched-row a ,.sched-row button {
      font-size: .8em;
    }

    .close-cta {
      font-size: 0.8em;
    }

    .insideimage .slider-usp .usp-box {
      font-size: .5em;
    }

    #breadcrumbs {
      font-size: .7em;
      margin-top: 9em;
    }

    .client-review .row-cols-5 {
      padding: 0% 1%;
      margin-top: 2%;
    }

    .client-review .row-cols-5 .col {
      padding: 0.5%;
    }

    blockquote {
      padding: 3% 4% 3% 8% !important;
    }

    blockquote:after {
      display: none;
    }

    .bullet-list li {
      width: 100%;
    }

    .inner-bottom {
      background-position: 100% 100%;
    }

    .inner-bottom .usp-wrap:after {
      display: none;
    }

    .inner-bottom .usp-wrap {
      width: 100%;
    }

    .error-page .error {
      font-size: 8.9em;
    }

    .error-page .inside-content h1 {
      font-size: 1.8em;
      margin-bottom: 0em;
    }

    .error-page .entry-content {
      font-size: 1em;
      padding: 0% 3%;
      margin-top: 0.1em;
    }

    .client-review {
      text-align: center;
      padding: 24% 4% 5% 4%;
      margin-top: 15%;
    }

    .client-review img, .client-review .btn {
      margin: auto;
    }

    .client-review h1 {
      font-size: 2.3em;
    }

    .resp-txt {
      font-size: 1.3em;
    }

    .client-response .bg-inner p {
      font-size: 1.4rem;
    }

    .client-response .bg-inner h1 {
      font-size: 2.4rem;
    }

    .thank-you .bg-inner h1 {
      font-size: 2.9rem;
    }

    .thank-you .button {
      margin: .5em 0;
    }

    .thank-you .bg-inner p {
      font-size: 1rem;
    }

    .thank-you {
      padding: 15% 1% 5% 1%;
      margin-top: 14%;
    }

    .client-response {
      padding: 16% 1% 7% 1%;
      margin-top: 16%;
    }

    .hide-for-small-only {
      display: none !important;
    }

    .error-page {
      padding: 16% 4% 14% 4%;
      margin-top: 18%;
    }

    .logo-image a {
      margin-top: .2em;
      transform: scale(1);
      top: 0em;
    }

    .logo-image img {
      width: 9.8em;
      left: -0.2em;
      top: 0.1em;
    }

    .single-blog {
      position: relative;
      padding: 10% 4% 4% 4%;
    }

    .insideimage {
      padding: 28% 4% 0% 4%;
      margin-top: 10.5%;
      border-bottom: 0.2em solid #1d1761;
      background-image: none;
    }

    .insideimage:after {
      width: 155%;
      border-radius: 0;
    }

    .insideimage:before {
      display: none;
    }

    .insideimage .slider-usp .usp-box {
      font-size: 0.5em;
    }

    .quick-nav.adjust {
      font-size: .9em;
      top: 4em;
    }

    .smallbar .logo-image img {
      width: 6em;
    }

    .help-links a {
      text-align: center;
    }

    .insideimage .slider-usp {
      width: 95%;
      margin-right: auto;
      right: 0;
      position: relative;
      margin-top: -1em;
      bottom: -3em;
    }

    .insideimage .slider-usp.row>* {
      padding: 0 1%;
    }

    .insideimage .col-lg-6 {
      padding-right: 35%;
    }

    .banner-head {
      font-size: 1.1em;
      width: 100%;
    }

    .insideimage .activate a {
      font-size: .88em;
    }

    .show-for-small-only {
      display: block !important;
    }

    .compressed-sec {
      padding: 5% 5%;
      background: #ededed;
    }

    .compressed-sec .col-md-8 {
      width: 66.6666666667%;
    }

    .compressed-sec .col-md-4 {
      width: 33.3333333333%;
    }
  }

  @media screen and (max-width: 39.938em) and (min-width: 35.001em) {


.sa-chips:before {
    bottom: 0px;
    right: 0;
    width: 143%;
    height: 67.389em;
    -webkit-transform: translate(28em, -5%);
    -ms-transform: translate(28em, -5%);
    transform: translate(28em, -5%);
}

    
.hero-outer:before {
    bottom: 0px;
    right: 0em;
    left: 0;
    width: 83%;
    height: 54.389em;
    -webkit-transform: translate(18em, -28%);
    -ms-transform: translate(18em, -28%);
    transform: translate(18em, -28%);
}

    
 
    .logo-foot img {
      width: 22em;
    }

    .side-form iframe {
      height: 51em !important;
    }

    .logo-image a {
      margin-top: .1em;
      transform: scale(1);
      top: 0em;
    }

    .logo-image img {
      width: 14.3em;
      left: -0.3em;
      top: .1em;
    }

    .quick-nav.adjust {
      top: 4.4em;
    }

    .smallbar .logo-image img {
      width: 10.6em;
    }

    .error-page {
      padding: 13% 4% 11% 4%;
      margin-top: 17%;
    }

    .client-review {
      text-align: center;
      padding: 24% 4% 5% 4%;
      margin-top: 12%;
    }

    .client-review img, .client-review .btn {
      margin: auto;
    }

    .client-review .row-cols-5 {
      padding: 0% 1%;
      margin-top: 2%;
    }

    .client-review .row-cols-5 .col {
      padding: 0.5%;
    }

    .client-review h1 {
      font-size: 3.2em;
    }

    .resp-txt {
      font-size: 1.5em;
    }

    .single-blog {
      position: relative;
      padding: 5% 4% 4% 4%;
    }

    .insideimage {
      padding: 28% 4% 0% 4%;
      margin-top: 10.5%;
      border-bottom: 0.2em solid #1d1761;
      background-image: none;
    }

    .insideimage:after {
      width: 100%;
      left: 0;
      border-radius: 0;
      transform: none;
    }

    .insideimage .truck-image:after {
      display: none;
    }

    .insideimage:before {
      display: none;
    }

    .insideimage .slider-usp .usp-box {
      font-size: .7em;
    }

    .insideimage .slider-usp {
      width: 95%;
      margin-right: auto;
      right: 0;
      position: relative;
      margin-top: 0.5em;
    }

    .insideimage .slider-usp.row>* {
      padding: 0 1%;
    }

    .banner-head {
      font-size: 1.2em;
    }

    #breadcrumbs {
      font-size: .79em;
      margin-top: 5em;
    }

    .bullet-list li {
      width: 100%;
    }

    .inner-bottom {
      background-position: 100% 100%;
    }

    .inner-bottom .usp-wrap:after {
      display: none;
    }

    .inner-bottom .usp-wrap {
      width: 100%;
    }

    blockquote {
      padding: 3% 4% 3% 8% !important;
    }

    blockquote:after {
      display: none;
    }

    .error-page .inside-content h1 {
      font-size: 2.7em;
      margin-bottom: 0em;
    }

    .error-page .error {
      font-size: 10em;
    }

    .error-page .entry-content {
      font-size: 1.2em;
      padding: 0% 3%;
      margin-top: 0.1em;
    }

    .close-cta {
      font-size: 1em;
    }

    .client-response .bg-inner p {
      font-size: 1.5rem;
      padding: 0% 0%;
    }

    .client-response .bg-inner h1 {
      font-size: 3.1rem;
    }

    .thank-you .bg-inner h1 {
      font-size: 4.2rem;
    }

    .thank-you .button {
      margin: .5em 0;
    }

    .thank-you {
      padding: 13% 1% 5% 1%;
      margin-top: 15%;
    }

    .client-response {
      padding: 15% 1% 7% 1%;
      margin-top: 16%;
    }

    .hide-for-small-only {
      display: none !important;
    }

    .help-links a {
      text-align: center;
    }

    .show-for-small-only {
      display: block !important;
    }

    .compressed-sec {
      padding: 5% 8%;
      background: #ededed;
    }

    .compressed-sec .col-md-8 {
      width: 66.6666666667%;
    }

    .compressed-sec .col-md-4 {
      width: 33.3333333333%;
    }
  }

  @media screen and (max-width: 55em) and (min-width: 39.939em) {

.hero-outer:before {
    bottom: 0px;
    right: 0em;
    left: 0;
    width: 83%;
    height: 54.389em;
    -webkit-transform: translate(18em, -28%);
    -ms-transform: translate(18em, -28%);
    transform: translate(18em, -28%);
}

.sa-chips:before {
    bottom: 0px;
    right: 0;
    width: 143%;
    height: 67.389em;
    -webkit-transform: translate(28em, -5%);
    -ms-transform: translate(28em, -5%);
    transform: translate(28em, -5%);
}
    
    .sliderfull {
      margin-top: 19%;
    }

    .slider-header {
      font-size: 3.1em;
    }

    .logo-foot img {
      width: 24em;
    }

    .banner-head {
      font-size: 1.3em;
    }

    .compressed-sec {
      padding: 5% 8%;
      background: #ededed;
    }

    .compressed-sec .col-md-8 {
      width: 66.6666666667%;
    }

    .compressed-sec .col-md-4 {
      width: 33.3333333333%;
    }

    .col-sm-12 {
      flex: 0 0 auto;
      width: 100%;
    }

    .side-form iframe {
      height: 51em !important;
    }

    .quick-nav.adjust {
      top: 4.5em;
    }

    .logo-image a {
      margin-top: .1em;
      transform: scale(1);
      top: 0em;
    }

    .logo-image img {
      width: 15em;
      left: -0.3em;
      top: 0.1em;
    }

    .single-blog {
      position: relative;
      padding: 5% 4% 4% 4%;
    }

    .insideimage {
      padding: 20% 4% 0% 4%;
      margin-top: 10.5%;
      border-bottom: 0.2em solid #1d1761;
      background-image: none;
    }

    .insideimage:after {
      width: 155%;
      border-radius: 0;
    }

    .client-response {
      padding: 16% 2% 7% 2%;
      margin-top: 7%;
    }

    .logo-image img {
      width: 11em;
    }

    .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 10%;
    }

    .sliderfull .col-sm-12, .section-1 .col-sm-12, .section-2 .col-sm-12, .section-3 .col-sm-12, .section-4 .col-sm-12, .section-6 .col-sm-12 {
      width: 100% !important;
    }

    .section-1 .col-md-3 {
      width: 50% !important;
    }

    .sliderfull .col-md-7 {
      width: 100%;
    }

    .show-for-small-only {
      display: block !important;
    }

    .insideimage .slider-usp .usp-box {
      font-size: .73em;
    }

    .insideimage:before {
      display: none;
    }

    .inner-bottom {
      background-position: 100% 100%;
    }

    .inner-bottom .usp-wrap:after {
      display: none;
    }

    .inner-bottom .usp-wrap {
      width: 100%;
    }

    .side-label {
      font-size: 2em;
    }

    .insideimage .slider-usp {
      width: 90%;
      margin-right: auto;
      position: relative;
    }

    .insideimage .col-lg-6 {
      padding-right: 39%;
    }

    .insideimage .slider-usp.row>* {
      padding: 0 1%;
    }

    .error-page .error {
      font-size: 11em;
    }

    .close-cta {
      font-size: 1.1em;
    }

    .hide-for-small-only {
      display: none !important;
    }

    .help-links a {
      text-align: center;
    }

    .error-page .inside-content h1 {
      font-size: 2.9em;
      margin-bottom: 0em;
    }

    .error-page .entry-content {
      font-size: 1.3em;
      padding: 0% 3%;
      margin-top: 0.1em;
    }

    .insideimage .col-md-4 {
      width: 33.33% !important;
    }

    .modal-dialog iframe {
      height: 43em !important;
    }

    .client-review {
      text-align: center;
      padding: 24% 4% 5% 4%;
      margin-top: 12%;
    }

    .client-review img, .client-review .btn {
      margin: auto;
    }

    .client-review .row-cols-5 {
      padding: 0% 8%;
      margin-top: 2%;
    }

    .client-review .row-cols-5 .col {
      padding: 0.5%;
    }

    .client-review h1 {
      font-size: 3.5em;
    }

    .resp-txt {
      font-size: 1.5em;
    }

    .copyright {
      font-size: .9em !important;
    }

    .client-response .bg-inner p {
      font-size: 1.5rem;
    }

    .thank-you .bg-inner h1 {
      font-size: 5rem;
    }

    .thank-you {
      padding: 9% 1% 5% 1%;
      margin-top: 13%;
    }

    .thank-you .button {
      margin: .5em 0;
    }

    .inside-content .col-md-8, .inside-content .col-md-4 {
      flex: 0 0 auto;
      width: 100%;
    }
  }

  @media screen and (max-width: 59.999em) and (min-width: 55.001em) {

.hero-outer:before {
    bottom: 0px;
    right: 0em;
    left: 0;
    width: 83%;
    height: 54.389em;
    -webkit-transform: translate(18em, -28%);
    -ms-transform: translate(18em, -28%);
    transform: translate(18em, -28%);
}


    
  
    .sched-row a strong {
      font-size: 2em;
    }

    .side-form iframe {
      height: 44em !important;
    }

    .smallbar .logo-image img {
      width: 11em;
    }

    .quick-nav.adjust {
      top: 4em;
    }

    .client-review {
      margin-top: 12%;
      padding: 14% 4% 5% 4%;
    }

    .logo-image a {
      margin-top: .1em;
      transform: scale(1);
      top: 0em;
    }

    .logo-image img {
      width: 15em;
      top: 0;
    }

    .thank-you {
      margin-top: 10%;
    }

    .sliderfull .col-md-7 {
      width: 100%;
    }

    .inside-content .col-md-8, .inside-content .col-md-4 {
      flex: 0 0 auto;
      width: 100%;
    }

    .insideimage .slider-usp .usp-box {
      font-size: .8em;
    }

    .insideimage {
      margin-top: 19.5%;
      padding: 11% 2% 1% 2%;
      background-size: 55%;
    }

    .rev-sec-in .sec4-header {
      font-size: 2.3em;
    }

    .rev-sec-in .btn {
      font-size: .748em;
    }

    .side-coup .btn-primary {
      font-size: .9em;
    }

    .banner-head {
      font-size: 1.3em;
    }

    .insideimage .activate a {
      font-size: 1em;
    }

    .insideimage .slider-usp {
      width: 53%;
      font-size: .84em;
    }

    .close-cta {
      font-size: 1.1em;
    }

    .site-footer .bullet-list li {
      font-size: .9em;
    }

    .sched-row a {
      font-size: 0.9em;
    }

    .error-page {
      padding: 11% 4% 6% 4%;
      margin-top: 10%;
    }

    .resp-txt {
      font-size: 1.5em;
    }

    .client-review h1 {
      font-size: 4.5em;
    }

    .sched-row:after {
      content: " ";
      position: absolute;
      bottom: 35%;
      height: 2.4em;
      width: .4em;
      left: 50.8%;
    }

    .sliderfull .btn {
      font-size: 1em;
    }

    .copyright {
      font-size: .9em !important;
    }

    .hide-for-small-only {}

    .show-for-small-only {
      display: none;
    }

    .sidebar.show-for-small-only {
      display: block !important;
      width: 100%;
    }
  }

  @media screen and (min-width: 60em) and (max-width: 63.938em) {


.hero-outer:before {
    bottom: 0px;
    right: 0em;
    left: 0;
    width: 83%;
    height: 54.389em;
    -webkit-transform: translate(18em, -28%);
    -ms-transform: translate(18em, -28%);
    transform: translate(18em, -28%);
}

    
.hero-outer {
    display: flex;
    min-height: 77vh;
    position: relative;
}
    
    .slider-header {
      font-size: 2.2em;
    }

    .sliderfull {
      margin-top: 13%;
    }

    .inside-content .col-md-8, .inside-content .col-md-4 {
      flex: 0 0 auto;
      width: 100%;
    }

  

    .mobile-nav, .quick-nav {
      display: block;
    }

    .menu>li a {
      font-size: 0.8em;
      padding: 0.7em 1.4em;
    }

    .top-bar .menu>li a {
      font-size: 0.67em;
    }

    .menu-top-menu-container .menu>li a {
      font-size: 0.7em;
      padding: .4em .7em;
    }

    .top-menu .btn {
      font-size: .8em;
    }

    .smallbar .menu-top-menu-container .menu>li a {
      font-size: .68em;
    }

    .smallbar    .menu>li a {
      font-size: 0.6em;
    }

    .smallbar .desk-nav .top-bar .btn-primary {
      font-size: 0.7em;
    }

    .insideimage {
      padding: 12% 3% 1% 3%;
      margin-top: 7.5%;
      background-size: 59%;
    }

    .logo-image img {
      width: 11em;
    }

    .section-protecta h1 {
      font-size: 2em;
    }

    .client-review {
      padding: 13% 4% 5% 4%;
    }

    .banner-head {
      font-size: 1.3em;
    }

    .insideimage .activate a {
      font-size: 1em;
    }

    .smallbar .logo-image img {
      width: 10em;
    }

    .smallbar .desk-nav .btn-primary {
      font-size: 0.7em;
    }

    .copyright {
      font-size: .9em !important;
    }

    .sched-row a ,.sched-row button {
      padding: 3% 0% 3% 0%;
      font-size: .9em;
    }

    .close-cta {
      font-size: 1.1em;
    }

    .home-form .row {
      font-size: 1.3em;
    }

    html {
      font-size: 15px !important;
    }

    .show-for-small-only {
      display: none;
    }

    .sidebar.show-for-small-only {
      display: block !important;
      width: 100%;
    }
  }

  @media screen and (max-width: 75em) and (min-width: 63.939em) {

.hero-outer {
    display: flex;
    min-height: 77vh;
    position: relative;
}

    
    .slider-header {
      font-size: 2.2em;
    }

    .sliderfull {
      margin-top: 13%;
    }

    .desk-nav {
      display: block!important;
    }

    .mobile-nav, .quick-nav {
      display: none;
    }

    .menu>li a {
      font-size: 0.89em;
    }

    .menu-top-menu-container .menu>li a {
      font-size: 0.68em;
      padding: 0.4em .9em;
    }

    .top-menu .btn {
      font-size: .8em;
    }

    .smallbar .menu-top-menu-container .menu>li a {
      font-size: 0.7em;
    }

    .smallbar    .menu>li a {
      font-size: 0.61em;
    }

    .smallbar .desk-nav .btn-primary {
      font-size: 0.8em;
    }

    .smallbar .desk-nav .top-bar .btn-primary {
      font-size: 0.7em;
    }

    .contact-desk a {
      font-size: 1.8em;
    }

    .logo-image img {
      width: 11em;
    }

    .section-protecta h1 {
      font-size: 2.2em;
    }

    .section-protectc .usp-box {
      height: 17em;
      color: black;
      font-size: .7em;
    }

    .client-review {
      padding: 13% 4% 5% 4%;
    }

    .banner-head {
      font-size: 1.3em;
    }

    .insideimage .activate a {
      font-size: 1em;
    }

    .smallbar .logo-image img {
      width: 8em;
    }

    html {
      font-size: 16px !important;
    }

    .copyright {
      font-size: .9em !important;
    }

    .close-cta {
      font-size: 1.2em;
    }

    .sched-row a ,.sched-row button {
      font-size: .9em;
    }

    .show-for-small-only {
      display: none;
    }
  }

  @media screen and (max-width: 85em) and (min-width: 75.001em) {
   .hero-outer {
    display: flex;
    min-height: 85vh;
    position: relative;
}
    
    .slider-header {
      font-size: 2.5em;
    }

    .sliderfull {
      margin-top: 13%;
    }

    html {
      font-size: 17px !important;
    }

    .home-form iframe {
      height: 43em !important;
    }

    .desk-nav {
      display: block;
    }

    .mobile-nav, .quick-nav {
      display: none;
    }

    .menu>li a {
      padding: 0.7em 1.3em;
      font-size: 0.9em;
    }

    .menu-top-menu-container .menu>li a {
      font-size: 0.7em;
    }

    .smallbar .menu-top-menu-container .menu>li a {
      font-size: .79em;
    }

    .top-menu .btn {
      font-size: .9em;
    }

    .smallbar .menu>li a {
      font-size: 0.67em;
    }

    .logo-image img {
      width: 14em;
    }

    .side-rev .btn {
      font-size: 1em;
    }

    .smallbar .logo-image img {
      width: 8em;
    }

    .copyright {
      font-size: .9em !important;
    }

    .close-cta {
      font-size: 1.3em;
    }

    .sched-row a ,.sched-row button {
      padding: 1% 2% 2% 2%;
    }

    .show-for-small-only {
      display: none;
    }
  }

  @media screen and (max-width: 95.001em) and (min-width: 85.001em) {

   .hero-outer {
    display: flex;
    min-height: 89vh;
    position: relative;
}
    
    
    .sliderfull {
      margin-top: 12%;
    }

    .slider-header {
      font-size: 2.94em;
    }

    html {
      font-size: 17px !important;
    }

    .desk-nav {
      display: block;
    }

    .mobile-nav, .quick-nav {
      display: none;
    }

    .menu>li a {
      font-size: 0.9em;
    }

    .menu-top-menu-container .menu>li a {
      font-size: .8em;
    }

    .smallbar    .menu>li a {
      font-size: 0.8em;
    }

    .smallbar .menu-top-menu-container .menu>li a {
      font-size: 0.9em;
    }

    .smallbar .desk-nav .top-bar .btn-primary {
      font-size: 0.7em;
    }

    .logo-image img {
      width: 14em;
    }

    .smallbar .logo-image img {
      width: 11em;
    }

    .section-8:after {
      width: 52%;
    }

    .sched-row:after {
      content: " ";
      position: absolute;
      bottom: 35%;
      height: 2.4em;
      width: .4em;
      left: 50.8%;
    }

    .sliderfull .btn {
      font-size: 1em;
    }

    .copyright {
      font-size: .9em !important;
    }

    .close-cta {}

    .show-for-small-only {
      display: none;
    }
  }

  @media screen and (max-width: 125em) and (min-width: 95.001em) {
    .sliderfull {
      margin-top: 12%;
    }

    .slider-header {
      font-size: 3.24em;
    }

    html {
      font-size: 17px !important;
    }

    .desk-nav {
      display: block;
    }

    .mobile-nav, .quick-nav {
      display: none;
    }

    .img-box img {
      top: 1em;
      width: 90%;
    }

    .usp-con {
      width: 37%;
      padding: 2.1em 0.4em 1em 1.4em;
      height: 7.9em;
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .copyright {
      font-size: .9em !important;
    }

    .close-cta {
      font-size: 1.6em;
    }

    .sched-row a ,.sched-row button {
      padding: 3% 0% 3% 0%;
    }

    .show-for-small-only {
      display: none;
    }
  }

  @media screen and (min-width: 125.001em) and (max-width: 999.9em) {
    .sliderfull {
      margin-top: 12%;
    }

    .slider-header {
      font-size: 3.64em;
    }

    .sliderfull {}

    .img-box img {
      top: 1em;
      width: 90%;
    }

    .usp-con {
      width: 37%;
      padding: 2.1em 0.4em 1em 1.4em;
      height: 8.5em;
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    html {
      font-size: 17px !important;
    }

    .desk-nav {
      display: block!important;
    }

    .mobile-nav, .quick-nav {
      display: none;
    }

    .menu>li a {
      font-size: 1.1em;
    }

    .smallbar .desk-nav .btn-primary {
      font-size: .9em;
    }

    .copyright {
      font-size: .9em !important;
    }

    .sched-row a ,.sched-row button {
      padding: 3% 0% 3% 0%;
      font-size: 1.1em;
    }

    .show-for-small-only {
      display: none;
    }
  }

  