html {
  scroll-behavior: smooth;
}

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

.site {
  max-width: 1700px;
  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;
}

a {
  color: #e95a39; 
  text-decoration: underline; 
}


.hide {
  display: none;
}

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

.pop-title{

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.5em;
  /* top: 1em; */
  font-family: 'RobotoSlab', sans-serif;
  color: white;
  /* text-shadow: -.1em .1em black; */
  margin-bottom: 1em;
}

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

.schema a {
  text-decoration: none;
}

.btn {
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Vertically align items in the center */
    justify-content: center; /* Horizontally align items in the center */
    gap: 8px; /* Space between elements inside the button */
    width: 80%; /* Button width */
    max-width: 290px; /* Ensure the button doesn't exceed this width */
    margin: 0 auto; /* Center the button horizontally */
    /* padding: 10px 30px; */ /* Internal padding */
    border: 0; /* No border */
    border-radius: 3em; /* Fully rounded corners */
    font-size: 19px; /* Button text size */
    font-weight: 800; /* Bold text */
    text-transform: uppercase; /* Uppercase text */
    font-family: 'poppinsbold'; /* Button font */
    line-height: 2.5; /* Line height for readability */
    text-align: center; /* Text alignment */
    color: white; /* White text color */
    transition: all 0.3s ease; /* Smooth transitions for hover states */
    cursor: pointer; /* Pointer cursor on hover */
    white-space: nowrap; /* Prevent text wrapping */
    /* min-width: 257px; */
}

.btn {
    min-height: 60px; /* Ensures all buttons are at least 60px high */
}



/* Primary button style */
.btn-primary {
  background-color: #e95a3a;
}

.btn-primary:hover {
  background-color: #000000;
  border: 4px solid white;

  /* Optional hover border */
}

/* Secondary button style */
.btn-secondary {
  background-color: #000000;
  font-family: 'poppinsbold';

  /* Use custom family if required */
}

.btn-secondary:hover {
  background-color: #e95a3a;
  border: 4px solid white;
}

.bg-primary {
  background-color: #e95a3a !important;

  /* Primary color */
}

.bg-secondary {
  background-color: #000000 !important;

  /* Secondary color */
}

/* Active and checked states */
.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #e95a3a;

  /* Main color for active state */
  border-color: #e95a3a;
}

/* Focus state */
.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #e95a3a;

  /* Main color for focus state */
  border-color: #e95a3a;
  box-shadow: 0 0 0 .25rem rgba(233, 90, 58, .5);

  /* Slight shadow in button color */
}

:root {
  --bs-primary: #e95a3a;

  /* Primary color */
  --bs-secondary: #000000;

  /* Secondary color */
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

body .button:focus,
body .button:hover {
  background-color: #231f20;
  color: #fefefe;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;

  /* Regular weight */
}

body,
p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;

  /* Regular weight */
}

.camp-form iframe {
  height: 30.5em!important;
}

.modal-dialog iframe {
  height: 38em!important;
}

.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 #e95a3a;
}

.single-blog .nav-links a {
  display: block;
  background: #e95a3a;
  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: 3%;
  display: block;
}

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

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


.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  background-color: #e95a3a;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: .75rem;
  border-top: 4px solid #dee2e6;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
  background-color: black;
}

@font-face {
  font-family: 'poppinsregular';
  src: url('/wp-content/themes/plumberseo-bootstrap/fonts/poppins-regular-webfont.woff2') format('woff2'),
     url('/wp-content/themes/plumberseo-bootstrap/fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinsbold';
  src: url('/wp-content/themes/plumberseo-bootstrap/fonts/poppins-bold-webfont.woff2') format('woff2'),
     url('/wp-content/themes/plumberseo-bootstrap/fonts/poppins-bold-webfont.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

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

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


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

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.icon-ticket1:before {
  content: "\f145";
}

.icon-trsut-tech-n:before {
  content: "\e966";
}

.icon-kc-phone:before {
  content: "\e9be";
}

.icon-twitter-circle:before {
  content: "\e91b";
}

.icon-ruud-brittingham:before {
  content: "\e9c2";
}

.icon-bb-trophy:before {
  content: "\e915";
}
.icon-morrow-bbb:before {
  content: "\e916";
}

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

.icon-chevron-circle-right:before {
  content: "\f138";
}

.icon-money-document-energy:before {
  content: "\eb86";
}

.icon-tools-pm:before {
  content: "\e90f";
}

.icon-cc-money:before {
  content: "\e9a0";
}

.icon-irock-financecon:before {
  content: "\e9a3";
}

.icon-heatpmp-ef:before {
  content: "\e935";
}

.icon-ac-repair-lincoln:before {
  content: "\e928";
}

.icon-air-duct-clean-brittingham:before {
  content: "\e93f";
}

.icon-ac-repair-2-lincoln:before {
  content: "\e9c1";
}

.icon-cooper-badge:before {
  content: "\e9aa";
}

.icon-emergency-serv:before {
  content: "\e971";
}

.icon-morrow-tech:before {
  content: "\e948";
}

.icon-youtube-with-circle:before {
  content: "\e94e";
}

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

.icon-instagram-with-circle:before {
  content: "\e943";
}

.icon-facebook:before {
  content: "\e94a";
}

.icon-calendar1:before {
  content: "\e955";
}

.icon-mobile:before {
  content: "\e959";
}

.icon-csr-icon1:before {
  content: "\e94c";
}

.icon-calendar-kj:before {
  content: "\e96b";
}

.icon-mobile:before {
  content: "\f10b";
}

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

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

.icon-phone:before {
  content: "\f095";
}

.icon-twitter-square:before {
  content: "\f081";
}

.icon-facebook-square:before {
  content: "\f082";
}

.icon-youtube-square:before {
  content: "\f166";
}

.icon-home:before {
  content: "\f015";
}

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

.icon-check:before {
  content: "\f00c";
}

.icon-check1:before {
  content: "\f00c";
  /* color: white; */
}

.icon-bars:before {
  content: "\f0c9";
}

.icon-comments:before {
  content: "\f086";
}

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

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

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

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

.clear {
  clear: both;
}

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

/* -------------------------------------------------------Header Section CSS--------------------------------- */
.icon-mobile,
.icon-calendar1 {
  font-size: 1.2em;

  /* Adjust icon size */
  display: inline-block;

  /* Ensure icons are visible */
}

.menu-top-menu-container .menu>li a {
  font-size: 0.88em;
  padding: 0.4em .9em;
  color: black !important;
}

.top-bar-social-media-icons span {
  color: #e95a3a;
  transition: color 0.3s ease;
}

.top-bar-social-media-icons span:hover {
  color: #000000;
}

.top-bar-social-media-icons a {
  text-decoration: none;
}

.top-bar-social-media-icons {
  display: flex;
  gap: 0px;
  font-size: 1.6em;
}

.custom-menu-container {
  color: white !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.custom-menu-container a {
  color: white !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  padding: 0 15px !important;
  display: inline-block !important;
}

.custom-menu-container a:hover {
  color: #ffffffcc !important;
}

.custom-menu-container ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  gap: 15px !important;
}

.custom-menu-container li {
  padding: 5px 0 !important;
}

.header-bg {
  background-image: url('/wp-content/uploads/2024/11/header-bg.jpg');
  z-index: 1;
  position: relative;
  background-position: center;
  background-size: cover;
}

.header-logo {
  margin-top: -1em;
}

.header-logo {
  margin-top: -1em;
  animation: pulse-glow 2s infinite ease-in-out;
}

/* Define combined animation */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); /* Reduced intensity */
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)); /* Slightly brighter, but reduced */
  }
}



.logo-shrink {
    transform: scale(0.8); /* Shrinks to 80% of original size */
    margin-top: 1em; /* Adjust margin for spacing */
}

.stay-connected {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #e95a3a;
}

.row .col-auto span {
  font-size: 24px;

  /* Adjust icon size */
  color: #e95a3a;

  /* Orange color for icons */
  cursor: pointer;
  transition: color 0.3s ease;
}

.row .col-auto span:hover {
  color: #000000;

  /* Change to black on hover */
}


.icon-mobile {
  font-size: 2.3em;

  /* Adjust icon size as needed */
  display: inline-block;
}

.icon-calendar1 {
  font-size: 1.6em;

  /* Adjust icon size as needed */
  display: inline-block;
}

/* Banner */
.banner-img {
  background-image: url('/wp-content/uploads/2024/11/banner-new-1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 52em;
  position: relative;
}

.banner-img::after {
  content: "";
  position: absolute;
  top: 40px;

  /* Adjust as needed to position vertically */
  right: 30px;

  /* Adjust as needed to position horizontally */
  width: 125px;

  /* Adjust width of the logo */
  height: 125px;

  /* Adjust height of the logo */
  background-image: url('https://brittinghamacstaging.mystagingwebsite.com/wp-content/uploads/2024/11/hiring-badge.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-img::before {
  content: "";
  position: absolute;
  bottom: 260px;
  right: 30px;
  width: 150px;
  height: 150px;
  background-image: url('https://brittinghamacstaging.mystagingwebsite.com/wp-content/uploads/2024/11/ruud-pro-partner-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-header {
  position: relative;
}

.banner-header {
  position: relative;
}

.banner-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 8px;
  height: 55%;
  background-color: #e95a3a;
  border-radius: 10px;
}

/* ---------------------------------------------------------------------------------------- */
/* Top Bar Section CSS */
/* ---------------------------------------------------------------------------------------- */



 .schedule-now-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures alignment in case of wider containers */

}

/* Dog's Head */
.schedule-now-container::before {
    content: "";
    background-image: url('/wp-content/uploads/2024/11/falkor-mascot-dog-services-pop-up-new.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 71px; /* Adjust for a small size */
    height: 75px; /* Adjust for a small size */
    position: absolute;
    top: -30px; /* Position above the text */
    left: -32px; /* Align with the text */
    animation: bounce 1.5s infinite ease-in-out; /* Bounce effect */
}

/* Text Bubble Below Dog's Head */
.schedule-now-container button::before {
    content: "Book Your Own\A Service Use This\A  Button To Get\A Started";
    font-size: 0.7rem; /* Small text size */
    color: #ffffff; /* Neutral color */
    font-style: italic; /* Make it feel conversational */
    display: inline-block;
    position: absolute;
    top: 47px; /* Align below the dogÃ¢â‚¬â„¢s head */
    left: -55px; /* Align with the dogÃ¢â‚¬â„¢s head */
    transform: translateY(-50%);
    white-space: pre-line; /* Allows line breaks */
    text-align: center; /* Center-align the text */
    padding: 4px 6px; /* Padding for the text bubble */
    border-radius: 6px; /* Smooth corners for a bubble effect */
    line-height: 1; /* Reduces spacing between lines */
    animation: pulse 1.5s infinite ease-in-out; /* Pulse animation for attention */
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}




.header-announcement, 
.header-top-bar {
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative; /* Keeps them in the document flow by default */
}

.scroll-hidden {
    opacity: 0;
    transform: translateY(-100%);
    position: absolute; /* Removes them from the document flow */
    width: 100%; /* Ensures it stretches the full width */
}



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

.logo-block {
  position: relative;
  z-index: 99;

  /* background-color: #ff0f0f; */
  background-image: url('/wp-content/uploads/2024/11/header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

  /* background: #ff0000; */
}

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

.smallbar .mobile-nav .logo-image a:after {
  transform: scale(1.1, 0.6);
}

.logo-image {
  position: relative;
}

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

.logo-image a {
  position: relative;
  display: block;
  transform: scale(1.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: #e95a3a;
  width: 1.8em;
  border-radius: 23em;
  height: 1.8em;
  line-height: 2;
  color: #ffffff;
  margin: auto;
  transition: all .3s ease-in-out;
  text-align: center;
  text-decoration: none;
  outline: .1em solid white;
  outline-offset: -0.2em;
}

.contact-info .button {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  background-color: #e7090c;
  padding: 0.75em 1em;
  margin: 0 0 0.5rem;
}

.call-button {
  position: relative;
  display: block;
  letter-spacing: .08em;
  transition: all .3s ease-in-out;
  font-size: 1.8em;
  line-height: 1.1;
  border-bottom: 1px solid;
  margin: auto;
}

.call-button .row>* {
  padding: 0;
}

.call-button span {
  display: block;
  text-align: center;
  font-size: 1.7em;
  height: 1.1em;
  width: 1.1em;
  line-height: 1.1;
  border: 1px solid;
  border-top-right-radius: 0.3em;
  border-bottom: 0;
  margin-top: -0.1em;
  transition: all .3s ease-in-out;
}

.call-button strong {
  display: block;
  font-size: .45em;
  font-weight: 400;
}

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

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

.call-button:hover strong {
  color: white!important;
}

.shift-menu {
  background: rgb(42,42,42);
  background: -moz-radial-gradient(circle, rgba(42,42,42,1) 0%, rgba(42,42,42,1) 62%, rgba(22,22,22,1) 100%);
  background: -webkit-radial-gradient(circle, rgba(42,42,42,1) 0%, rgba(42,42,42,1) 62%, rgba(22,22,22,1) 100%);
  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: 9999;
  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: #e95a3a;
  border-left: 0.5em solid #000000;
}

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

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

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

/* ---------------------- */
/* NAV CSS */
.modal {
  z-index: 999999999999999999999999999999;
}

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

.frm_style_formidable-style.with_frm_style .frm_submit button {
  width: 100%!important;
  display: block;
}

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

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

.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: white!important;
  /* box-shadow: none!important; */
  padding: 0rem 0rem!important;
  z-index: 9999;
  width: 100%;
  transition: all .3s ease-in-out;
  top: 0em;
  display: block;
  position: fixed;
  max-width: 1700px;
}

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

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

.top-bar:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.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: 0.1%;
  padding-bottom: 0.1%;
  color: white !important;
  font-weight: bold !important;
  /* font-size: 1.4em; */
}

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

.contact-desk {
  position: relative;
  padding: 0% 0 0% 0!important;
  margin-top: 0%;
}

.contact-desk a {
  display: block;
  letter-spacing: .05em;
  font-size: 2.2em;
  line-height: 1;
  color: #66bee3;
  text-decoration: none;
  border-bottom: 0;
  transition: all .3s ease-in-out;
  padding: 0.1em 0em 0.1em 0em;
  margin: 0;
  font-weight: 900;
}

.contact-desk a:hover {
  color: #fa4f41;
}

.contact-desk a em {
  display: block;
  font-size: .7em;
  color: black;
  font-style: normal;
}

.contact-desk span {
  font-size: 1em;
  line-height: 1.4;
  position: relative;
  top: 0em;
  height: 1.4em;
  width: 1.4em;
  display: block;
  border-radius: 900em;
  color: #fa4f41;
  text-align: center;
  transform: scale(2.1);
}

.smallbar .contact-desk a {
  font-size: 1.3em;
}

.contact-desk a strong {
  display: block;
  font-size: .8em;
}



.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-top-menu{
  font-size: 1.2em;
}

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

  /* font-weight: bolder; */
}

.top-text {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8em;
  left: 0.8em;
}

.top-text span {
  color: #e95a39;
}

.contact-info-desk {
  position: relative;
}

.contact-info-desk a {
  line-height: 1;
  margin: 0.1em 0 0.1em auto;
  font-size: 2.4em;
  font-weight: 900;
  position: relative;
  text-align: center;
  transition: all .3s ease-in-out;
  font-family: 'Exo 2', sans-serif;
  border-left: 1px solid #00000030;
}

.contact-info-desk a span {
  color: #e95a3a;
  position: relative;
  top: .1em;
}

.contact-info-desk a em {
  display: block;
  font-style: normal;
  font-size: 0.45em;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'poppinsregular';
  position: relative;
  top: 0.3em;
}

.smallbar .contact-info-desk a {
  font-size: 1.9em;
}

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

.top-bar .menu>li a span {
  color: #e95a3a;
  display: block;
  font-size: 1.4em;
  top: -0.4em;
  position: relative;
}

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

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

.menu>li a {
  padding: 0.3em 0.9em 0.6em 0.9em;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 1.2em;
  display: block;
  transition: all .3s ease-in-out;
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: bold;
}

.menu>li a span {
  color: #e95a3a;
}



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

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

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

.menu>li a:hover {
  background-color: #e95a3a !important;
  color: white!important;
  /* border-radius: 20px; */
}

.top-menu {
  padding: 2%;
}

.top-menu .btn {
  width: 90%;
  text-transform: none;
  letter-spacing: inherit;
  transition: all .3s ease-in-out;
  background: #ff000000;
  border: .2em solid #0099bb;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
}

.top-menu .btn:hover {
  background-color: #0090b5;
}

.top-menu .btn span {
  color: #003644;
}

.mid-bar {
  padding: 2% 0% 2% 0%;
}

.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: "\f107";
  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;
  left: auto;
}

.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%;
}

/* Heating Tab 2 columns Sub menu */
.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%;
}

/* Fly out menu */
.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%;
}

.quick-nav {
  position: fixed;
  top: -3em;
  width: 100%;
  background-color: #e95a3a;
  padding: 2% 2% 5.5% 2%;
  opacity: 0;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.quick-nav.adjust {
  padding: 5% 2% 1% 2%;
  opacity: 1;
  top: 5em;
}

.quick-nav .col-3 {
  flex: 0 0 auto;
  padding: 0;
}

.quick-nav a {
  color: #ffffff;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 9% 1% 9% 1%;
  font-size: 0.9em;
  transition: all .3s ease-in-out;
  border-right: 1px solid #00000030;
}

.quick-nav a:hover {
  color: white;
  background-color: #000000;
}

.smallbar .quick-nav {
}

.quick-nav a span {
  font-size: 1.4em;
  display: block;
  position: relative;
  top: -0.2em;
  transition: all .3s ease-in-out;
  color: #ffffff;
}

.quick-nav a em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  display: block;
  margin: 1.5em auto -2.6em auto;
  color: white;
  bottom: 0em;
  font-size: 0.7em;
  position: relative;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.quick-nav a em:after {
  content: '';
  position: absolute;
  height: 11.5em;
  width: 100%;
  background-color: #b00c03;
  border-radius: 900em;
  z-index: -1;
  left: 0%;
  bottom: -9.6em;
}

.quick-nav a:hover em {
  bottom: 1.2em;
  opacity: 1;
}

.quick-nav a:hover span {
  /* top: -0.6em; */
  font-size: .9em;
}

.sched-global {
  width: 50%;
}

.sched-global .btn-primary,
.sched-global .btn-secondary {
  display: block;
  width: 100%;
  padding: 1.1em;
  text-transform: uppercase;
  font-size: .7em;
  letter-spacing: .06em;
  color: black;
  background-color: #ff000000;
  border: 0;
  line-height: .9;
}

.sched-global .btn-primary span,
.sched-global .btn-secondary span {
  font-size: 4.6em;
  color: white;
  border: 0;
  top: -.1em;
  position: relative;
  border-radius: 900em;
  width: 1.1em;
  height: 1.1em;
  padding: 0;
  line-height: 1;
  display: block;
  text-align: center;
  margin: auto;
  text-shadow: -0.04em 0.08em black;
}

.sched-global .btn-primary span {
  background-color: #199ad6;
}

.sched-global .btn-secondary span {
  background-color: #91ca64;
}

.sched-global .btn-primary:hover,
.sched-global .btn-secondary:hover {
  background-color: #ff000000!important;
  color: black!important;
}

.sched-global .btn-primary:hover span,
.sched-global .btn-secondary:hover span {
  background-color: #e73c30;
}

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

/* Slider Section CSS */


.sliderfull .carousel-control-prev,
.sliderfull .carousel-control-next {
  position: absolute;
  top: 58%; /* Center vertically */
  transform: translateY(-50%);
  z-index: 2;
}

.sliderfull .carousel-control-prev {
  left: -70px; /* Move further to the left */
}

.sliderfull .carousel-control-next {
  right: -70px; /* Move further to the right */
}



.sliderfull {
  position: relative;
  z-index: 1;
  /* Ensures it's below static-slide if needed */
  margin-top: 20%;
  /* Define a clear percentage */
}


.carousel-inner {
  position: relative;
  overflow: visible; /* Prevent clipping of pseudo-elements */
}


.sliderfull {
  position: relative;
  overflow: visible; /* Ensure no clipping for the entire slider section */
}


.slide-1:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 252%; /* Adjust as needed */
  z-index: -1;
  top: -145px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-2:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-2.jpg);
  width: 100%;
  height: 246%; /* Adjust as needed */
  z-index: -1;
  top: -61px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-3:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/12/banner-slide-3-n.png);
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}


/* Slider iflo pro */

      .slide-5:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/iflopro_slider_4.jpg);
  width: 100%;
  height: 194%; /* Adjust as needed */
  z-index: -1;
  top: -99px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.responsive-video {
    position: absolute;
    top: 0px;
    left: 81px;
    width: 75%;
    height: 67%;
    object-fit: cover; /* Adjusts video scaling */
}

.custom-video-position {
    position: relative;
    width: 80%; /* Adjust width (e.g., 80% of its parent container) */
    height: auto; /* Maintain aspect ratio */
    top: -241px; /* Move the video up */
    left: 20px; /* Move the video right */
    margin: 0 auto; /* Center the video horizontally if needed */
    transform: translate(-10%, 10%); /* Optional fine-tuning for precise positioning */
}

.video-overlay-button {
    position: absolute;
    top: 6%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7) !important;!i;!; /* Semi-transparent background */
    color: #fff;
    padding: 0em 0em !important;!i;!;
    border-radius: 5px;
    text-align: center;
    font-size: 1em !important;!i;!;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none !important;!i;!;
}

.video-overlay-button:hover {
    background-color: rgba(233, 90, 58, 0.8); /* Hover effect */
}




/* ------------------------------------------------------------------------------------- */





.hiring-badge-link {
    position: absolute;
    top: 140px;
    right: 85px;
    transform: translate(50%, -50%);
    z-index: 2; /* Above background but below content */
    display: block;
    width: 130px;
    height: 131px;
    animation: pulse 2s infinite ease-in-out; /* Optional pulse animation */
}

.hiring-badge-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-header {
  line-height: 1.1;
  font-size: 2.1em;
  position: relative;
  letter-spacing: .07em;
  color: #ffffff;
  margin-bottom: 2%;
  font-family: 'poppins-regular', sans-serif;
  animation: fadeInLeft 3s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-delay: 1s;
  transition: 1s ease-in-out;
  opacity: 0;
  transform: translateX(-40%);
  text-transform: uppercase;
  margin-left: 10%;
}

.slider-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;

  /* Adjust spacing from the left of the header */
  height: 100%;

  /* Matches the height of the header */
  width: 15px;

  /* Thickness of the border */
  background-color: #F26722;

  /* Orange color */
  border-radius: 10px;

  /* Rounded corners */
}

/* Style for specific span and em elements inside slider-header */
.slider-header .text-orange {
  color: #F26722;
  font-weight: bold;
  font-size: 1.4em;
  /* line-height: normal; */
  font-family: 'poppinsbold';
}

.slider-header em {
  font-style: italic;
  font-weight: 600;

  /* Add weight to differentiate */
}

@keyframes fadeInLeft {
  20% {
      opacity: 0;
      transform: translateX(-20%);
  }

  30%,
  100% {
      opacity: 1;
      transform: translateX(0%);
  }
}

.slider-header strong {
  display: block;
  font-size: 1.2em;
}

.call-slider {
  position: relative;
  font-family: 'Exo 2', sans-serif;
  font-size: 2em;
  color: #e95a3a!important;
  padding-left: 2em;
}

.call-slider span {
  width: 1.7em;
  height: 1.7em;
  border: 3px solid #d0d0d0;
  border-radius: 900em;
  display: block;
  position: absolute;
  text-align: center;
  line-height: 1.6;
  left: 0em;
  color: #e95a3a;
}

.slider-subline .check-list li {
  border: 0!important;
  padding: 0.5em 1em 0.5em 3.3em!important;
}

.slider-subline .check-list {
  border: 0!important;
}

.slider-subline .check-list li:before {
  width: 1.7em;
  height: 1.8em;
  top: 0.4em;
  left: 1.06em;
}

.sliderfull .btn {
    max-width: 343px; /* Increase the maximum width */
    padding: 1em 2em; /* Add more padding for a larger button */
    font-size: 1.2em; /* Increase the font size */
    margin: 1em 0 3em 7em; /* Keep the existing margin unless it needs adjustment */
}


.slider-usp-row {
  position: relative;
  width: 56%;
  margin: 1em auto 1em 0;
  z-index: 2;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* font-size: 1.2em; */
}

.slide-5 .slider-usp-row {
  position: relative;
  width: 100%;
  margin: 1em auto 1em 0;
  z-index: 2;
  padding: 0;
  text-align: center;
  display: flex;
  /* font-size: 1.2em; */
  flex-direction: row;
}

.usp-box-row .usp-slide .col-3,
.usp-box-row .usp-slide .col-9 {
  width: 100%;
}

.usp-slide {
  position: relative;
  /* height: 8.4em; */
  text-align: left;
  line-height: 1.4;
  outline-offset: -0.7em;
  font-size: 0.9em;
  transition: all .3s ease-in-out;
  /* text-align: center; */
  /* background: #ffffffbf; */
  color: #ffffff;
  text-transform: uppercase;
  padding: 0.5em 1em 1em 1em;
  /* border: 1px solid #00000038; */
  /* font-family: 'Exo 2', sans-serif; */
  display: flex;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;

  /* Smooth transition for scaling and color */
  margin-left: 10%;
}

.usp-slide span {
  display: block;
  color: #e95a3a;
  font-size: 3em;
  line-height: 0.8;
  position: relative;

  /* top: 0.3em; */
  margin-bottom: -.1em;
}

.usp-slide .col-1 {
  flex: 0 0 auto;

  /* Keeps the icon column sized appropriately */
  padding-right: 0.1em;

  /* Fine-tune spacing between the icon and text */
  text-align: center;

  /* Center the icon within the column if necessary */
}

.usp-slide .col-11 {
  flex: 1;

  /* Text column takes the remaining space */
  padding-left: 2em;

  /* No extra padding to the left of the text */
  font-size: 1.6em;
}

.usp-slide:hover {
  color: white;
  transform: scale(1.05);

  /* Slightly grows the element on hover */
}

.usp-slide:hover span {
  color: white;
}

/* ---------------------- */
/* Section-1 CSS */
.top-services {
  position: relative;
  padding: 4% 3%;
  z-index: 3;
}

/* Default link styles */
.top-services a {
    position: relative;
    background-color: #e95a3a;
    display: flex;
    z-index: 2;
    text-decoration: none;
    height: 14em;
    width: 14em;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin: 0em auto;
    outline-offset: -0.7em;
    background-size: 100%;
    border: 5px solid #ffffff;
    border-radius: 50%;
    justify-content: center;
    padding-top: 0.1em;
    overflow: visible; /* Ensure the image can extend outside the circle */
}




.top-services a {
  animation: pulse-effect 2s infinite ease-in-out;
}



@keyframes pulse-effect {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05); /* Slightly enlarge */
  }
}






/* Hover state */
.top-services a:hover {
    background-color: #000000;
    color: white;
    border-color: #ffffff;
}

/* Image appearing on hover */
.top-services a::before {
    content: '';
    position: absolute;
    top: -50px; /* Adjust for how much of the image you want to show */
    left: 50%;
    transform: translateX(-50%);
    width: 10em; /* Adjust based on image size */
    height: 30em;
    background-image: url('https://brittinghamacstaging.mystagingwebsite.com/wp-content/uploads/2024/11/falkor-mascot-dog-services-pop-up.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out; /* Smooth transition */
    z-index: -1; /* Ensure it sits behind the main content but in front of the parent background */
}

/* Show image on hover */
.top-services a:hover::before {
    opacity: 1;
    top: -280px; /* Adjust based on desired hover position */
}


.top-services a span {
  font-size: 9em;

  /* Adjustable size for the icon */
  line-height: 1;

  /* Prevents extra spacing around the icon */
  color: #ffffff;

  /* Icon color */
  text-align: center;
  display: inline-block;

  /* Ensure icon stays centered horizontally */
  transition: font-size 0.3s ease-in-out, color 0.3s ease-in-out;
  margin-top: 4px;

  /* Adjust this value to move the icon closer or farther from the top */
}



.top-services a .icon-rooftop-icon:before {
  transform: scale(1.7);
  display: block;
}

.top-services a span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2em;
  height: 0.4em;
  width: 100%;
  background-size: 0.7em;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.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: 0.8em;
  left: 0;
  width: 100%;
  font-size: 1.1em;
  padding: 0.5em;

  /* Add some padding to ensure proper spacing inside */
  line-height: 1.1;
  transition: all 0.3s ease-in-out;

  /* font-weight: 900; */
  color: white;
  z-index: 1;

  /* Ensure it sits above the ::after element */
  text-align: center;

  /* Center the text */
}

.servi-label:after {
  content: '';
  position: absolute;
  left: 50%;

  /* Center horizontally */
  transform: translateX(-50%);

  /* Center the rectangle */
  bottom: -0.2em;

  /* Slightly below the label for padding effect */
  width: calc(100% - -10%);

  /* Dynamically match the label's width with padding consideration */
  height: 3.5em;

  /* Define a fixed height */
  background: #000000;

  /* Background color */
  border-radius: 0.5em;

  /* Slightly rounded corners */
  z-index: -1;

  /* Sits behind the label text */
}

.top-services a:hover .servi-label:after {
    background: #e95a3a; /* Change to your orange on hover */
}

.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;
}

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

  40% {
      transform: scale(1.1);
  }

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

.top-services a:hover span {
  color: #ffffff;
  font-size: 7em;
  margin-top: 20px;
}

.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%; */
  /* color: #fff7f7; */
  /* text-shadow: none; */
}

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

.top-services a:hover p {
  opacity: 1;
  bottom: 0em;
}

.section-1 {
  position: relative;
  margin-top: 13em;
  padding: 0em 0em 9em 0em;
  background-image: url('/wp-content/uploads/2024/11/sec1-bg-new-t.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  z-index: 1;

  /* Ensure this section has stacking context */
  top: 0em;
  background-color: #e95a3a;
}


/* Styling for the book-service-row */
.book-service-row {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px; /* Adjust as needed */
    padding-right: 13em; /* Adjust as needed */
    margin-top: 20px; /* Adjust vertical spacing as needed */
    margin-bottom: 2em;
}

/* Styling for the book-service-col */
.book-service-col {
    text-align: center;
    padding: 10px 0px; /* Adjust inner spacing as needed */
    margin-left: auto;
    margin-right: auto;
}





.sec1-subtext {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #000000; /* Adjust for readability */
    text-transform: uppercase;
    font-weight: bold;
}

.sec1-top-col {
  padding: 2em 16em 7em 18em;
  /* z-index: 0; */
  margin-top: -13em;
}



.section-1 h1 {
  position: relative;
  font-size: 3.3em;
  margin-bottom: 0.7em;
  text-transform: uppercase;
  color: black;
  line-height: 1;
}



.section-1 h1 span {
  font-size: 0.8em; /* Smaller font size for span */
  color: #e95a3a; /* Orange color for span text */
  display: block; /* Ensures the span text breaks to a new line */
 
}


.section-1 h1 em span {
  font-size: .6em;
}

.section-1 h1 strong {
  display: block;
  font-size: 1.2em;
  /* color: black; */
}

.section-1 h1 strong span {
  color: #e95a3a;
}

.call-cta {
  position: relative;
  display: block;
  margin-top: 0.2em;
  font-family: 'Exo 2', sans-serif;
  background-color: #fdfdfd3d;
  padding: 0.2em 1em 0.2em 2em;
  border-radius: 1em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.2;
  font-size: 2em;
  width: 11em;
  transition: all .3s ease-in-out;
}

.call-cta:after {
  content: '\f095';
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  top: 0.6em;
  left: 0.4em;
  font-family: 'icomoon';
  text-align: center;
  color: #e95a3a;
  font-size: 0.9em;
  border-radius: 900em;
  border: 1px solid #00000075;
  line-height: 1.5;
  background: white;
}

.call-cta em {
  font-style: normal;
  display: block;
}

.call-cta em span {
  color: #e95a3a;
}

.call-cta strong {
  font-size: 0.63em;
  display: block;
  text-transform: none;
  color: #e95a3a;
}

.call-cta:hover {
  color: white;
  background-color: #e95a3a;
}

.call-cta:hover:after,
.call-cta:hover span {
  color: white;
}

/* ---------------------- */
/* Section-2 CSS */

.sec2-subtext {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #ffffff; /* Adjust for readability */
    text-transform: uppercase;
}



.additional-services-logos {
    gap: 1.5em; /* Space between logos */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Space above the logos row */
}

@media (max-width: 768px) {
    .additional-services-logos {
        gap: 1em; /* Reduce gap between logos */
    }

    .logo-img {
        width: 100px; /* Smaller logos for mobile screens */
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 80px; /* Even smaller logos for very small screens */
    }
}



.logo-img:hover {
    transform: scale(1.1); /* Slightly enlarge logos on hover */
}


.add-box {
    position: relative;
    padding: 1em;
    margin-top: 25%;
    background: white;
    border: 10px solid black;
    border-radius: 79px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.add-box::after {
    content: '';
    position: absolute;
    top: -288px; /* Position mascot above the box */
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background-image: url('/wp-content/uploads/2024/11/falkor-mascot-dog-services.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.add-header {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: black;
    font-family: 'poppinsbold';
    font-size: 1.4em;
    padding-bottom: 0.5em;
}

/* Service List Grid */
.service-list {
    margin-top: 3%;
    margin-left: 0;
    width: 100%;
    background: transparent;
    padding: 1% 0 1% 2%;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 columns */
    gap: 10px; /* Space between items */
    overflow-y: auto;
    max-height: 12em;
}

/* Responsive Adjustments for Service List */
@media (max-width: 1024px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns on tablets and mobile */
        padding: 0 1%; /* Adjust padding for mobile */
    }

    .add-box {
        margin-top: 15%; /* Reduce top margin for better fit */
        border-radius: 20px; /* Smaller radius on mobile */
        margin-top: 23%;
    }

    .add-box::after {
        top: -150px; /* Adjust mascot position for mobile */
        width: 150px;
        height: 150px;
    }

    .add-header {
        font-size: 1.3em; /* Smaller header font size for mobile */
    }
}

@media (max-width: 480px) {
    .service-list {
        gap: 8px; /* Slightly reduce gap on smaller screens */
    }

    .add-box {
        margin-top: 43%; /* Further reduce margin on very small screens */
    }

    .add-box::after {
        top: -120px; /* Further adjust mascot position */
        width: 120px;
        height: 120px;
    }

    .add-header {
        font-size: 1.2em; /* Even smaller font size for header */
    }
}

/* List Items */
.service-list li {
    font-size: 1em;
    list-style-type: none !important;
}

.service-list li a {
    display: flex;
    align-items: center;
    padding: 0.5em;
    color: black;
    text-decoration: none;
}

.service-list li a:hover {
    color: #e95a3a;
}

.service-list li a::before {
    content: '\f138';
    font-family: 'FontAwesome';
    font-size: 1.2em;
    color: #e95a3a;
    margin-right: 0.5em;
}

/* Scrollbar Styles */
.service-list::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #f1f1f1;
}

.service-list::-webkit-scrollbar {
    width: 5px;
}

.service-list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000000;
}


.section-2 {
    padding: 0% 10% 5% 10%;
    position: relative;
    z-index: 1; /* Maintain the stacking context */
    background-image: url('/wp-content/uploads/2024/11/sec2-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: white;
    margin-bottom: 0em;
    /* background-color: red; */
}




.sec-2-intro{
  padding: 0% 0% 0% 0%;
  z-index: 1;
  text-align: left;
}

.sec2-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3em;
    /* letter-spacing: 0.083em; */
    margin-bottom: 0.3em;
    font-family: 'poppinsbold';
    color: white;
    line-height: 1.2;
    z-index: 1; /* Ensure the header text appears above the watermark */
    text-align: left;
}

.sec2-img {
  max-height: 420px;
  object-fit: cover;
  padding: 5%;
}


.sec2-header::after {
    content: '';
    position: absolute;
    top: 500%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Truly center the watermark */
    width: 16em; /* Adjust watermark size */
    height: 16em; /* Adjust watermark size */
    /* background-image: url('/wp-content/uploads/2024/11/jerry-brittingham-logo-watermark.png'); */
    background-size: contain; /* Keep watermark aspect ratio */
    background-repeat: no-repeat;
    opacity: 0.5; /* Light opacity for watermark effect */
    z-index: 1; /* Ensure it stays behind the text */
    pointer-events: none; /* Prevent interaction */
}

.usp-wrap {
  position: relative;
  margin: 3em 0 0em 0;
}

.usp-wrap .col-lg-4 {
  padding: 0;
}

.usp-blk {
  position: relative;
  padding: 2em;
  text-align: left;
  height: 23em;
  border: 1px solid #0000002e!important;
  transition: all .3s ease-in-out;
  background-color: white;
  border-radius: 10px;
  margin: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.6s ease;
  position: relative;
  overflow: hidden;
}

.usp-blk span {
  color: #e95a3a;
  font-size: 6em;
}

.usp-label {
  font-size: 1.4em;
}

.usp-blk.box-3 {
  border: 1px solid #0000002e!important;
}

.usp-blk:hover {
  background-color: #e95a3a;
  color: white;
}

.usp-blk:hover .usp-label,
.usp-blk:hover span {
  color: white;
}

.home-form {
  position: relative;
  width: 70%;
  margin: auto;
  background-color: #000000;
  border-radius: 10px;
  border-bottom-color: #000000;
  height: 42em;
  margin-top: -7em;
  z-index: 5;
}

.home-form::after {
  content: '';
  position: absolute; /* Position relative to .home-form */
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 117%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
  background-image: url('https://brittinghamacstaging.mystagingwebsite.com/wp-content/uploads/2024/11/falkor-mascot-dog.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; /* Ensure it's behind the form */
  pointer-events: none; /* Prevent interactions */
}

.home-form iframe {
  margin-top: -3.5em;
  height: 41em!important;
  margin-bottom: -3em;
}

.home-label {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.5em;
  top: 1em;
  font-family: poppinsbold;
  text-shadow: -.1em .1em black;
  color: white;
  margin-bottom: 1em;
}

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

/* ---------------------- */



/* Section-3 CSS */

/* Section 3 Styling */
.section-3 {
  z-index: 1;
  padding: 21em 5% 5em 5%;
  position: relative;
  z-index: 1;
  background-image: url('/wp-content/uploads/2024/11/sec3-bg-new.jpg.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: 0em;
  background-color: #e95a3a;
  /* height: 100%; */
  margin-top: -3em;
}





.sec3-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3.4em; /* Biggest font for the main heading */
    margin-bottom: 0.3em;
    font-family: 'PoppinsBold', sans-serif;
    color: white;
    line-height: normal;
    z-index: 1;
}

.sec-3-row {
    display: flex;
     /* Vertically align items in the center */
    padding: 2em; /* Add padding to the row */
    align-items: center;
}

.sec3-header span {
    display: block;
    font-size: .58em; /* Smaller font size for the span text */
    text-transform: none; /* Keep the subheading normal case */
    color: white;
    line-height: 1.5;
}

.sec3-header em {
    color: #F26722; /* Your orange color for FREE */
    font-style: normal; /* Optional: makes FREE bold if desired */
}


/* Shared Styles for Both Columns */

.member-col, .finance-col {
    position: relative;
    color: white;
    text-align: center;
    padding: 2em 1em;
    font-family: 'Poppins', sans-serif;
    background-color: #e95a3a;
    border: 4px solid white;
    border-bottom-width: 10px;
    border-right-width: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    min-height: 300px;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-finance-blocks {
    gap: 1em;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Add space between elements */
    height: 100%;
    transition: transform 0.3s ease;
    padding-bottom: 2em; /* Add padding for better spacing */
    position: relative;
}

.icon-irock-financecon, .icon-cc-money {
    font-size: 7em;
    margin-bottom: 0.5em; /* Add margin below the icon */
    transition: transform 0.3s ease, margin 0.3s ease;
}

.text-container {
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 1em; /* Add space below text */
    transition: transform 0.3s ease, margin 0.3s ease;
}

/* Custom Button Styling */
.custom-btn {
    display: none; /* Hide by default */
    /* font-size: 0.8em; */
    /* padding: 1em 1em; */
    border-radius: 30px;
    background-color: #e95a39;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -.10em; /* Ensure the button stays at the bottom */
}

.custom-btn:hover {
    background-color: #e95a3a;
    color: white;
}

/* Hover State */
.member-col:hover .content-wrapper, 
.finance-col:hover .content-wrapper {
    flex-direction: column; /* Ensure icon is at the top, text in the middle, and button at the bottom */
    align-items: center; /* Center all content */
    justify-content: space-between; /* Add space between icon, text, and button */
}

.member-col:hover, .finance-col:hover {
    background-color: black;
    border-color: #e95a3a;
    color: #ffffff;
}

.member-col:hover .custom-btn, 
.finance-col:hover .custom-btn {
    display: inline-block; /* Show button on hover */
}

/* Unique Row Styling */
.button-browse-row {
    padding-right: 0em; /* Padding on the right for alignment */
    margin-top: 4em; /* Increased top margin for spacing above the row */
    /* text-align: center; */
    z-index: 4;
    position: relative;
    margin-bottom: 3em;
}

/* Unique Button Styling */
.browse-products-btn {
    margin-right: 1em; /* Space between button and logo */
    padding: 0.8em 1.5em; /* Custom padding for this button */
}

/* Logo Styling */
.partner-logo {
    max-height: 50px; /* Adjust logo size */
    padding-right: 2em; /* Ensure padding from the right edge */
    /* display: none; */
}


/* ---------------------- */


/* Section-Reviews CSS */
.section-Reviews {
  padding: 0em 4% 8em 4%;
  position: relative;
  z-index: 3;
  background-size: 100%;
  background-position: 0% 100%;
  background-repeat: no-repeat;
}

.rev-box {
  position: relative;
  background-size: 100% 100%;
  padding: 0em 6em;
  background-position: center;
}

.sec-6-col{
  padding: 0em;
}

.rev-header {
  position: relative;
  color: white;
  font-family: 'poppinsbold';
  font-size: 3.5em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* padding-left: 2.9em; */
  line-height: 1;
  /* text-shadow: -.1em .1em black; */
  text-align: center;
  /* margin-top: 7em; */
}

.rev-content{
  color: white;
  text-align: center;
  padding: 0em 10em;
  margin-top: 2em;
}

.review-btns{
  margin-top: 2em;
}

.rev-header strong {
  display: block;
  font-size: 1.5em;
}



.finance-cta {
  position: relative;
  padding: 3% 5%;
  background: #ebebeb;
}

.finance-cta span {
  display: block;
  text-align: center;
  font-size: 7em;
  width: 1.5em;
  height: 1.5em;
  margin: auto;
  border: .06em solid #d3d3d3;
  border-radius: 900em;
  line-height: 1.4;
  color: #e95a3a;
}

.finance-cta strong {
  display: block;
  position: relative;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 1.1em;
}

.finance-cta strong:after {
  content: '';
  position: absolute;
  width: 3em;
  height: .25em;
  background: #e95a3a;
  left: 0em;
  bottom: 0.5em;
}

/* ---------------------- */
/* Section-4 CSS */
.section-4 {
    padding: 24% 12% 4% 12%;
    position: relative;
    z-index: 1; /* Keep the base section below the ::after */
    background: url('/wp-content/uploads/2024/11/sec4-bg-new.png') no-repeat center center;
    background-size: cover;
    margin-bottom: 0px;
    /* background-color: red; */
    margin-top: -10em;
    background-position: top;
}

.section-4::after {
    content: '';
    position: absolute;
    top: -26em; /* Position at the bottom */
    left: 0; /* Position on the left */
    width: 45em; /* Use em units for responsive width */
    height: 45em; /* Use em units for responsive height */
    background-image: url('/wp-content/uploads/2024/11/jerry-brittingham-ac.png');
    background-size: contain; /* Ensure the image fits within its dimensions */
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2; /* Place above the background but below content */
}

.section-4::before {
    content: '';
    position: absolute;
    bottom: -2em; /* Position at the bottom */
    left: -3%; /* Position on the left */
    width: 25em; /* Use em units for responsive width */
    height: 25em; /* Use em units for responsive height */
    background-image: url('/wp-content/uploads/2024/11/falkor-mascot-dog.png');
    background-size: contain; /* Ensure the image fits within its dimensions */
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2; /* Place above the background but below content */
}









.sec4-header {
  position: relative;
  font-size: 3.4em;
  /* letter-spacing: 0.03em; */
  margin-bottom: .3em;
  line-height: 1.1;
  /* font-family: 'Exo 2', sans-serif; */
  padding-bottom: 0.7em;
  color: white;
  font-family: 'poppinsbold';
  text-align: center;
  text-transform: uppercase;
}




/* USP Box Styling */
.usp-box {
    background-color: black;
    border-radius: 15px;
    padding: 1.5em;
    margin-bottom: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Required for pseudo-element positioning */
    overflow: hidden; /* Ensures the ::after is clipped within the box */
    margin-top: 3em;
}

/* Icon Section Styling */
.usp-con {
    text-align: center;
    color: white;
    position: relative; /* Required for the ::after positioning */
    font-size: 6em;
    left: -4%;
    /* right: 1em; */
}

.usp-con::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 112%; /* Position to the right of the icon */
    transform: translate(-50%, -50%);
    width: 80px; /* Adjust the width of the image */
    height: 150%; /* Adjust the height of the image */
    background: url('/wp-content/uploads/2024/11/usp-after.png') no-repeat center center;
    background-size: contain; /* Ensures the image fits nicely */
    z-index: 1; /* Ensures it sits above the black background but below text */
}

/* Text Section Styling */
.usp-label {
    font-size: 1.8em;
    color: white;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.usp-box p {
    font-size: 1em;
    color: #ffffff;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .usp-box {
        padding: 1em;
    }

    .usp-label {
        font-size: 1.5em;
    }


}

/* Carousel Control Positioning */
.custom-control-left, .custom-control-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.custom-control-left {
  left: 1em; /* Move left control outside USP */
}

.custom-control-right {
  right: 1em; /* Move right control outside USP */
}

/* Custom Icon Styling */
.icon-chevron-circle-right {
  font-size: 2.5em; /* Adjust icon size */
  color: #ffffff; /* Set icon color */
  transition: color 0.3s ease;
}

.icon-chevron-circle-right:hover {
  color: #ffffff; /* Hover color */
}

/* Rotate for Previous Button */
.rotate-left {
  transform: rotate(180deg); /* Rotate icon for left control */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-control-left {
      left: -2em;
  }

  .custom-control-right {
      right: -2em;
  }

  .icon-chevron-circle-right {
      font-size: 1.8em; /* Slightly smaller for mobile */
  }
}

.sec4-lead-up-content {
    background-color: black;
    color: white;
    border-radius: 15px;
    padding: 0.6em 0.6em; /* Tight padding for minimal black space */
    display: inline-block;
    text-align: center;
    white-space: nowrap; /* Keep text on one line */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2em auto; /* Vertical spacing and horizontal centering */
    font-size: 1.2em;
    text-transform: uppercase;
}



/* ---------------------- */
/* Section-5 CSS */
.section-5 {
  padding: 25% 5% 60% 5%;
  position: relative;
  z-index: 1; /* Keep the base section below the ::after */
  background: url('/wp-content/uploads/2024/11/sec5-bg-new-min.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  margin: 0; /* Remove any default margin */
  /* min-height: 100vh; */ /* Make the section fill the viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  margin-top: -10em;
}

.sec-5-row{
  margin-top: -4em;
}



.sec5-header {
  position: relative;
  font-family: 'poppinsbold';
  text-transform: uppercase;
  font-size: 2em;
  /* letter-spacing: 0.05em; */
  line-height: 0.9;
  padding-left: 0.4em;
  /* border-left: .3em solid #e95a3a; */
  margin: 1em 0 1em 0;
  color: white;
}


/* General Section Styling */
.section-locations {
    padding: 3em 0;
}

.location-box {
    margin-bottom: 2em;
}

.location-content {
    background-color: black;
    border-radius: 50px;
    padding: .5em 1em;
    color: white;
    text-align: left; /* Align text to the left */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 65px; /* Default height */
    display: flex;
    align-items: center; /* Align icon and text inline vertically */
    justify-content: space-between;
    padding-left: 80px; /* Add space for the pin width + margin */
    position: relative;
    border: 3px solid white;
}

.location-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

/* Pin Icon Styling */
.location-pin {
    background-color: #e95a3a; /* Orange background */
    width: 65px; /* Default width */
    height: 100%; /* Full height of .location-content */
    border-top-left-radius: 50px; /* Match the border radius of .location-content */
    border-bottom-left-radius: 50px; /* Match the border radius of .location-content */
    border-right: 3px solid white; /* White border on the right */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute; /* Ensure it stays on the left of .location-content */
    left: 0;
    top: 0;
    flex-shrink: 0; /* Prevent shrinking */
}

.location-pin .icon-map-marker {
    font-size: 1.5em;
    color: #000000;
}

/* Location Name */
.location-label {
    font-size: 1.1em;
    font-weight: bold;
    flex-grow: 1; /* Ensure it takes the remaining space */
    color: white;
    line-height: 1.1;
}

/* Hide Location Name and Icon on Hover */
.location-content:hover .location-label,
.location-content:hover .location-pin {
    opacity: 0;
    visibility: hidden;
}

/* Services List Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent overlay */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5em;
    gap: 1em; /* Space between Heating and Cooling */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-content:hover .hover-overlay {
    opacity: 1;
    visibility: visible;
}

/* Services List Inline Styling */
.services-list {
    list-style: none;
    display: flex; /* Inline display for services */
    padding: 0;
    margin: 0;
    gap: 1em; /* Space between Heating and Cooling */
}

.services-list li {
    margin: 0;
}

.service-link {
    text-decoration: none;
    color: #e95a39;
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Adjustments */

/* For screens between 1200px and 768px */
@media (max-width: 1200px) and (min-width: 769px) {

  .iflowpro-header {
    font-size: 2.5rem !important;
}


.section-6 {
    position: relative;
    padding: 31% 6% 7% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec-6-bg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -18em;
}
  
    .location-content {
        height: 60px; /* Slightly smaller height */
        padding-left: 75px; /* Adjust padding for smaller pin */
        border-radius: 45px; /* Slightly smaller border radius */
    }

    .location-pin {
        width: 60px; /* Slightly smaller pin */
        height: 100%;
        border-top-left-radius: 45px; /* Match reduced border radius */
        border-bottom-left-radius: 45px; /* Match reduced border radius */
    }

    .location-label {
        font-size: 1em; /* Adjust font size */
    }

    .service-link {
        font-size: 0.95em; /* Adjust font size */
    }
}

/* For screens between 768px and 576px */
@media (max-width: 768px) and (min-width: 577px) {


    .location-content {
        height: 55px; /* Reduce height */
        padding-left: 70px; /* Adjust padding for smaller pin */
        border-radius: 40px; /* Smaller border radius */
    }

    .location-pin {
        width: 55px; /* Smaller pin */
        height: 100%;
        border-top-left-radius: 40px; /* Match reduced border radius */
        border-bottom-left-radius: 40px; /* Match reduced border radius */
    }

    .location-label {
        font-size: 0.95em; /* Smaller font size */
    }

    .service-link {
        font-size: 0.9em; /* Adjust font size */
    }

    .location-box {
        width: 50%; /* Two columns */
        float: left;
    }
}

/* For screens 576px and below */
@media (max-width: 576px) {
    .location-content {
        height: 45px; /* Further reduce height */
        padding-left: 51px; /* Adjust padding */
        border-radius: 30px; /* Smaller border radius */
    }

    .location-pin {
        width: 45px; /* Smaller width */
        height: 100%;
        border-top-left-radius: 30px; /* Match reduced border radius */
        border-bottom-left-radius: 30px; /* Match reduced border radius */
    }

    .location-label {
        font-size: 0.85em; /* Smaller font size */
        /* line-height: 1; */
    }

    .service-link {
        font-size: 0.8em; /* Further reduce font size */
    }

    .location-box {
        width: 50%; /* Two columns */
        float: left;
    }
}





/* ---------------------- */
/* Section-6 CSS */

/* General Section Styling */
.iflowpro-banner {
    background-color: #000000; /* Black background */
    padding: 21px 25px;
    color: #ffffff;
    border-radius: 50px; /* Rounded corners for a softer look */
    max-width: 1400px; /* Limit the section's width for a more rectangular appearance */
    margin: 0 auto; /* Center the section horizontally */
}

/* Header and Features */
.iflowpro-header {
    font-size: 3.2rem;
    /* line-height: 1.4; */
    margin-bottom: 20px;
    color: white;
}

.text-orange {
    color: #f26722; /* Orange color for emphasis */
}

.iflowpro-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.iflowpro-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #f26722; /* Orange text */
    font-size: 1rem;
}

.iflowpro-features li .icon-check1 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    /* background-color: #f26722; */
    /* mask: url('/path/to/check-icon.svg') no-repeat center; */
    /* -webkit-mask: url('/path/to/check-icon.svg') no-repeat center; */
    /* mask-size: contain; */
    /* -webkit-mask-size: contain; */
}

/* Brochure Button */
.iflowpro-brochure {
    display: inline-block;
    margin-top: 20px;
    background-color: #f26722!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
    color: #ffffff!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
    padding: 10px 20px !important;!;!imporant;!imporan;!impora;!impor;!impo;!imp;!im;!i;!;
    border-radius: 50px !important;!;
    text-transform: uppercase;
    font-size: 1rem !important;!;
}

/* Video Styling */
.iflowpro-video-container {
    position: relative;
    text-align: center;
    margin-bottom: 0px; /* Space between video and image */
}

.iflowpro-video-wrapper {
    position: relative;
    width: 80%; /* Smaller video */
    margin: 0 auto;
    padding-top: 45%; /* Reduced aspect ratio for a smaller height */
}

.responsive-video-banner {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ffffff; /* Optional: Border around the video */
}

.iflowpro-learn-more {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8) !important;!;
    color: #ffffff !important;!;
    padding: 10px 20px !important;!;
    font-size: 1rem !important;!;
    border-radius: 5px !important;!;
    text-decoration: none;
}

.iflowpro-learn-more:hover {
    background-color: #f26722;
    color: #000000;
}

/* Product Image Styling */
.iflowpro-image img {
    display: block;
    max-width: 101%;
    margin: 10px auto; /* Center the image and add spacing */
    /* border: 2px solid #ffffff; */ /* Optional: Border for emphasis */
    z-index: 1;
    position: relative;
}

.section-6 {
  position: relative;
  padding: 45% 6% 7% 6%;
  background-size: 100%;
  background: url('/wp-content/uploads/2024/11/sec-6-bg.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  z-index: 3;
  background-repeat: no-repeat;
  margin-top: -29em;
}

.section-6 .btn {
    width: 100%; /* Full width inside section 6 */
    max-width: none; /* Remove the 300px max-width */
    padding: 16px 40px; /* Adjust padding */
    background-color: #000000; /* Example: change button background */
    border-radius: 50px; /* More rounded */
    font-size: 16px; /* Slightly larger font size */
    color: #ffffff; /* Ensure text color remains white */
}

.section-6 .btn:hover {
    background-color: #d67232; /* Example: Darker hover background */
    color: #f5f5f5; /* Slightly lighter text color on hover */
}
.scroll-accordion {
  position: relative;
  overflow-y: scroll;
  height: 20em;
  margin-top: 3%;
  margin-left: 0rem;
  background: #f9f9f900;
  padding: 0% 3% 1% 4%;
  overflow-x: hidden;
  text-align: left;
}

.scroll-accordion .accordion-button {
  font-family: 'Exo 2';
  background-color: #e95a3a;
  color: white;
  font-size: 1.3em;
  text-shadow: -0.05em 0.05em black;
  padding: 0.6em 0.6em;
}

.scroll-accordion .accordion-button span {
  color: white;
  font-size: 4.5em;
  padding-right: 0.3em;
  padding-left: 0.1em;
  line-height: 0.6;
}

.scroll-accordion .accordion-button[aria-controls="colap01"] {
  border-radius: 900em;
}

.scroll-accordion .accordion-button:hover {
  background-color: #e95a3a;
}

/* *  STYLE 1 */
.scroll-accordion::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 49%);
  border-radius: 15px;
  background-color: #00000029;
}

.scroll-accordion::-webkit-scrollbar {
  width: 5px;

  /* background-color: #F5F5F4; */
}

.scroll-accordion::-webkit-scrollbar-thumb {
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 3px rgb(0 0 0 / 36%);
  background-color: #000000;
}

.sec6-header {
  position: relative;
  font-family: 'Exo 2';
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: .4em;
}

.sec6-header span {
  color: #e95a3a;
  display: block;
}

.truck-image {
  position: absolute;
  display: block;
  bottom: 0;
  width: 50%;
  right: 0;
}

.truck-image:after {
  content: '';
  position: absolute;
  bottom: -8.3em;
  right: -4em;
  width: 24em;
  height: 12em;
  background-size: 22em;
  background-repeat: no-repeat;
  background-position: bottom center;
}

/* ---------------------- */


/* Section 7 */
.section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background: url('/wp-content/uploads/2024/11/sec8-bg.jpg.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  z-index: 3;
  background-repeat: no-repeat;
  margin-top: -12em;
}

.section-7::after {
    content: '';
    position: absolute;
    top: -2em; /* Position slightly above the section */
    left: -3%; /* Position slightly off the left edge */
    width: 25em; /* Use em for responsive sizing */
    height: 25em; /* Keep proportions responsive */
    background-image: url('/wp-content/uploads/2024/11/falkor-mascot-dog-lying.png');
    background-size: contain; /* Fit the mascot within the set dimensions */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center; /* Center the mascot within its box */
    z-index: 2; /* Place it above the background but below content */
}



/* Section 7 Header Styling */
.sec7-header {
  font-size: 4.5em;
  font-weight: bold;
  margin-bottom: 1em;
  color: black;
  line-height: 0.9;
  text-transform: uppercase;
  /* padding: 0 5em 0 5em; */
}

.sec7-header span {
  font-size: .4em;
  color: black;
  /* line-height: normal; */
}

.faq-header {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 1em;
    color: black;
    line-height: 0.9;
    margin-top: 2em;
    text-align: center;
}

.faq-btn{
  margin-bottom: 7em;
}

.faq-header span {
  font-size: .6em;
  color: black;
  /* line-height: normal; */
}

.sec7-lead-up-content {
    /* background-color: black; */
    color: #000000;
    /* border-radius: 15px; */
    /* padding: 0.6em 0.6em; */
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    margin: 2em auto;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Unique USP Box Styling for Section 7 */
.usp2-box {
  background-color: white;
  border-radius: 44px;
  text-align: center;
  padding: 4em 2em 4em 2em;
  margin: 2em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.6s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.usp2-box:hover {
  background-color: #e95a3a;
  transform: none; /* Remove rotate effect for text */
  color: white; /* Ensure text color changes */
}

.usp2-con {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.3em;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 6em;
  color: #e95a39; /* Default icon color */
}

.usp2-box:hover .usp2-con {
  color: white; /* Change icon color on hover */
}

.usp2-con img, .usp2-con svg {
  max-width: 70%;
  height: auto;
}

.usp2-label {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0.9em 0;
  transition: color 0.3s ease;
  position: relative; /* Ensure the parent element is the reference point for ::after */
}

.usp2-label::after {
  content: ''; /* Ensures the pseudo-element is rendered */
  display: block;
  width: 70px; /* Adjust the width of the line */
  height: 7px; /* Height of the line */
  background-color: #f26722; /* Set the color */
  border-radius: 5px; /* Round the edges */
  margin: -.2em 0; /* Add spacing and center it */
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* Centers the line */
  bottom: -8px; /* Adjust the position below the element */
  
}

.usp2-box:hover .usp2-label::after {
    background-color: white; /* Change to white on hover */
}

.usp2-box p {
  font-size: 1em;
  margin: 0;
  transition: color 0.3s ease;
}

/* Change Text and Label Color on Hover */
.usp2-box:hover .usp2-label,
.usp2-box:hover p {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sec7-header {
    font-size: 3em;
  }

  .usp2-box {
    margin-bottom: 1.5em;
  }

  .usp2-label {
    font-size: 1.6em;
  }

  .usp2-box p {
    font-size: 0.9em;
  }
}



/* General Styling for the New Accordion */
.accordion.count-blocks .accordion-item {
  margin-bottom: 1em;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
}

.accordion.count-blocks .accordion-button {
  background-color: #e95a39; /* Light gray background */
  color: #000000; /* Black text */
  font-size: 1em;
  font-weight: bold;
  padding: 1.25rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion.count-blocks .accordion-button:focus,
.accordion.count-blocks .accordion-button:hover {
  background-color: #e95a39; /* Red background on hover */
  color: white; /* White text on hover */
}

.accordion.count-blocks .accordion-button.collapsed {
  background-color: #000000; /* Reset to light gray when collapsed */
  color: #ffffff; /* Reset to black text when collapsed */
}

.accordion.count-blocks .accordion-button:after {
    background-image: url(/wp-content/uploads/2021/07/faq-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 1em;
    height: 1em;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    filter: brightness(0) invert(1); /* Makes the icon white */
}

.accordion.count-blocks .accordion-button:hover:after,
.accordion.count-blocks .accordion-button:focus:after {
    filter: brightness(0) invert(1); /* Ensures the arrow remains white on hover or focus */
}

.accordion.count-blocks .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


.accordion.count-blocks .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg); /* Rotate arrow when expanded */
}

.accordion.count-blocks .accordion-body {
  background-color: #f3f3f3; /* Slightly darker gray background */
  padding: 1em;
  font-size: 0.9em;
  color: #333333; /* Dark gray text */
  border-top: 1px solid #e6e6e6;
}

.accordion.count-blocks .accordion-item:last-of-type .accordion-body {
  border-bottom: 1px solid #e6e6e6; /* Ensure consistent bottom border */
}

/* ---------------------- */


/* Section 8 */

.section-8 {
  position: relative;
  padding: 27% 6% 5% 6%;
  background-size: 100%;
  background: url('/wp-content/uploads/2024/11/sec8-bg-new.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  z-index: 3;
  background-repeat: no-repeat;
  margin-top: -15em;
}


.sec8-header {
  font-size: 3.5em;
  font-weight: bold;
  /* margin-bottom: 1em; */
  color: black;
  line-height: 0.9;
  margin-top: 1em;
}


.section-articles {
  padding: 3em 0;
}

.article-box {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-image {
  width: 40%; /* Adjusted width for uniform image size */
  flex-shrink: 0; /* Prevent shrinking */
}

.article-image img {
  border-radius: 10px; /* Rounded corners for images */
  width: 100%; /* Ensure image fits the container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensures uniform cropping for different image sizes */
  aspect-ratio: 4 / 3; /* Consistent image shape (slightly rectangular) */
}

.article-content {
  text-align: left;
  flex-grow: 1;
  padding-left: 1em; /* Space between image and content */
}

.article-category {
  color: #e95a3a; /* Orange text for category */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  font-size: 1.2em;
  margin-top: 0.5em;
}

.article-title {
  font-size: 1.7em;
  margin-bottom: 0.5em;
  color: black;
  font-family: poppinsregular;
  line-height: normal;
}

.custom-article-btn {
    /* font-size: 0.85em; */ /* Slightly smaller font size */
    font-weight: bold;
    text-transform: uppercase;
    /* display: inline-block; */
    /* padding: 25px 10px; */ /* Reduced padding for a smaller button */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .article-box {
    flex-direction: column; /* Stack image and content vertically on small screens */
    text-align: center; /* Center align text and button */
  }

  .article-image {
    width: 100%; /* Full width for stacked layout */
  }

  .article-content {
    padding-left: 0; /* Remove padding in stacked view */
  }

  .custom-article-btn {
    /* font-size: 0.8em; */
  }
}




/* ---------------------- */


.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 #00000024; /* Line where image should align */
  font-family: 'poppinsbold';
  width: 100%;
  margin-top: 0em;
}

.close-cta:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3em;
    top: calc(-3em - 1px); /* Adjust to ensure bottom of image aligns with border-top */
    left: 0;
    background-image: url('/wp-content/uploads/2024/11/falkor-mascot-dog-services.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom; /* Align image bottom to pseudo-element bottom */
    pointer-events: none;
}




/* --------------------------- */
.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;
  border-radius: .7em;
  letter-spacing: .06em;
  text-decoration: none;
  font-size: 0.9em;
  margin: 0;
  border-radius: 0em;
  position: relative;
  z-index: 1;
  background: #e95a3a;
  width: 100%;
  border: 0;
}

.sched-row button.pop-button:before {
  transform: scale(1);
}

.sched-row button.pop-button {
  position: relative;
  color: white;
  background-color: #000000;
}

.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: #ffffff;
}

.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;

  /* top: -.1em; */
  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;
}

/* Footer Section CSS */
/* Footer CTA */

.footer__logo {
    margin-top: -4em;
    margin-bottom: 1em;
    display: inline-block;
    position: relative;
    transform-style: preserve-3d; /* Enable 3D effect */
    transition: transform 0.6s ease-in-out; /* Smooth flip effect */
    transform-origin: center;
    perspective: 1000px; /* Adds depth to the 3D flip */
}

.footer__logo:hover {
    transform: rotateY(180deg); /* Flip the logo horizontally */
}

.footer__logo {
    margin-top: -4em;
    margin-bottom: 1em;
    display: inline-block;
    position: relative;
    transform-style: preserve-3d; /* Enable 3D effect */
    transition: transform 0.6s ease-in-out; /* Smooth flipping transition */
    perspective: 1000px; /* Add depth for a realistic effect */
    background: url('/path-to-your-logo.png') no-repeat center center; /* Logo as background */
    background-size: contain; /* Ensure the logo scales appropriately */
}

.footer__logo:hover {
    transform: rotateY(360deg); /* Full rotation for flipping effect */
}



.footer__logo {
  margin-top: -4em; /* Add top margin */
  margin-bottom: 1em; /* Add bottom margin */
}

.footer__phone {
  margin-top: 1em; /* Add top margin */
  margin-bottom: 1em; /* Add bottom margin */
  font-size: 1.8em;
  font-weight: bold;
}

.footer__address{
    font-size: 1.2em;
}

.aligncenter.size-full.wp-image-879 {
  display: block; /* Center the image */
  margin: 1.5em auto; /* Add margin top and bottom with auto horizontal centering */
  max-width: 100%; /* Ensure it doesn't exceed container width */
}


.social-icons {
  display: flex;
  justify-content: center; /* Center the icons horizontally */
  align-items: center; /* Align the icons vertically */
  gap: 1em; /* Space between icons */
  margin-top: 1em;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* Adjust icon container size */
  height: 50px;
  background-color: transparent; /* No background */
  border-radius: 50%; /* Ensure circular icons if needed */
  font-size: 2em; /* Increase icon size */
  color: black; /* Black icon color */
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #e95a3a; /* Change icon color to orange on hover */
  transform: scale(1.2); /* Slightly enlarge on hover */
}


.site-footer {
  background-color: #e95a3a !important; /* Orange background */
  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 Buttons */
.footer__button a {
 
  color: white !important; /* White text for secondary buttons */
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.8em; /* Add space between buttons */
  display: block;
  padding: 0.8em 1.2em; /* Adjust button padding */


}

.footer__button a:hover {
  background-color: white; /* Hover background white */
  color: #e95a3a !important; /* Hover text orange */
  border: 4px solid #000000;
}




.footer-txt {
  text-align: center;
  color: #ffffff; /* White text */
  letter-spacing: .03em;
  font-size: 1.2em;
  margin-top: 1em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-family: 'Exo 2';
}

.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: black;
  /* 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: #e95a39!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;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------Inner Pages Css ------------------------------------------------------------------ */
/* Global Inner CSS */


.content-links-section {
    background-size: cover; /* Ensures the image covers the entire section */
    padding: 50px; /* More generous padding for better spacing */
    border-radius: 18px; /* Rounded corners */
    overflow: hidden; /* Ensures child elements stay within the rounded edges */
    background-repeat: no-repeat;
}

.content-links-section.py-5 {
    background: url('/wp-content/uploads/2024/12/inner-page-bg.jpg') no-repeat center center; /* Background image */
    background-size: cover;
    padding: 50px;
    border-radius: 18px;
    overflow: hidden;
}



.content-container {
    display: flex; /* Enables side-by-side layout */
    gap: 20px; /* Space between boxes */
    justify-content: center; /* Centers the boxes horizontally */
    flex-wrap: wrap; /* Stacks the boxes vertically on smaller screens */
}

.content-box {
    background-color: #ffffff; /* White background for boxes */
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    padding: 20px; /* Padding inside the box */
    width: 300px; /* Fixed width for consistent sizing */
    text-align: center; /* Centers text inside the box */
}

.content-box h3 {
    font-family: 'Poppins', sans-serif !important; /* Font for headers */
    color: #000000 !important; /* Orange header color */
    font-size: 1.5rem !important; /* Larger font size for emphasis */
    margin-bottom: 15px !important; /* Space below header */
    border-bottom: 2px solid #e95a3a !important; /* Underline effect */
    display: inline-block !important;
    padding-bottom: 5px !important;
}


.content-box ul {
    list-style: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.content-box li {
    margin-bottom: 10px; /* Space between list items */
}

.content-box li a {
    font-family: 'Poppins', sans-serif;
    color: #000; /* Black text for links */
    font-size: 1rem; /* Regular font size */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease;
}

.content-box li a:hover {
    color: #e95a3a; /* Orange hover effect */
    text-decoration: underline; /* Adds underline on hover */
}

@media (max-width: 768px) {
    .content-box {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Space between stacked boxes */
    }
}



.custom-google-facebook-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em; /* Adds space between the icons */
    flex-wrap: wrap; /* Allows the elements to wrap when there isn't enough space */
}

.custom-google-icon,
.custom-facebook-icon {
    flex: 1; /* Ensures the items take equal width */
    max-width: 400px; /* Optional: Limits the maximum width of each icon */
    text-align: center; /* Centers the content inside each icon box */
}

@media (max-width: 768px) {
    .custom-google-facebook-icons {
        flex-direction: column; /* Stacks the items vertically on smaller screens */
        gap: 0em; /* Adjust the gap for better spacing when stacked */
    }
}



.btn-small-custom {
    display: inline-block; /* Ensure proper button layout */
    padding: 5px 15px !important; /* Add internal spacing to prevent text from touching edges */
    border-radius: 1.5em; /* Rounded corners */
    font-size: 14px; /* Smaller text size */
    font-weight: bold; /* Bold text */
    color: #ffffff; /* White text */
    background-color: #e95a3a; /* Orange background */
    text-align: center; /* Center-align the text */
    text-transform: uppercase; /* Uppercase text */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth hover transition */
    cursor: pointer; /* Pointer cursor on hover */
    white-space: nowrap; /* Prevent text wrapping */
}

.btn-small-custom:hover {
    background-color: #d45034; /* Slightly darker orange on hover */
}





.coupon-tabs * {
  margin: 0;
  padding: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* margin-top: 2em; */
}

.coupon-tabs .tabs {
  width: 40%;
  float: none;
  list-style: none;
  position: relative;
  margin: 0;
  text-align: left;
  border: 0;
  margin-top: 3em;
  background: #fefefe00;
  height: 30em;
}

.coupon-tabs h2{
  font-weight: 900;
  color: #e85a39;
  margin-bottom: 0.8em;
  position: relative;
  font-size: 2.5em;
}

.coupon-tabs h2:after {
    content: " ";
    position: absolute;
    bottom: -0.4em;
    height: 0.14em;
    z-index: 3;
    border-radius: 900em;
    width: 2em;
    transition: all .3s ease-in-out;
    left: 0em;
    background-color: #e95a3a;
}

.coupon-tabs .button{
  text-transform: uppercase;
  letter-spacing: .08em;
  background-color: #e95a3a;
  padding: .85em 3em;
  font-size: 0.9em;
}

.coupon-tabs .tabs li {
  float: left;
  display: block;
  width: 33.3%;
}
.coupon-tabs .tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.coupon-tabs .tabs label {
  display: block;
  padding: 1em 0.4em;
  border-radius: 2px 2px 0 0;
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  background: #8e44ad00;
  cursor: pointer;
  position: relative;
  top: -2em;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #0000001f;
  left: 1%;
  margin: 0.4rem 0.1rem -0.1rem 0.1rem!important;
  height: 10.5em;
}

.cat-label{
  position: absolute;
  font-size: 0.7em;
  bottom: 1em;
  width: 100%;
  left: 0;
  letter-spacing: .08em;
}

.coupon-tabs .tabs label img{
  height: 5.3em;
}

.coupon-tabs .tabs label:hover {
  background: #e85a39;
  color: #ffffff;
}
.coupon-tabs .tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 140%;
  line-height: 25px;
  padding: 3em 3em;
  position: absolute;
  color: white;
  top: -6.2%;
  right: -140%;
  font-size: 0.8em;
  background: #0000001f;
  background-image: url(/wp-content/uploads/2021/03/texture-bg.jpg);
}
.coupon-tabs .tabs [id^="tab"]:checked + label {
  /* top: 0; */
  /* padding-top: 17px; */
  background: #e85a39;
  color: #ffffff;
}
.coupon-tabs .tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

.product-list{

}


.product-list {
    overflow-y: scroll;
    height: 22.4em;
    margin-top: 5%;
    margin-left: 0rem;
    width: 99%;
    background: rgba(249,249,249,0);
    padding: 1% 2% 1% 2%;
    overflow-x: hidden;
    font-size: 0.8em;
}

.product-list li {
  width: 100%!important;
  border-bottom: 1px solid white;
  padding: 1%;
  }
  
/*
 *  STYLE 1
 */

.product-list::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 15px;
  background-color: #ffffff29;
}

.product-list::-webkit-scrollbar
{
  width: 5px;
  /* background-color: #F5F5F4; */
}

.product-list::-webkit-scrollbar-thumb
{
  border-radius: 15px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  background-color: #e95a3a;
}

.product-list .small-9 strong{
  color: #e95a3a;
  font-size: 1.2em;
}

.product-list .small-3 img{
  width: 75%;
}











.finance-inner-btn {
    display: inline-block !important; /* Ensures the button behaves as a block */
    font-family: 'Poppins', sans-serif; /* Uses a modern font */
    text-align: center; /* Centers text inside the button */
    line-height: 1; /* Adjusts vertical alignment for better readability */
    color: #fff !important; /* Ensures text color is white */
    background-color: #e95a3a !important; /* Sets the button's background color */
    padding: 0.1em 1.5em; /* Provides consistent spacing (top/bottom and left/right) */
}

.finance-inner-btn:hover {
    background-color: #d4551e !important; /* Slightly darker on hover */
}

.finance-inner-btn:active {
    background-color: #b8451c !important; /* Darker when clicked */
    transform: scale(0.98); /* Click effect */
}


.side-label-inner {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.5em;
  top: 2em; */
  font-family: 'RobotoSlab', sans-serif;
  color: rgb(255, 255, 255);
  /* text-shadow: -.1em .1em black; */
  margin-bottom: 1em;

}

.side-form-inner iframe {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 50em !important;
  margin-bottom: -3em;
}


.side-form-inner {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 56em !important;
  margin-bottom: -3em;
  border-radius: 35px;
}

.inside-content {
  padding-bottom: 8%;
}

.insideimage {
  position: relative;
  padding: 6% 4% 8% 4%;
  margin-top: 17.5%;
  border-bottom: 0.2em solid #e95a3a;
  background: url('/wp-content/uploads/2025/12/inner-banner-2-new.jpg') no-repeat;
  background-size: cover;
  background-position: 61% 18%; /* Adjust this to move the image */
  z-index: 12;
  /* background-position: 473px -158px; */ /* 10px right, 20px up */
}


.insideimage:after {
  content: '';
  position: absolute;
  left: -20%;
  bottom: 0%;
  height: 113%;
  width: 80%;
  background: #000000;
  transform: skew(-20deg, 0deg);
}

.insideimage .slider-usp {
  bottom: -2em;
  position: relative;
  z-index: 3;
  width: 65%;
  margin: 0em auto -1em 0;
}

.insideimage .truck-image:after {
  bottom: 0em;
  right: 2em;
}

.insideimage .slider-usp.row>* {
  padding: 0 .4em;
}

.insideimage .slider-usp .usp-box p {
  opacity: 1;
  font-size: 1.1em;
  bottom: -1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.1;
}

.insideimage .slider-usp .usp-box {
  font-size: 0.8em;
  width: 100%;
  /* color: black; */
  height: 11.8em;
  text-align: center;
  border: 3px solid #ffffff;
  background: #e95a3a;
  border-radius: 15px;
}

.insideimage .slider-usp .usp-box span {
  /* margin-bottom: 2em; */
  font-size: 5.5em;
  /* line-height: 0.7; */
  margin: -0.1em auto 0.05em auto;
  left: 0em;
  color: #ffffff;
}

.banner-head {
  position: relative;
  color: #ffffff;
  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: -0.1em;
  background: #e95a3a;
  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: #e95a3a;
  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: #e95a3a;
}

.inside-section-3 h2,
.inside-section-4 h2 {
  font-size: 2em;
}

.inside-section-4 h2 {
  color: #343434;
}

.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-image: url(/wp-content/uploads/2023/06/np-crv.png);
  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: #e95a39;
  letter-spacing: .08em;
}

.inside-section-3 .accordion-item,
.inside-section-4 .accordion-item {
  background-color: #d7eef1;
  color: #070707;
}

.inside-section-3 .accordion-button:not(.collapsed),
.inside-section-4 .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #000000;
}

.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;
}

.inside-section-3 .accordion-button::after,
.inside-section-4 .accordion-button::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.inside-section-3 .accordion-button:hover,
.inside-section-4 .accordion-button:hover {
  background-color: #18134f;
  color: white!important;
}

.inside-section-3 .accordion-button:hover h2,
.inside-section-4 .accordion-button:hover h2 {
  color: white;
}

.inside-section-3 .accordion-button:not(.collapsed) h2,
.inside-section-4 .accordion-button:not(.collapsed) h2 {
  color: white;
}

.inside-section-3 .bullet-list {
  position: relative;

  /* color: white; */
}

.inside-section-3 .bullet-list li {
  padding: 0.1em 0.1em 0.1em 1.8em;
}

.inside-section-3 .bullet-list li:after {
  top: 0.05em;
  left: 0.2em;
}

.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;
  font-family: 'poppinsbold';
  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;
}

.insideimage .not-active {
  display: none;
}

.insideimage .activate {
  position: relative;
  display: block!important;
  z-index: 9;
}

.insideimage .activate a {
  color: white;
  position: relative;
  z-index: 3;
  transition: all .3s ease-in-out;
  display: block;
  padding-left: 0em;
  border-radius: 900em;
  letter-spacing: .09em;
  font-size: 1.2em;
  margin-bottom: -1em;
  width: 16.5em;
  font-family: 'poppinsbold';
  text-align: center;
  margin-left: 3.8em;
}

.insideimage .activate a:hover {
  background-color: #5b6363;
}

/* Opening CTA Inner CSS */
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: #ffffff !important;
}

blockquote:after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  height: 6.6em;
  width: 4.7em;
  transition: all .3s ease-in-out;
  background-position: center;
  right: -.9em;
  background-image: url(/wp-content/uploads/2024/11/falkor-mascot-dog-services-pop-up.png);
}

blockquote:before {
  content: '';
  position: absolute;
  bottom: 0em;
  left: 0em;
  height: 100%;
  width: 100%;
  transition: all .3s ease-in-out;
  z-index: -01;
  background-color: #000000;
  border-top-right-radius: 0em;
  border-radius: 1em;
  border-top-left-radius: 0em;
  border-bottom-left-radius: 0em;
  border-left: 0.8em solid #e95a3a;
  border-top: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}

blockquote a {
  color: #e95a39;
  text-decoration: none;
}

blockquote a:hover {
  color: #ffffff;
}

#breadcrumbs {
  border-bottom: solid 1px rgba(0, 0, 0, 0.18);
  color: black;
  z-index: 0;
  position: relative;
  margin-bottom: 0px;
  margin-right: auto;
  margin-top: 1.5em;
}

.inside-content h1 {
  margin-bottom: -1px;
  color: #e95a3a;
  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: #596161;
  font-weight: 900;
  font-size: 1.4em;
}

.inside-content h5 {
  font-size: 1.3em;
}

.deal-price {
  position: relative;
  font-weight: 900;
  font-size: 4em;
  line-height: 1.2;
  text-shadow: -0.08em 0.09em 0.2em #00000005;
  color: #e95a39;
  font-family: 'poppinsbold';
  margin-top: 0.4em;
}

.deal-price span {
  display: block;
  font-size: 0.5em;
  padding: 1% 7%;
}

.deal-offer {
  position: relative;
  font-size: 1.4em;
  line-height: 1.4;
  display: block;
  margin: 2% 0 2% 0;
}

.deal-offer span {
  display: block;
  font-size: .7em;
}

.coup-page {
  position: relative;
  padding-bottom: 7%;
}

.coup-page .text-highlight {
  margin-bottom: 3em;
}

.coup-page .home-coup img {
  width: 11em;
  left: 0;
  margin-bottom: 0.8em;
}

.coup-page .col-lg-6 {
  margin: 0em  0 2.5em 0!important;
}

.coup-page .home-coup {
  text-align: center;
  width: 90%;
  padding: 9% 10% 5% 10%;
}

.coup-page .home-coup .btn {
  margin: 0.4em auto 1em auto;
  background-color: #66bee3;
  border: 0;
  color: white;
  margin: 1em auto;
  display: block;
  width: 90%;
}

.coup-page .home-coup p {
  font-size: .8em;
}

/* List Style 1 Inner CSS */
.bullet-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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 10px;
}

.bullet-list li {
  position: relative;
  padding: 0.2em .1em 0.2em .1em;
  padding-left: 2em;
  font-size: 1.2em;
  font-weight: 500;
  width: 48%;
}

.bullet-list li:after {
  content: "\f058";
  font-family: 'icomoon' !important;
  position: absolute;
  top: 0;
  left: 0;
  color: #e95a3a;
  font-size: 1.333em;
  border-radius: 50%;
  line-height: 1;
}

.bullet-list li a {
  color: #e95a39;
  text-decoration: none;
}

.bullet-list li a:hover {
  color: #000000;
}

/* ---------------------- */
/* List Style 2 Inner CSS */
.check-list li {
  display: block!important;
  padding: .8em 1em .8em 4em!important;
  border-bottom: solid 1px rgba(0, 0, 0, 0.14)!important;
  position: relative!important;
  line-height: 1.5em!important;
  text-align: left!important;
  width: 100%!important;
}

.check-list {
  display: block!important;
  margin: 1em 0!important;
  padding: 0!important;
  border: solid 1px rgba(0, 0, 0, 0.08)!important;
}

.check-list li:before {
  content: "\f00c";
  font-family: 'icomoon' !important;
  color: #e95a3a;
  display: block;
  position: absolute;
  font-size: 1.2em;
  top: 0.8em;
  left: 1.06em;
  z-index: 2;
}

.check-list li:after {
  content: '';
  position: absolute;
  background-size: 100%;
  width: 2.5em;
  height: 2.5em;
  top: 0.4em;
  left: 0.3em;
  background-repeat: no-repeat;
}

.check-list li strong {
  text-transform: uppercase;
  font-size: 1.025em;
  color: #e95a39;
}

.check-list li a {
  color: #e95a39!important;
}

.check-list li a:hover {
  color: #fb8500!important;
}

/* ------------------------------------------ */
/* Page creator Template */
.pc-default {
  position: relative;
  padding: 2% 2%;
  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 .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;
}

/* Flex Template */
.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: #000000;
  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%;
}

/* Opening CTA Inner CSS */
.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: #e95a3a;
  position: absolute;
  top: 99%;
  right: 20px;
}

.text-highlight p {
  margin-bottom: 0;
}

.side-coup {
  position: relative;
  width: 100%;
  margin: 2em auto 2em auto;
  background-color: #f4f9ff;
  background-size: 55%;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 5% 10% 7% 10%;
  outline: .3em dashed #080808;
  outline-offset: -1em;
  text-align: center;
  border-radius: 2em;
}

.side-coup img {
  width: 6em;
  display: block;
  margin: -2.2em auto -0.8em auto;
  z-index: 3;
  position: relative;
}

.side-coup p {
  font-size: 0.8em;
}

.side-price {
  position: relative;
  margin-top: 2%;
  font-weight: 900;
  font-size: 4.2em;
  color: #e95a39;
}

.side-offer {
  font-size: 1.3em;
  position: relative;
  margin-bottom: 3%;
  letter-spacing: .02em;
}

.side-offer span {
  display: block;
  font-size: .7em;
}

.side-coup .btn-primary {
  display: block;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #ffffff!important;
  letter-spacing: .08em;
  padding: 0.6em 1em;
  font-size: 1em;
  width: 90%;
  margin: 1em auto;
}

.side-label {
  text-align: center;
  font-size: 1.7em;
  font-weight: 900;
  position: relative;
  font-family: 'Exo 2';
  letter-spacing: .05em;
  margin-bottom: 0%;
  color: #ffffff;
}

.side-form {
  position: relative;
  background-color: #e95a3a;
  padding: 5% 9%;
  margin-bottom: 5%;
  border: 1px solid #e4e4e4;
}

.side-form iframe {
  height: 51em!important;
}

.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;
  border-top: solid 1px #00000054;
}



.text-highlight2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3em;
    top: calc(-3em - 1px); /* Adjust to ensure bottom of image aligns with border-top */
    left: 0;
    background-image: url('/wp-content/uploads/2024/11/falkor-mascot-dog-services.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom; /* Align image bottom to pseudo-element bottom */
    pointer-events: none;
}

.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;
  z-index: 99;
  padding: 2em 7% 2em 7%;
  position: relative;
  background-color: #e95a3a;
  z-index: 13;
  position: relative;
}

.inner-section-2 {
    padding: 3% 10% 5% 10%;
    position: relative;
    z-index: 1; /* Maintain the stacking context */
    background-image: url('/wp-content/uploads/2024/11/inner-bottem-usp-bg-n.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: white;
    margin-bottom: 0em;
    background-color: #000000;
    border-bottom: 5px solid white; /* Add this for the white bottom border */
}

.inner-bottom .usp-blk {
  background: white;
  /* padding: 8%; */
}

.inner-bottom .usp-blk:hover {
  background-color: #e95a3a;
}

.inner-bottom .carousel-control-prev {
  left: -6em;
}

.inner-bottom .carousel-control-next {
  right: -6em;
}

.inner-bottom .usp-box:hover {
  background-color: #3351a4;
  color: white;
}

.inner-bottom .carousel {
  margin-bottom: -1em;
  top: -6em;
}

.inner-bottom .usp-label {color: black;margin-top: 0.5em;}

.inner-bottom .usp-box {
  width: 100%;
}

.inner-bottom.section-5 .usp-blk span {
  left: 0em;
}

.inner-bottom .row>* {
  /* padding: 0 .8%; */
}

.inner-bottom .usp-row {
  margin-top: -25%;
}

.inner-bottom:after {
  display: none;
}

.inner-bottom .usp-wrap {
  position: relative;
  margin-top: 0em;
  /* gap: .5em; */
}

.inner-bottom .usp-wrap.row>* {
  /* padding: 0% 0.7%; */
}

.side-reviews {
  position: relative;
  text-align: center;
  line-height: 1.8;
  padding: 8% 5%;
  background: #03a8e2;
  color: white;
}

.side-reviews .ttshowcase_rl_subtitle {
  display: none;
}

.side-reviews .rev-author:after {
  display: none;
}

.side-rev-box {
  padding: 5% 6%;
  font-size: .9em;
}

.side-reviews .carousel-control-next,
.side-reviews .carousel-control-prev {
  color: #fff;
  opacity: 1;
}

.side-reviews .btn-primary {
  display: block;
  border-radius: 0em;
  border: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6%;
  color: white;
  background: #000000;
  padding: .72em 1em;
}

.side-reviews .side-label {
  color: white;
}

.formsidebar {
  position: relative;
  padding: 1em;
  background-color: #feca58;
  margin-top: 1em;
}

.form-inner-label {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: .4em;
  font-weight: 900;
}

.side-rev {
  position: relative;
  padding: 1em 3em;
  background-color: #f2f2f2;
  color: black;
}

.side-rev .side-label {
  color: black;
}

.side-rev .btn {
  display: block;
  color: black;
}

/* ---------------------- */
/* Closing CTA Inner CSS */
/* ------------------------------------------------------------------------------------- */
.faq-page .accordion-button {
  background-color: #e95a3a;
  color: white;
}

.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);
}

/* 404 Page */
.error-page {
  padding: 11% 4% 6% 4%;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: black;
  margin-top: 13%;
  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: 700;
  color: #e95a3a;
  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%;
  font-family: 'Exo 2';
}

.error-page .inside-content h1 {
  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 .row {
    display: flex;
    flex-wrap: wrap;
}

.reroute-btns .row {
    display: flex; /* Use flexbox for row layout */
    justify-content: center; /* Center the columns horizontally */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    /* gap: 2rem; */ /* Add spacing between items */
}

.reroute-btns .col-sm-6 {
    max-width: 300px; /* Optional: Limit button width */
    text-align: center; /* Center the text in the buttons */
}

.reroute-btns a.btn {
    display: inline-block; /* Ensures buttons maintain proper spacing */
    width: 100%; /* Makes buttons uniform in width */
    padding: 1em 1.5em; /* Adjusts button padding */
    text-align: center; /* Aligns text within the buttons */
}


.reroute-btns .col-sm-12 {
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    margin-bottom: 10px; /* Add some spacing between rows */
}

.reroute-btns .col-sm-12:nth-child(even) {
    justify-content: flex-start; /* Align items to the left for even columns */
}


.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;

  /* font-weight: 900; */
  letter-spacing: .03em;
  border: 0;
  display: block;
  border-radius: 0;
  margin: .7em 0;
  border-radius: 900em;
  color: black;
}

.reroute-btns .btn:hover {
  background-color: #000000 !important;
  color: white!important;
  text-shadow: none;
  border: 4px solid white;
}

.reroute-btns span {
  position: relative;
  top: 0.15em;
  font-size: 1.3em;
}

.single-blog ul {
  margin-left: 2em!important;
}

/* Default Template CSS */
.full-inner-max {
  padding-top: 2%;
  background: white;
  z-index: 11;
  position: relative;
}

.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 {
  display: unset;
  color: #e95a3a;
  text-decoration: none;
}

.inside-content .btn-primary {
  color: #ffffff;
}

/* Thank You Template CSS */
.thank-you {
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  padding: 9% 1% 5% 1%;
  margin-top: 14%;
  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;
  background-color: rgba(0, 0, 0, 0.39);
  border: solid 1px #0000005e;
  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-inner p {
  font-size: 1.5rem;
  line-height: 1.5em;
}

.thank-you .bg-inner  h1 {
  margin: 0;
  color: #e95a3a;
  font-weight: normal;
  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-inner h1 strong {
  display: block;
  font-size: 1.847em;
  color: #fa4f41;
}

.thank-you .button {
  display: block;
  background-color: #e95a3a;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: .08em;
  color: #ffffff;
  text-decoration: none;
  padding: 0.65em 0em;
  margin: 0.7em 0;
  border-radius: 900em;
  font-family: 'Fredoka', sans-serif!important;
}

/* ------------------------------------------------------------------------------------- */
/* Client Response Template CSS */
.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;
  background-color: rgba(0, 0, 0, 0.31);
  border: solid 1px #000000a6;
  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.5rem;
  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: #e95a3a;
  position: relative;
}

.client-response .bg-inner  h1 span strong {
  font-size: 1.3em;
}

.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 Feedback Review Template CSS */
.client-response {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 13% 1% 7% 1%;
  background-color: #4e4e4e;
  margin-top: 11%;
  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: 17%;
  background-image: url(/wp-content/themes/plumberseo-bootstrap/inc/assets/images/feedback-bg.jpg);
  text-align: center;
}

.client-review  p {
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0% 0%;
  color: black;
}

.client-review  h1 {
  margin: 0;
  color: #000000;
  font-weight: normal;
  font-size: 4.2rem;
  line-height: 1;
  margin-bottom: -0.1em;

  /* text-shadow: 4px 4px 0.4em #00000057; */
  text-transform: uppercase;
  position: relative;
}

.client-review h1 strong {
  display: block;
  font-size: 1.47em;
  color: #e95a3a;
}

.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 Queries CSS ---------------------------------------- */
@media screen and (min-width: 5.001em) and (max-width: 25em) {
  /* NEW QUERIES */

  .video-overlay-button {
display:none;
}

  .iflowpro-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 67%;
}

  .iflowpro-banner {margin: 4em 0em 0em 0em;}

  .iflowpro-image img {
    margin: 56px auto;
}

    .iflowpro-header {
    font-size: 2rem !important;
}

  .sliderfull .btn {
    max-width: 300px; /* Increase the maximum width */
    padding: 0em 0em; /* Add more padding for a larger button */
    font-size: 1.2em; /* Increase the font size */
    margin: 1em 0 3em 0em; /* Keep the existing margin unless it needs adjustment */
}

  

  .book-service-row {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}


     .slide-1:after {
  width: 100%;
  height: 178%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -34px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
}

       .slide-2:after {
  width: 100%;
  height: 176%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 18px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-2.jpg);
}

       .slide-3:after {
  width: 100%;
  height: 176%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 6px;
  left:0px;
  /* background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-3.jpg); */
  background-position: center;
}

.slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/banner-slide-4-mobile.jpg);
  width: 100%;
  height: 178%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -34px;
  left: 0;
  /* background-size: auto 101%; */ /* Fit image to height while keeping proportions */
  background-position: center;
}

  .slide-5:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/iflopro_slider_mobile_3.jpg);
  width: 100%;
  height: 165%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 0px;
  left: 0px;
  /* background-size: auto 101%; */ /* Fit image to height while keeping proportions */
  background-position: center;
}

  .slide-5 .slider-usp-row .col-6 {
    flex: 0 0 auto;
    width: 100%;
}


  .video-container {
    display: none;

}


  .hiring-badge-link img {
display:none;
}

  .btn-small-custom {
    padding: 2px 10px !important; /* Add internal spacing to prevent text from touching edges */
    border-radius: 1.5em; /* Rounded corners */
    font-size: 10px; /* Smaller text size */

}

  .coupon-tabs .tabs {
    width: 100%;
    height: 70em;
    margin-top: 0em;
}

.coupon-tabs .tabs li {
    width: 33.3%;
}

.coupon-tabs .tabs .tab-content {
    width: 100%;
    line-height: 25px;
    padding: 2em 1.9em;
    top: 28.5%;
    right: 0%;
}

.coupon-tabs h2 {
    font-size: 1.3em;
}

.coupon-tabs .tabs label{
  font-size: 0.6em;
}

    .section-7::after {
display:none;
}

      .sec4-lead-up-content {
    font-size: 1em;
}

    .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -15%; /* Position on the left */
    width: 14em; /* Use em units for responsive width */
    height: 14em; /* Use em units for responsive height */
}

  .side-form-inner iframe {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 60em !important;
  margin-bottom: -3em;
}


.side-form-inner {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 56em !important;
  margin-bottom: 10em;
  border-radius: 35px;
}

    .static-slide::before {
display:none
}

  .section-8 {
    position: relative;
    padding: 28% 6% 5% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg-new.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: -11em;
}

  .footer__logo {
    margin-top: -6em;
    margin-bottom: 1em;
}
  
.top-services a:hover {
display:none;
}
  

  .section-4::after {
display:none
}

      .sec7-lead-up-content {
        font-size: 1em; /* Slightly smaller font size for mobile */
        padding: 0.5em 1em; /* Add more padding for better touch area */
        white-space: normal; /* Allow text wrapping for small screens */
        max-width: 90%; /* Constrain width to fit within viewport */
        margin: 1.5em auto; /* Reduce margin for tighter layout */
    }
  
  .section-7 {
    position: relative;
    padding: 46% 3% 17% 3%;
    background-size: 2em;
    background: url(/wp-content/uploads/2024/11/sec8-bg.jpg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: 69em;
    /* min-height: 494px; */ /* Ensures a minimum height for the section */
    /* background-position-x: -2em; */
    background-position-y: -13em;
    /* background-size: auto 0%; */ /* Adjust the height to 200% while keeping width automatic */
}
  
.sec-6-col {
    padding: 0em;
}

  .rev-box {
    position: relative;
    background-size: 100% 100%;
    padding: 0em 0em;
    background-position: center;
}

      .section-6 .btn {
        margin-top: 1em
    }
  
.section-6 {
    position: relative;
    padding: 31% 6% 8% 6%;
    /* background-size: 54%; */
    background: url(/wp-content/uploads/2024/11/sec6-bg-mobile.png) no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -4em;
    background-position: top calc(50% - 235px) right;
    margin-bottom: -25em;
    /* background-size: 129% calc(84%); */ /* Makes the background 120% of its original height */
    height: 95em; /* Adjusts based on content */
    /* top: 6em; */
}

  .rev-content {
    padding: 0em 0em;
}
  




  

  
 

   

   



  .section-5 {
    padding: 54% 5% 20% 5%;
    position: relative;
    z-index: 1;
    background: url(/wp-content/uploads/2024/11/sec5-bg-mobile-min.png) no-repeat center center;
    background-size: cover;
    background-position: top left;
    margin: 0;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -6em;
}


  

  .section-4 {
    padding: 58% 5% 4% 5%;
    position: relative;
    z-index: 1; /* Keep the base section below the ::after */
    background: url('/wp-content/uploads/2024/11/sec4-bg-mobile.png') no-repeat center center;
    background-size: cover;
    margin-bottom: 0px;
    /* background-color: red; */
    margin-top: -15em;
    background-position: top;
}

  .sec4-header {
    position: relative;
    font-size: 2.5em;
    /* letter-spacing: 0.03em; */
    margin-bottom: .3em;
    line-height: 1.1;
    /* font-family: 'Exo 2', sans-serif; */
    padding-bottom: 0.7em;
    color: white;
    font-family: 'poppinsbold';
    text-align: center;
    text-transform: uppercase;
    margin-top: 2em;
}

  .usp-con::after {
  display: none;
}

.usp-box {
        padding: 1.5em;
        margin-top: 2em;
        text-align: center; /* Center all content */
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    /* Make Icon Centered and Bigger on Mobile */
    .usp-con {
        font-size: 4em; /* Increase icon size for mobile */
        margin-bottom: 1em; /* Space below the icon */
        text-align: center; /* Center-align icon */
    }

    /* Title Styling */
    .usp-label {
        font-size: 1.4em; /* Adjust title size for mobile */
        margin-bottom: 0.5em; /* Space below title */
        font-weight: bold;
        text-align: center; /* Center title */
    }

    /* Content Styling */
    .usp-box p {
        font-size: 1em; /* Adjust content font size */
        color: #ffffff; /* Subtle text color */
        line-height: 1.5; /* Improve readability */
        margin-top: 0.5em;
    }

  .insideimage .slider-usp .usp-box span {
    font-size: 6em;
    /* line-height: 0.7; */
    margin: -0.1em auto 0.05em auto;
    left: 0em;
    color: #ffffff;
}

    /* Adjust Columns Inside .usp-box */
    .usp-box .row {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center-align content */
    }

    .usp-box .col-3,
    .usp-box .col-9 {
        width: 100%; /* Make columns full-width */
        text-align: center; /* Center-align text */
    }

    .usp-box .col-3 {
        margin-bottom: 0em; /* Add spacing below the icon */
        font-size: 6em;
    }

      .sec4-lead-up-content {
        white-space: normal; /* Allow text to wrap for small screens */
        font-size: 1em; /* Reduce font size slightly for mobile */
        padding: 0.6em 1em; /* Add padding for better touch experience */
        max-width: 90%; /* Constrain the width to fit within the viewport */
        margin: 1em auto; /* Reduce margin for a tighter layout */
    }

    .row.justify-content-center {
        margin: 0; /* Ensure no extra space around the row */
    }

    .col-auto {
        text-align: center; /* Center-align the content */
    }

  


 .browse-products-btn {
    margin-right: 0em;
}

  .button-browse-row .col {
        text-align: center; /* Center the button */
        justify-content: center; /* Center align using flexbox */
    }

    .browse-products-btn {
        max-width: 100%; /* Ensure the button does not take up unnecessary width */
    }

     .browse-products-btn {
        background-color: #000000; /* Secondary button background color */
        font-family: 'poppinsbold', sans-serif;
        color: #fff; /* Text color for secondary button */
    }

    .browse-products-btn:hover {
        background-color: #e95a3a; /* Hover background color */
        border: 4px solid white; /* Hover border */
    }

.partner-logo {
    max-height: 50px;
    padding-right: 2em;
    display: none;
}

.member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 5em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Always Show Buttons */
    .custom-btn {
        display: inline-block; /* Always show buttons on mobile */
        position: relative; /* Remove absolute positioning for better layout */
        bottom: auto; /* Reset bottom positioning */
        margin-top: 0em; /* Add spacing above the button */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }

  .section-3 {
  padding: 13em 5% 9em 5%;
  background-image: url('/wp-content/uploads/2024/11/sec3-bg-mobile.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: 0em;
  /* background-color: #000000; */
  /* height: 100%; */
  background-position: center -124px; /* Moves the background up */
  background-size: 258%; /* Scales the image to 120% of its original size */
  margin-top: 0em;
}

.sec3-header {
    font-size: 2.4em; /* Biggest font for the main heading */
    margin-bottom: 0.3em;
    margin-top: 1em;
}

.sec-3-row {
    display: flex;
    align-items: center; /* Vertically align items in the center */
    padding: 2em; /* Add padding to the row */
    text-align: center;
}

  
  .section-2 {
    padding: 5% 5% 5% 5%;
    background-image: url(/wp-content/uploads/2024/11/sec2-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: white;
    margin-bottom: 0em;
}

  .sec2-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3em;
    /* letter-spacing: 0.083em; */
    margin-bottom: 0.3em;
    font-family: 'poppinsbold';
    color: white;
    /* line-height: normal; */
    z-index: 1; /* Ensure the header text appears above the watermark */
}

  .sec-2-intro {
    padding: 0% 0% 0% 0%;
    z-index: 1;
}

  .home-form {
  margin-top: 0em;
  width: 100%;
  height: 60em;
}

  .home-form iframe {
  margin-top: -3.5em;
  height: 63em!important;
  margin-bottom: -3em;
}

  .sec1-top-col {
  padding: 2em 1.5em 6em 1.5em;
  /* z-index: 0; */
  margin-top: -13em;
}

  .section-1 {
    margin-top: 10em;
    padding: 0em 0em 4em 0em;
    background-image: url(/wp-content/uploads/2024/11/sec1-bg-mobile.jpg);
    top: 0em;
    background-position: top;
}

.home-form::after {
display:none;
}

  .top-services a span {
    font-size: 6em;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    transition: font-size 0.3s ease-in-out, color 0.3s ease-in-out;
    margin-top: -47px;
}

  .servi-label {
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    bottom: 0.8em;
    left: 0;
    width: 100%;
    font-size: .9em;
    padding: 0.5em;
    line-height: 1.1;
    transition: all 0.3s ease-in-out;
    /* font-weight: 900; */
    color: white;
    z-index: 1;
    text-align: center;
}

  .top-services a:hover span {
  color: #ffffff;
  font-size: 6em;
  margin-top: -40px;
}

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

  .top-services a {
    position: relative;
    background-color: #e95a3a;
    display: flex;
    z-index: 2;
    text-decoration: none;
    height: 11em;
    width: 11em;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin: 0em auto;
    outline-offset: -0.7em;
    background-size: 100%;
    border: 5px solid #ffffff;
    border-radius: 50%;
    justify-content: center;
    padding-top: 0.1em;
    overflow: visible; /* Ensure the image can extend outside the circle */
}

/* Hover state */
.top-services a:hover {
    background-color: #000000;
    color: white;
    border-color: #ffffff;
}

  .usp-slide {
    position: relative;
    /* height: 8.4em; */
    text-align: left;
    line-height: 1.4;
    outline-offset: -0.7em;
    font-size: 0.9em;
    margin-left: 0%;
}

  .slider-usp-row {
    position: relative;
    width: 100%;
    margin: 1em auto 1em 0;
    z-index: 2;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* font-size: 1.2em; */
}

  

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 20%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 49px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}


  .slider-header {
      font-size: 1.6em;
      margin-top: 5em;
  }

  .slider-header::after {
    top: 0;
    left: -20px;
    height: 100%;
    width: 10px;
}

  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  #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: 37%;
      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%;
  }

  .insideimage .slider-usp .usp-box {
      font-size: 0.6em;
      padding: 5% 7%;
  }

  .single-blog {
      position: relative;
      padding: 12% 4% 4% 4%;
  }

  .insideimage {
      padding: 28% 4% 0% 4%;
      margin-top: 27.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.6em;
      border-radius: 23;
      border: 2px solid #ffffff;
  }
  .insideimage .slider-usp .usp-box p {
  opacity: 1;
  font-size: 1.4em;
  bottom: -1.2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.1;
}

  .thank-you {
      padding: 15% 1% 5% 1%;
      margin-top: 33%;
  }

  .banner-head {
      font-size: 1.1em;
  }

  .insideimage .col-lg-6 {
      padding-right: 35%;
  }

  .banner-head {
      font-size: 0.83em;
      width: 100%;
  }

  .insideimage .activate a {
      font-size: 0.68em;
  }

  .rev-sec-in .sec4-header {
      font-size: 2.3em;
  }

  .rev-sec-in .rev-box {
      bottom: -1em;
  }

  .rev-sec-in {
      padding: 7% 5%;
      background-repeat: no-repeat;
      background-position: 100% 100%;
  }

  .rev-sec-in .btn {
      font-size: .9em;
      margin: .4em .4em;
  }

  .sliderfull {
      margin-top: 34%;
  }

  .logo-image img {
      width: 8.4em;
  }

  .carr-badge {
      width: 5em;
      top: 2.5em;
      left: 1em;
  }

  .deal-price {
      font-size: 2.3em;
  }

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

  .side-rev .btn {
      font-size: .9em;
  }

  .side-price {
      font-size: 3em;
  }

  .logo-foot img {
      width: 19em;
  }

  .quick-nav.adjust {
      font-size: .9em;
      top: 7.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: 31%;
  }

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

  .error-page {
      padding: 13% 4% 6% 4%;
      margin-top: 40%;
  }

  .help-links a {
      text-align: center;
  }

  .side-form iframe {
      height: 64em!important;
  }

  .insideimage .slider-usp {
      width: 100%;
      margin-right: auto;
      right: 0;
      font-size: 0.7em;
      position: relative;
      margin-top: 1em;
      bottom: -2em;
  }

  .insideimage:before {
      display: none;
  }

  .insideimage .slider-usp.row>* {
      padding: 0 1%;
  }

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

      .show-for-small-only {
        display: flex !important; /* Ensure the row displays flex items */
        flex-wrap: wrap; /* Allow items to wrap to new rows */
        padding: 0%;
        margin-top: 11em;
    }

    .top-services .col-6 {
        flex: 0 0 50%; /* Ensure two columns per row */
        max-width: 50%; /* Maximum width for two columns */
        padding: 0px; /* Add some spacing between columns */
        box-sizing: border-box; /* Ensure padding does not affect width */
    }

    .top-services .row {
        margin: 0; /* Reset margins */
        display: flex; /* Use flexbox for grid alignment */
        flex-wrap: wrap; /* Ensure items wrap to the next row */
    }

    .top-services a {
        display: flex; /* Align internal content */
        justify-content: center;
        align-items: center;
        text-align: center; /* Center text inside link */
    }

  .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) {
  /* NEW QUERIES */

  .video-overlay-button {
display:none;
}

   .iflowpro-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 67%;
}

    .iflowpro-banner {margin: 5em 0em 5em 0em;}

    .iflowpro-image img {
    margin: 10px auto;
}

      .iflowpro-header {
    font-size: 2rem !important;
}

    .slide-5:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/iflopro_slider_mobile_3.jpg);
  width: 100%;
  height: 172%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -110px;
  left: 0px;
  /* background-size: auto 101%; */ /* Fit image to height while keeping proportions */
  background-position: center;
}

  .slide-5 .slider-usp-row .col-6 {
    flex: 0 0 auto;
    width: 100%;
}


  .video-container {
    display: none;

}

  .book-service-row {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .slider-header::after {
    top: 0;
    left: -20px;
    height: 100%;
    width: 10px;
}

.sliderfull .btn {
    max-width: 300px;
    font-size: 1.2em;
    margin: 1em 0 5em 0em;
}
    .slide-1:after {
  width: 100%;
  height: 232%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -72px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
}

.slide-2:after {
  width: 100%;
  height: 212%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -93px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-2.jpg);
}

       .slide-3:after {
  width: 100%;
  height: 191%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -108px;
  left:0px;
  /* background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-3.jpg); */
  background-position: 26% center; /* Move closer to the left */
}

  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/banner-slide-4-mobile.jpg);
  width: 100%;
  height: 178%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -91px;
  left: 0;
}

    .hiring-badge-link img {
display:none;
}

    .btn-small-custom {
    padding: 2px 10px !important; /* Add internal spacing to prevent text from touching edges */
    border-radius: 1.5em; /* Rounded corners */
    font-size: 10px; /* Smaller text size */

}

  .coupon-tabs .tabs {
    width: 100%;
    height: 70em;
    margin-top: 0em;
}

.coupon-tabs .tabs li {
    width: 33.3%;
}

.coupon-tabs .tabs .tab-content {
    width: 100%;
    line-height: 25px;
    padding: 2em 1.9em;
    top: 28.5%;
    right: 0%;
}

.coupon-tabs h2 {
    font-size: 1.3em;
}

.coupon-tabs .tabs label{
  font-size: 0.6em;
}

    .section-7::after {
display:none;
}

      .sec4-lead-up-content {
    font-size: 1em;
}

    .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -11%; /* Position on the left */
    width: 14em; /* Use em units for responsive width */
    height: 14em; /* Use em units for responsive height */
}

  .side-form-inner iframe {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 58em !important;
  margin-bottom: -3em;
}


.side-form-inner {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 56em !important;
  margin-bottom: 8em;
  border-radius: 35px;
}

    .static-slide::before {
display:none
}

  .section-8 {
    position: relative;
    padding: 28% 6% 5% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg-new.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: -7em;
}
  
    .footer__logo {
    margin-top: -6em;
    margin-bottom: 1em;
}

    .rev-content {
    padding: 0em 0em;
}

  .top-services a:hover {
display:none;
}

  .member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 5em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Always Show Buttons */
    .custom-btn {
        display: inline-block; /* Always show buttons on mobile */
        position: relative; /* Remove absolute positioning for better layout */
        bottom: auto; /* Reset bottom positioning */
        margin-top: 0em; /* Add spacing above the button */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }


    .section-4::after {
display:none;
}

      .sec7-lead-up-content {
        font-size: 1em; /* Slightly smaller font size for mobile */
        padding: 0.5em 1em; /* Add more padding for better touch area */
        white-space: normal; /* Allow text wrapping for small screens */
        max-width: 90%; /* Constrain width to fit within viewport */
        margin: 1.5em auto; /* Reduce margin for tighter layout */
    }

  .section-7 {
    position: relative;
    padding: 20% 3% 17% 3%;
    background-size: 2em;
    background: url(/wp-content/uploads/2024/11/sec8-bg.jpg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: 55em;
    /* min-height: 494px; */ /* Ensures a minimum height for the section */
    /* background-position-x: -2em; */
    background-position-y: -13em;
    /* background-size: auto 0%; */ /* Adjust the height to 200% while keeping width automatic */
}


.sec-6-col {
    padding: 0em;
}

  .rev-box {
    position: relative;
    background-size: 100% 100%;
    padding: 0em 0em;
    background-position: center;
}

      .section-6 .btn {
        margin-top: 1em
    }
  
.section-6 {
    position: relative;
    padding: 45% 6% 8% 6%;
    /* background-size: 54%; */
    background: url(/wp-content/uploads/2024/11/sec6-bg-mobile.png) no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -12em;
    background-position: top calc(50% - 139px) right;
    /* margin-bottom: 2em; */
    /* background-size: 129% calc(84%); */ /* Makes the background 120% of its original height */
    height: 95em; /* Adjusts based on content */
}

  

  


  .section-5 {
    padding: 54% 5% 20% 5%;
    position: relative;
    z-index: 1;
    background: url(/wp-content/uploads/2024/11/sec5-bg-mobile-min.png) no-repeat center center;
    background-size: cover;
    background-position: top left;
    margin: 0;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -7em;
}

  

  .section-4 {
    padding: 58% 5% 4% 5%;
    position: relative;
    z-index: 1; /* Keep the base section below the ::after */
    background: url('/wp-content/uploads/2024/11/sec4-bg-mobile.png') no-repeat center center;
    background-size: cover;
    margin-bottom: 0px;
    /* background-color: red; */
    margin-top: -15em;
    background-position: top;
}

  .sec4-header {
    position: relative;
    font-size: 2.5em;
    /* letter-spacing: 0.03em; */
    margin-bottom: .3em;
    line-height: 1.1;
    /* font-family: 'Exo 2', sans-serif; */
    padding-bottom: 0.7em;
    color: white;
    font-family: 'poppinsbold';
    text-align: center;
    text-transform: uppercase;
    margin-top: 2em;
}

  .usp-con::after {
  display: none;
}

.usp-box {
        padding: 1.5em;
        margin-top: 2em;
        text-align: center; /* Center all content */
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    /* Make Icon Centered and Bigger on Mobile */
    .usp-con {
        font-size: 4em; /* Increase icon size for mobile */
        margin-bottom: 1em; /* Space below the icon */
        text-align: center; /* Center-align icon */
    }

    /* Title Styling */
    .usp-label {
        font-size: 1.4em; /* Adjust title size for mobile */
        margin-bottom: 0.5em; /* Space below title */
        font-weight: bold;
        text-align: center; /* Center title */
    }

    /* Content Styling */
    .usp-box p {
        font-size: 1em; /* Adjust content font size */
        color: #ffffff; /* Subtle text color */
        line-height: 1.5; /* Improve readability */
        margin-top: 0.5em;
    }

    /* Adjust Columns Inside .usp-box */
    .usp-box .row {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center-align content */
    }

    .usp-box .col-3,
    .usp-box .col-9 {
        width: 100%; /* Make columns full-width */
        text-align: center; /* Center-align text */
    }

    .usp-box .col-3 {
        margin-bottom: 0em; /* Add spacing below the icon */
        font-size: 6em;
    }

      .sec4-lead-up-content {
        white-space: normal; /* Allow text to wrap for small screens */
        font-size: 1em; /* Reduce font size slightly for mobile */
        padding: 0.6em 1em; /* Add padding for better touch experience */
        max-width: 90%; /* Constrain the width to fit within the viewport */
        margin: 1em auto; /* Reduce margin for a tighter layout */
    }

    .row.justify-content-center {
        margin: 0; /* Ensure no extra space around the row */
    }

    .col-auto {
        text-align: center; /* Center-align the content */
    }

 .browse-products-btn {
    margin-right: 0em;
}

  .button-browse-row .col {
        text-align: center; /* Center the button */
        justify-content: center; /* Center align using flexbox */
    }

    .browse-products-btn {
        max-width: 100%; /* Ensure the button does not take up unnecessary width */
    }


    .browse-products-btn {
        max-width: 100%; /* Ensure the button does not take up unnecessary width */
    }

     .browse-products-btn {
        background-color: #000000; /* Secondary button background color */
        font-family: 'poppinsbold', sans-serif;
        color: #fff; /* Text color for secondary button */
    }

    .browse-products-btn:hover {
        background-color: #e95a3a; /* Hover background color */
        border: 4px solid white; /* Hover border */
    }



  

.partner-logo {
    max-height: 50px;
    padding-right: 2em;
    display: none;
}



  .section-3 {
  padding: 20em 5% 9em 5%;
  background-image: url('/wp-content/uploads/2024/11/sec3-bg-mobile.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: 0em;
  /* background-color: #000000; */
  /* height: 100%; */
  background-position: center -124px; /* Moves the background up */
  background-size: 258%; /* Scales the image to 120% of its original size */
  margin-top: 0em;
}

.sec3-header {
    font-size: 2.4em; /* Biggest font for the main heading */
    margin-bottom: 0.3em;
    margin-top: 1em;
}

.sec-3-row {
    display: flex;
    align-items: center; /* Vertically align items in the center */
    padding: 2em; /* Add padding to the row */
    text-align: center;
}

    .section-2 {
    padding: 5% 5% 5% 5%;
    background-image: url(/wp-content/uploads/2024/11/sec2-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: white;
    margin-bottom: 0em;
}

  .sec2-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3em;
    /* letter-spacing: 0.083em; */
    margin-bottom: 0.3em;
    font-family: 'poppinsbold';
    color: white;
    /* line-height: normal; */
    z-index: 1; /* Ensure the header text appears above the watermark */
}

  .sec-2-intro {
    padding: 0% 0% 0% 0%;
    z-index: 1;
}

  .home-form {
  margin-top: 0em;
  width: 100%;
  height: 60em;
}

  .home-form iframe {
  margin-top: -3.5em;
  height: 63em!important;
  margin-bottom: -3em;
}

  .sec1-top-col {
  padding: 2em 1.5em 6em 1.5em;
  /* z-index: 0; */
  margin-top: -13em;
}

  .section-1 {
    margin-top: 10em;
    padding: 0em 0em 4em 0em;
    background-image: url(/wp-content/uploads/2024/11/sec1-bg-mobile.jpg);
    top: 0em;
    background-position: center;
    background-size: cover;
}

.home-form::after {
display:none;
}

  .top-services a:hover span {
  color: #ffffff;
  font-size: 7em;
  margin-top: 20px;
}

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

  .top-services a {
    position: relative;
    background-color: #e95a3a;
    display: flex;
    z-index: 2;
    text-decoration: none;
    height: 14em;
    width: 14em;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin: 0em auto;
    outline-offset: -0.7em;
    background-size: 100%;
    border: 5px solid #ffffff;
    border-radius: 50%;
    justify-content: center;
    padding-top: 0.1em;
    overflow: visible; /* Ensure the image can extend outside the circle */
}

/* Hover state */
.top-services a:hover {
    background-color: #000000;
    color: white;
    border-color: #ffffff;
}

    .usp-slide {
    position: relative;
    /* height: 8.4em; */
    text-align: left;
    line-height: 1.4;
    outline-offset: -0.7em;
    font-size: 0.9em;
    margin-left: 0%;
}

    .slider-usp-row {
    position: relative;
    width: 100%;
    margin: 1em auto 1em 0;
    z-index: 2;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* font-size: 1.2em; */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 54%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 36px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}

  
      .slide-5 .slider-header {
        font-size: 2.6em;
        margin-top: -2em;
    }

  .slider-header {
      font-size: 2.3em;
      margin-top: 0em;
  }

  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  .logo-foot img {
      width: 19em;
  }

  .side-form iframe {
      height: 58em!important;
  }

  .home-form .camp-form iframe {
      height: 32em!important;
  }

  .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%;
  }

  .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: 26%;
  }

  .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: 28%;
  }

  .client-response {
      padding: 16% 1% 7% 1%;
      margin-top: 28%;
  }

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

  .error-page {
      padding: 16% 4% 14% 4%;
      margin-top: 30%;
  }

  .logo-image a {
      margin-top: .2em;
      transform: scale(1);
      top: 0em;
  }

  .logo-image img {
      width: 9.8em;
  }

  .single-blog {
      position: relative;
      padding: 10% 4% 4% 4%;
  }

  .insideimage {
      padding: 28% 4% 0% 4%;
      margin-top: 19.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.7em;
      border: 2px solid #ffffff;
  }

  .quick-nav.adjust {
      font-size: .9em;
      top: 9em;
  }

  .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:before {
      display: none;
  }

  .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;
  }

      .show-for-small-only {
        display: flex !important; /* Ensure the row displays flex items */
        flex-wrap: wrap; /* Allow items to wrap to new rows */
    }

    .top-services .col-6 {
        flex: 0 0 50%; /* Ensure two columns per row */
        max-width: 50%; /* Maximum width for two columns */
        padding: 10px; /* Add some spacing between columns */
        box-sizing: border-box; /* Ensure padding does not affect width */
    }

    .top-services .row {
        margin: 0; /* Reset margins */
        display: flex; /* Use flexbox for grid alignment */
        flex-wrap: wrap; /* Ensure items wrap to the next row */
    }

    .top-services a {
        display: flex; /* Align internal content */
        justify-content: center;
        align-items: center;
        text-align: center; /* Center text inside link */
    }

  .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) {
  /* NEW QUERIES */

  .video-overlay-button {
display:none;
}

   .iflowpro-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 67%;
}

    .iflowpro-banner {

    margin: 5em auto;
}

    .iflowpro-image img {
    margin: 10px auto;
}

      .iflowpro-header {
    font-size: 2rem !important;
}

    .slide-5:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/iflopro_slider_mobile_3.jpg);
  width: 100%;
  height: 175%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 0px;
  left: 0px;
  /* background-size: auto 101%; */ /* Fit image to height while keeping proportions */
  background-position: center;
}

  .slide-5 .slider-usp-row .col-6 {
    flex: 0 0 auto;
    width: 100%;
}


  .video-container {
    display: none;

}

    .book-service-row {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .slider-header::after {
    top: 0;
    left: -20px;
    height: 100%;
    width: 10px;
}

    .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -72px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
}

.slide-2:after {
  width: 100%;
  height: 182%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -32px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-2.jpg);
}

       .slide-3:after {
  width: 100%;
  height: 176%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -63px;
  left:0px;
  /* background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-3.jpg); */
  background-position: center;
}

         .slide-4:after {
  width: 100%;
  height: 176%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -63px;
  left:0px;
  background-image: url(/wp-content/uploads/2025/01/banner-slide-4-mobile.jpg);
}

.slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/banner-slide-4-mobile.jpg);
  width: 100%;
  height: 178%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -34px;
  left: 0;
}

    .hiring-badge-link img {
display:none;
}

    .btn-small-custom {
    padding: 2px 10px !important; /* Add internal spacing to prevent text from touching edges */
    border-radius: 1.5em; /* Rounded corners */
    font-size: 10px; /* Smaller text size */

}

    .section-7::after {
display:none;
}

      .sec4-lead-up-content {
    font-size: 1em;
}

    .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -15%; /* Position on the left */
    width: 14em; /* Use em units for responsive width */
    height: 14em; /* Use em units for responsive height */
}

  .side-form-inner iframe {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 50em !important;
  margin-bottom: -3em;
}


.side-form-inner {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 56em !important;
  margin-bottom: -3em;
  border-radius: 35px;
}

    .static-slide::before {
display:none
}

    .section-8 {
    position: relative;
    padding: 28% 6% 5% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg-new.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: -11em;
}

    .footer__logo {
    margin-top: -6em;
    margin-bottom: 1em;
}

  .top-services a:hover {
display:none;
}

  .member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 5em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Always Show Buttons */
    .custom-btn {
        display: inline-block; /* Always show buttons on mobile */
        position: relative; /* Remove absolute positioning for better layout */
        bottom: auto; /* Reset bottom positioning */
        margin-top: 0em; /* Add spacing above the button */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }


  

    .section-4::after {
display:none;
}

      .sec7-lead-up-content {
        font-size: 1em; /* Slightly smaller font size for mobile */
        padding: 0.5em 1em; /* Add more padding for better touch area */
        white-space: normal; /* Allow text wrapping for small screens */
        max-width: 90%; /* Constrain width to fit within viewport */
        margin: 1.5em auto; /* Reduce margin for tighter layout */
    }

  .section-7 {
    position: relative;
    padding: 14% 3% 17% 3%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg.jpg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: -1em;
    background-position-y: -15em;
}

  .sec-6-col {
    padding: 0em;
}

  .rev-box {
    position: relative;
    background-size: 100% 100%;
    padding: 0em 0em;
    background-position: center;
}

      .section-6 .btn {
        margin-top: 1em
    }
  
.section-6 {
    position: relative;
    padding: 96% 6% 7% 6%;
    /* background-size: 54%; */
    background: url(/wp-content/uploads/2024/11/sec6-bg-mobile.png) no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -20em;
}

  .location-box {
        width: 48%; /* Fit two items per row */
        margin: 1%; /* Add space between items */
        display: flex;
        justify-content: center;
        align-items: stretch; /* Ensure boxes stretch to the same height */
    }

    /* Equal Height for Content Boxes */
    .location-content {
        height: 100%; /* Fill parent height */
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align content */
        justify-content: space-between; /* Space between icon, text, and links */
        padding: 0.8em 1em; /* Compact padding */
        background-color: black; /* Keep consistent background */
        border-radius: 15px; /* Slightly smaller radius */
        text-align: center; /* Center all text */
    }

    /* Adjust Icon Styling */
    .location-pin {
        margin: 0 0 0.5em 0; /* Space below the icon */
        width: 36px; /* Smaller size for mobile */
        height: 36px;
    }

    .location-pin .icon-map-marker {
        font-size: 1.2em; /* Adjust icon size */
    }

    /* Text Styling with Better Line-Height */
    .location-label {
        font-size: 1em; /* Optimize font size */
        font-weight: bold;
        line-height: 1.4; /* Improve spacing between lines */
        margin: 0.5em 0; /* Add space above and below */
    }

    /* Always Visible Links */
    .hover-overlay {
        position: static; /* Remove absolute positioning */
        background-color: transparent; /* No background */
        display: flex; /* Inline list */
        flex-wrap: wrap; /* Allow wrapping for small screens */
        justify-content: center; /* Center-align services */
        gap: 0.5em; /* Space between links */
        opacity: 1; /* Make visible */
        visibility: visible; /* Always show */
        padding: 0;
        margin-top: 0.5em; /* Space above links */
    }

    /* Service Link Styling */
    .service-link {
        font-size: 0.9em; /* Adjust size for smaller screens */
        line-height: 1.4; /* Improve readability */
        text-align: center; /* Ensure links are centered */
    }

    /* Box Hover Effects Removed */
    .location-content:hover {
        transform: none; /* Disable scaling effect */
        box-shadow: none; /* No shadow on hover */
    }


  .section-5 {
    padding: 54% 5% 20% 5%;
    position: relative;
    z-index: 1;
    background: url(/wp-content/uploads/2024/11/sec5-bg-mobile.png) no-repeat center center;
    background-size: cover;
    background-position: top left;
    margin: 0;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -6em;
}

    .section-4 {
    padding: 58% 5% 4% 5%;
    position: relative;
    z-index: 1; /* Keep the base section below the ::after */
    background: url('/wp-content/uploads/2024/11/sec4-bg-mobile.png') no-repeat center center;
    background-size: cover;
    margin-bottom: 0px;
    /* background-color: red; */
    margin-top: -15em;
    background-position: top;
}

  .sec4-header {
    position: relative;
    font-size: 2.5em;
    /* letter-spacing: 0.03em; */
    margin-bottom: .3em;
    line-height: 1.1;
    /* font-family: 'Exo 2', sans-serif; */
    padding-bottom: 0.7em;
    color: white;
    font-family: 'poppinsbold';
    text-align: center;
    text-transform: uppercase;
    margin-top: 2em;
}

  .usp-con::after {
  display: none;
}

.usp-box {
        padding: 1.5em;
        margin-top: 2em;
        text-align: center; /* Center all content */
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    /* Make Icon Centered and Bigger on Mobile */
    .usp-con {
        font-size: 4em; /* Increase icon size for mobile */
        margin-bottom: 1em; /* Space below the icon */
        text-align: center; /* Center-align icon */
    }

    /* Title Styling */
    .usp-label {
        font-size: 1.4em; /* Adjust title size for mobile */
        margin-bottom: 0.5em; /* Space below title */
        font-weight: bold;
        text-align: center; /* Center title */
    }

    /* Content Styling */
    .usp-box p {
        font-size: 1em; /* Adjust content font size */
        color: #ffffff; /* Subtle text color */
        line-height: 1.5; /* Improve readability */
        margin-top: 0.5em;
    }

    /* Adjust Columns Inside .usp-box */
    .usp-box .row {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center-align content */
    }

    .usp-box .col-3,
    .usp-box .col-9 {
        width: 100%; /* Make columns full-width */
        text-align: center; /* Center-align text */
    }

    .usp-box .col-3 {
        margin-bottom: 0em; /* Add spacing below the icon */
        font-size: 6em;
    }

      .sec4-lead-up-content {
        white-space: normal; /* Allow text to wrap for small screens */
        font-size: 1em; /* Reduce font size slightly for mobile */
        padding: 0.6em 1em; /* Add padding for better touch experience */
        max-width: 90%; /* Constrain the width to fit within the viewport */
        margin: 1em auto; /* Reduce margin for a tighter layout */
    }

    .row.justify-content-center {
        margin: 0; /* Ensure no extra space around the row */
    }

    .col-auto {
        text-align: center; /* Center-align the content */
    }

  

 .browse-products-btn {
    margin-right: 0em;
}

  .button-browse-row .col {
        text-align: center; /* Center the button */
        justify-content: center; /* Center align using flexbox */
    }

    .browse-products-btn {
        max-width: 100%; /* Ensure the button does not take up unnecessary width */
    }

.partner-logo {
    max-height: 50px;
    padding-right: 2em;
    display: none;
}



  .section-3 {
  padding: 13em 5% 9em 5%;
  background-image: url('/wp-content/uploads/2024/11/sec3-bg-mobile.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-bottom: 0em;
  /* background-color: #000000; */
  /* height: 100%; */
  background-position: center -124px; /* Moves the background up */
  background-size: 258%; /* Scales the image to 120% of its original size */
  margin-top: 0em;
}

.sec3-header {
    font-size: 2.4em; /* Biggest font for the main heading */
    margin-bottom: 0.3em;
    margin-top: 1em;
}

.sec-3-row {
    display: flex;
    align-items: center; /* Vertically align items in the center */
    padding: 2em; /* Add padding to the row */
    text-align: center;
    margin-top: 15em;
}

    .section-2 {
    padding: 5% 5% 5% 5%;
    background-image: url(/wp-content/uploads/2024/11/sec2-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: white;
    margin-bottom: 0em;
}

  .sec2-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3em;
    /* letter-spacing: 0.083em; */
    margin-bottom: 0.3em;
    font-family: 'poppinsbold';
    color: white;
    /* line-height: normal; */
    z-index: 1; /* Ensure the header text appears above the watermark */
}

  .sec-2-intro {
    padding: 0% 0% 0% 0%;
    z-index: 1;
}

  .home-form {
  margin-top: 0em;
  width: 100%;
  height: 60em;
}

  .home-form iframe {
  margin-top: -3.5em;
  height: 63em!important;
  margin-bottom: -3em;
}

  .sec1-top-col {
  padding: 2em 1.5em 6em 1.5em;
  /* z-index: 0; */
  margin-top: -13em;
}

  .section-1 {
    margin-top: 10em;
    padding: 0em 0em 9em 0em;
    background-image: url(/wp-content/uploads/2024/11/sec1-bg-mobile.jpg);
    top: 0em;
}

.home-form::after {
display:none;
}

.home-form::after {
display:none;
}

    .usp-slide {
    position: relative;
    /* height: 8.4em; */
    text-align: left;
    line-height: 1.4;
    outline-offset: -0.7em;
    font-size: 0.9em;
    margin-left: 0%;
}

    .slider-usp-row {
    position: relative;
    width: 100%;
    margin: 1em auto 1em 0;
    z-index: 2;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* font-size: 1.2em; */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 37%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 49px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}


  .slider-header {
      font-size: 2.8em;
      margin-top: 3em;
  }

  
      .slide-5 .slider-header {
        font-size: 2.6em;
    }
  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  .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;
  }

  .quick-nav.adjust {
      top: 10.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: 21%;
  }

  .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: 25.5%;
      border-bottom: 0.2em solid #1d1761;
      background-image: none;
  }

  .insideimage:after {
      width: 174%;
      left: -43px;
      border-radius: 0;
  }

  .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%;
  }

  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;
  }

      .show-for-small-only {
        display: flex !important; /* Ensure the row displays flex items */
        flex-wrap: wrap; /* Allow items to wrap to new rows */
        margin-top: 8em;
    }

    .top-services .col-6 {
        flex: 0 0 50%; /* Ensure two columns per row */
        max-width: 50%; /* Maximum width for two columns */
        padding: 10px; /* Add some spacing between columns */
        box-sizing: border-box; /* Ensure padding does not affect width */
    }

    .top-services .row {
        margin: 0; /* Reset margins */
        display: flex; /* Use flexbox for grid alignment */
        flex-wrap: wrap; /* Ensure items wrap to the next row */
    }

    .top-services a {
        display: flex; /* Align internal content */
        justify-content: center;
        align-items: center;
        text-align: center; /* Center text inside link */
    }

  .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) {
  /* NEW QUERIES */

  .video-overlay-button {
display:none;
}

   .iflowpro-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 67%;
}

    .iflowpro-banner {

    margin: 5em auto;
}

    .iflowpro-image img {
    margin: 10px auto;
}

      .iflowpro-header {
    font-size: 2.8rem !important;
}

    .slide-5:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/iflopro_slider_mobile_4.jpg);
  width: 100%;
  height: 165%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 0px;
  left: 0px;
  /* background-size: auto 101%; */ /* Fit image to height while keeping proportions */
  background-position: center;
}

  .slide-5 .slider-usp-row .col-6 {
    flex: 0 0 auto;
    width: 100%;
}


  .video-container {
    display: none;

}

    .book-service-row {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}


     .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -72px;
  left: 0;
  background-image: url(     /wp-content/uploads/2024/11/banner-mobile.jpg);
}

.slide-2:after {
  width: 100%;
  height: 233%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 12px;
  left: 0;
  background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-2.jpg);
}

  .sliderfull .btn {
    max-width: 400px;
    padding: 1em 2em;
    font-size: 1.2em;
    margin: 1em 0 3em 2em;
}

       .slide-3:after {
  width: 100%;
  height: 200%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 33px;
  left:0px;
  /* background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-3.jpg); */
  background-size: cover; /* Increases the height of the image */
  background-position: center;
}

         .slide-4:after {
             content: "";
  position: absolute;
  width: 100%;
  height: 200%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: 33px;
  left:0px;
  background-image: url(/wp-content/uploads/2025/01/banner-slide-4-mobile.jpg);
  /* background-size: 100% 131%; */ /* Increases the height of the image */
}



  .sliderfull .carousel-control-prev {
  left: -40px; /* Move further to the left */
}

.sliderfull .carousel-control-next {
  right: -40px; /* Move further to the right */
}

    .hiring-badge-link img {
display:none;
}

    .btn-small-custom {
    padding: 2px 10px !important; /* Add internal spacing to prevent text from touching edges */
    border-radius: 1.5em; /* Rounded corners */
    font-size: 10px; /* Smaller text size */

}

  .coupon-tabs .tabs {
    width: 100%;
    height: 50em;
    margin-top: 1em;
}

.coupon-tabs .tabs li {
    width: 20%;
}

.coupon-tabs .tabs .tab-content {
    width: 100%;
    line-height: 25px;
    padding: 3em 3em;
    top: 28.5%;
    right: 0%;
}

.coupon-tabs .tabs label{
  font-size: 0.7em;
}

    .section-7::after {
display:none;
}

    .sec4-lead-up-content {
    font-size: 1em;
}

    .section-4::before {
    bottom: 0em; /* Position at the bottom */
    left: -7%; /* Position on the left */
    width: 16em; /* Use em units for responsive width */
    height: 16em; /* Use em units for responsive height */
}

  .side-form-inner iframe {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 54em !important;
  margin-bottom: -3em;
}


.side-form-inner {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 56em !important;
  margin-bottom: 1em;
  border-radius: 35px;
}

  .faq-btn{
  margin-bottom: 7em;
}

    .section-8 {
    z-index: 1;
    position: relative;
    padding: 51% 6% 5% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg-new.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    margin-top: -26em;
}

    .footer__logo {
    margin-top: -6em;
    margin-bottom: 1em;
}

  .top-services a:hover {
display:none;
}

.member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 5em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Always Show Buttons */
    .custom-btn {
        display: inline-block; /* Always show buttons on mobile */
        position: relative; /* Remove absolute positioning for better layout */
        bottom: auto; /* Reset bottom positioning */
        margin-top: 0em; /* Add spacing above the button */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }


  .section-3 {
    z-index: 1;
    padding: 1em 5% 5em 5%;
    position: relative;
    z-index: 1;
    background-image: url(/wp-content/uploads/2024/11/sec3-bg-new.jpg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-bottom: 0em;
    background-color: #e95a3a;
    /* height: 100%; */
    margin-top: -3em;
}
    .section-4::after {
    top: -26em; /* Position at the bottom */
    left: -135px; /* Position on the left */
    width: 39em; /* Use em units for responsive width */
    height: 47em; /* Use em units for responsive height */
}
  
/* Logo Styling */
.partner-logo {
display: none;
}

  .sec-6-col {
    padding: 0em;
}

  .rev-box {
    position: relative;
    background-size: 100% 100%;
    padding: 0em 0em;
    background-position: center;
}

      .section-6 .btn {
        margin-top: 1em
    }
  
.section-6 {
    position: relative;
    padding: 50% 6% 7% 6%;
    /* background-size: 54%; */
    background: url(/wp-content/uploads/2024/11/sec6-bg-mobile.png) no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -22em;
}

  .section-7 {
    position: relative;
    padding: 13% 6% 7% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg.jpg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -2em;
    background-position-y: -190px;
}

  .usp-con::after {
display: none;
}

.sec3-header {
    font-size: 2.4em; /* Biggest font for the main heading */
    margin-bottom: 0.3em;
    margin-top: 1em;
}

.sec-3-row {
    display: flex;
    align-items: center; /* Vertically align items in the center */
    padding: 2em; /* Add padding to the row */
    text-align: center;
    margin-top: 15em;
}

    .section-2 {
    padding: 5% 5% 5% 5%;
    background-image: url(/wp-content/uploads/2024/11/sec2-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: white;
    margin-bottom: 0em;
}

  .sec2-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3em;
    /* letter-spacing: 0.083em; */
    margin-bottom: 0.3em;
    font-family: 'poppinsbold';
    color: white;
    line-height: normal;
    z-index: 1; /* Ensure the header text appears above the watermark */
}

  .sec-2-intro {
    padding: 0% 0% 0% 0%;
    z-index: 1;
}

  .home-form {
  margin-top: 0em;
  width: 80%;
  height: 60em;
}

  .home-form iframe {
  margin-top: -3.5em;
  height: 63em!important;
  margin-bottom: -3em;
}

  .sec1-top-col {
  padding: 2em 1.5em 6em 1.5em;
  /* z-index: 0; */
  margin-top: -13em;
}

  .section-1 {
    margin-top: 10em;
    padding: 0em 0em 4em 0em;
    background-image: url(/wp-content/uploads/2024/11/sec1-bg-mobile.jpg);
    top: 0em;
}

.home-form::after {
display:none;
}

    .usp-slide {
    position: relative;
    /* height: 8.4em; */
    text-align: left;
    line-height: 1.4;
    outline-offset: -0.7em;
    font-size: 0.9em;
    margin-left: 0%;
}

    .slider-usp-row {
    position: relative;
    width: 100%;
    margin: 1em auto 1em 0;
    z-index: 2;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* font-size: 1.2em; */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 23%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-mobile.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 49px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}

  .static-slide::before {
display:none
}

      .slide-5 .slider-header {
        font-size: 2.6em;
    }

  .slider-header {
      font-size: 3.4em;
      margin-top: 2em;
  }

  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  .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: 11.5em;
  }

  .logo-image a {
      margin-top: .1em;
      transform: scale(1);
      top: 0em;
  }

  .logo-image img {
      width: 15em;
  }

  .single-blog {
      position: relative;
      padding: 5% 4% 4% 4%;
  }

  .insideimage {
      padding: 20% 4% 0% 4%;
      margin-top: 22.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: 16%;
  }

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

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 17%;
  }

  .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;
  }

      .show-for-small-only {
        display: flex !important; /* Ensure the row displays flex items */
        flex-wrap: wrap; /* Allow items to wrap to new rows */
        margin-top: 8em;
    }

    .top-services .col-6 {
        flex: 0 0 50%; /* Ensure two columns per row */
        max-width: 50%; /* Maximum width for two columns */
        padding: 10px; /* Add some spacing between columns */
        box-sizing: border-box; /* Ensure padding does not affect width */
    }

    .top-services .row {
        margin: 0; /* Reset margins */
        display: flex; /* Use flexbox for grid alignment */
        flex-wrap: wrap; /* Ensure items wrap to the next row */
    }

    .top-services a {
        display: flex; /* Align internal content */
        justify-content: center;
        align-items: center;
        text-align: center; /* Center text inside link */
    }

  .insideimage .slider-usp .usp-box {
      font-size: .73em;
  }

  .rev-sec-in .sec4-header {
      font-size: 2.3em;
  }

  .rev-sec-in .rev-box {
      bottom: -1em;
  }

  .rev-sec-in {
      padding: 7% 5%;
      background-repeat: no-repeat;
      background-position: 100% 100%;
  }

  .rev-sec-in .btn {
      font-size: .9em;
      margin: .4em .4em;
  }

  .side-coup .btn-primary {
      font-size: .9em;
  }

  .insideimage:before {
      display: none;
  }

  .side-price {
      font-size: 5.4em;
  }

  .inner-bottom {
      background-position: 100% 100%;
  }

  .side-offer {
      font-size: 2em;
  }

  .side-coup,
  .side-form,
  .side-reviews {
      width: 90%;
      margin: 2em auto 3em auto;
  }

  .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;
  }

  .home-label {
      font-size: 1.9em;
  }

  .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: 20%;
  }

  .thank-you .button {
      margin: .5em 0;
  }

  .inside-content .col-md-8,
  .inside-content .col-md-4 {
      flex: 0 0 auto;
      width: 100%;
  }

  .inside-content .emp-rows .col-sm-9 {
      flex: 0 0 auto;
      width: 75%;
      padding: 0.1%;
  }

  .inside-content .emp-rows .col-sm-3 {
      flex: 0 0 auto;
      width: 25%;
      padding: 0.1%;
  }

  .emp-info em {
      width: 90em;
  }
}

@media screen and (max-width: 59.999em) and (min-width: 55.001em) {
  /* NEW QUERIES */

.video-overlay-button {
display:none;
}

  .responsive-video {
display:none
}

   .iflowpro-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 67%;
}

    .iflowpro-banner {

    margin: 5em auto;
}

    .iflowpro-image img {
    margin: 10px auto;
}

      .iflowpro-header {
    font-size: 2rem !important;
}

    .slide-5:after {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2025/01/iflopro_slider_5.jpg);
    width: 100%;
    height: 199%;
    z-index: -1;
    top: -99px;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .book-service-row {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

  .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -72px;
  left: 0;
  background-image: url(     /wp-content/uploads/2024/11/banner-mobile.jpg);
}

.slide-2:after {
  width: 100%;
  height: 277%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -25px;
  left: 0;
  /* background-image: url(/wp-content/uploads/2024/12/banner-mobile-slide-2.jpg); */
}
  
.sliderfull .carousel-control-prev {
  left: -40px; /* Move further to the left */
}

.sliderfull .carousel-control-next {
  right: -40px; /* Move further to the right */
}

.slide-3:after {
  content: "";
  position: absolute;
  /* background-image: url(/wp-content/uploads/2024/12/banner-slide-3.jpg); */
  width: 100%;
  height: 203%; /* Adjust as needed */
  z-index: -1;
  top: -41px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 62% center; /* Move closer to the left */
}

  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/banner-slide-4-mobile.jpg);
  width: 100%;
  height: 203%; /* Adjust as needed */
  z-index: -1;
  top: -41px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 62% center; /* Move closer to the left */
}

  .sliderfull .carousel-control-prev {
  left: -40px; /* Move further to the left */
}

.sliderfull .carousel-control-next {
  right: -40px; /* Move further to the right */
}

    .client-response {
      padding: 16% 2% 7% 2%;
      margin-top: 16%;
  }

 .thank-you {
      padding: 9% 1% 5% 1%;
      margin-top: 20%;
  }

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 17%;
  }
  
    .sec4-lead-up-content {
    font-size: 1em;
}

    .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -15%; /* Position on the left */
    width: 14em; /* Use em units for responsive width */
    height: 14em; /* Use em units for responsive height */
}

  .usp-con::after {
display:none;
}

  .side-form-inner iframe {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 50em !important;
  margin-bottom: -3em;
}


.side-form-inner {
  position: relative;
  background: #000000;
  width: 100%;
  margin: auto;
  padding: 0em;
  margin-top: 4em;
  height: 56em !important;
  margin-bottom: -3em;
  border-radius: 35px;
}

      .insideimage {
  position: relative;
  padding: 6% 4% 8% 4%;
  margin-top: 27.5%;
  border-bottom: 0.2em solid #e95a3a;
  /* background: url('/wp-content/uploads/2024/12/inner-banner-2.jpg') no-repeat; */
  background-size: cover;
  z-index: 12;
  /* background-position: 449px -239px; */ /* 10px right, 20px up */
}

    .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 117%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}

      .footer__logo {
    margin-top: -6em;
    margin-bottom: 1em;
}

  .member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 5em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Always Show Buttons */
    .custom-btn {
        display: inline-block; /* Always show buttons on mobile */
        position: relative; /* Remove absolute positioning for better layout */
        bottom: auto; /* Reset bottom positioning */
        margin-top: 0em; /* Add spacing above the button */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }


    .section-4::after {
    top: -26em; /* Position at the bottom */
    left: -85px; /* Position on the left */
    width: 39em; /* Use em units for responsive width */
    height: 47em; /* Use em units for responsive height */
}

  /* Logo Styling */
.partner-logo {
display: none;
}


  .home-form {
  margin-top: 0em;
  width: 100%;
  height: 60em;
}

  .home-form iframe {
  margin-top: -3.5em;
  height: 63em!important;
  margin-bottom: -3em;
}

  .sec1-top-col {
  padding: 2em 1.5em 6em 1.5em;
  /* z-index: 0; */
  margin-top: -13em;
}

  .section-1 {
    /* margin-top: 10em; */
    /* padding: 0em 0em 9em 0em; */
    /* background-image: url(/wp-content/uploads/2024/11/sec1-bg-mobile.jpg); */
    /* top: 0em; */
}

.home-form::after {
display:none;
}

    .usp-slide {
    position: relative;
    /* height: 8.4em; */
    text-align: left;
    line-height: 1.4;
    outline-offset: -0.7em;
    font-size: 0.9em;
    margin-left: 0%;
}

    .slider-usp-row {
    position: relative;
    width: 100%;
    margin: 1em auto 1em 0;
    z-index: 2;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* font-size: 1.2em; */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 20%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: -4px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
    .slide-5 .slider-header {
        font-size: 2em;
    }

  .slider-header {
      font-size: 2.8em;
  }

  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  .sched-row a strong {
      font-size: 2em;
  }

  .side-form iframe {
      height: 44em!important;
  }

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

  .deal-price {
      font-size: 3em;
  }

  .quick-nav.adjust {
      top: 10.3em;
  }

  .sliderfull {
      margin-top: 28%;
  }

  .sliderfull .col-lg-6 {
      width: 100%;
  }

  .client-review {
      margin-top: 18%;
      padding: 14% 4% 5% 4%;
  }

  .logo-image a {
      margin-top: .1em;
      transform: scale(1);
      top: 0em;
  }

  .logo-image img {
      width: 15em;
  }

  .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: 23.5%;
      padding: 11% 0% 1% 3%;
      background-size: 74%;
      background-position: 151% 43%; /* Adjust this to move the image */
  }

  .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;
  }

  .side-price {
      font-size: 7em;
  }

  .side-offer {
      font-size: 2em;
  }

  .side-coup,
  .side-form,
  .side-reviews {
      width: 90%;
      margin: 2em auto 3em auto;
  }

  .side-label {
      font-size: 2em;
  }

  .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: 19%;
  }

  .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 {
      /* display: none; */
  }

  .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) {
  /* NEW QUERIES */

  .iflowpro-banner {

    margin: 2em 0 2em 0 ;
}

   .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -156px;
  left: 0;
}

  .slide-2:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-2.jpg);
  width: 100%;
  height: 170%; /* Adjust as needed */
  z-index: -1;
  top: 34px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 66% center; /* Move closer to the left */
}

.slide-3:after {
  content: "";
  position: absolute;
  /* background-image: url(/wp-content/uploads/2024/12/banner-slide-3.jpg); */
  width: 100%;
  height: 203%; /* Adjust as needed */
  z-index: -1;
  top: -41px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 62% center; /* Move closer to the left */
}

  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/Banner-Slider-4.jpg);
  width: 100%;
  height: 203%; /* Adjust as needed */
  z-index: -1;
  top: -41px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 62% center; /* Move closer to the left */
}



    .client-response {
      padding: 16% 2% 7% 2%;
      margin-top: 16%;
  }

   .thank-you {
      padding: 9% 1% 5% 1%;
      margin-top: 20%;
  }

      .section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  margin-top: -13em;
}

.section-7::after {
    top: 7em; /* Position slightly above the section */
    left: -6%; /* Position slightly off the left edge */
    width: 18em; /* Use em for responsive sizing */
    height: 18em; /* Keep proportions responsive */
}

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 17%;
  }

.usp-con::after {
display:none
}

    .section-4::before {
    bottom: 2em; /* Position at the bottom */
    left: -11%; /* Position on the left */
    width: 21em; /* Use em units for responsive width */
    height: 23em; /* Use em units for responsive height */
}

      .insideimage {
  position: relative;
  padding: 6% 4% 8% 4%;
  margin-top: 27.5%;
  border-bottom: 0.2em solid #e95a3a;
  background: url('/wp-content/uploads/2024/11/team.jpg') no-repeat;
  background-size: cover;
  background-position: 50% 45%; /* Adjust this to move the image */
  z-index: 12;
  background-position: 449px -239px; /* 10px right, 20px up */
}

    .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 135%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}
.member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 5em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Always Show Buttons */
    .custom-btn {
        display: inline-block; /* Always show buttons on mobile */
        position: relative; /* Remove absolute positioning for better layout */
        bottom: auto; /* Reset bottom positioning */
        margin-top: 0em; /* Add spacing above the button */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }

  
  .section-4::after {
top: -26em;
        left: -85px;
        width: 39em;
        height: 47em;
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 25%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 180%;
  z-index: 1;
  top: 20px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}


  .slider-header {
      font-size: 2em;
      margin-top: 3em;
  }

  .slide-5:after {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2025/01/iflopro_slider_5.jpg);
    width: 100%;
    height: 189%;
    z-index: -1;
    top: -99px;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  .inside-content .col-md-8,
  .inside-content .col-md-4 {
      flex: 0 0 auto;
      width: 100%;
  }

  .modal-dialog .camp-form iframe {
      height: 32.2em!important;
  }

  .desk-nav {
      display: block;
  }

  .mobile-nav,
  .quick-nav {
      display: none;
  }

  .menu>li a {
      font-size: 0.65em;
      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>li a {
      font-size: 0.6em;
  }

  .smallbar .desk-nav .top-bar .btn-primary {
      font-size: 0.7em;
  }

  .side-price {
      font-size: 7em;
  }

  .side-offer {
      font-size: 3.1em;
  }

  .side-label {
      font-size: 2em;
  }

  .side-form iframe {
      height: 46em!important;
  }

  .side-coup {
      width: 85%;
      margin: 2em auto 3em auto;
      background-size: cover;
  }
      .insideimage {
  position: relative;
  padding: 6% 4% 8% 4%;
  margin-top: 30%;
  border-bottom: 0.2em solid #e95a3a;
  background: url('/wp-content/uploads/2025/12/inner-banner-2-new.jpg') no-repeat;
  /* background-size: cover; */
  background-position: 50% 45%; /* Adjust this to move the image */
  z-index: 12;
  /* background-position: 301px -47px; */ /* 10px right, 20px up */
}

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

  .client-review {
      padding: 13% 4% 5% 4%;
      margin-top: 22%;
  }

  .banner-head {
      font-size: 1.3em;
  }

  .insideimage .activate a {
      font-size: 1em;
  }

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



  .deal-price {
      font-size: 3.4em;
  }

  .sliderfull {
  }

  .contact-desk a {
      font-size: 1.6em;
  }

  .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) {
  /* NEW QUERIES */

    .slide-5:after {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2025/01/iflopro_slider_5.jpg);
    width: 100%;
    height: 183%;
    z-index: -1;
    top: -99px;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .schedule-now-container::before {
        display: none;
    }
    .schedule-now-container button::before {
        display: none;
    }

  .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -116px;
  left: 0;
}

  .slide-2:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-2.jpg);
  width: 100%;
  height: 170%; /* Adjust as needed */
  z-index: -1;
  top: 34px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 66% center; /* Move closer to the left */
}

.slide-3:after {
  content: "";
  position: absolute;
  /* background-image: url(/wp-content/uploads/2024/12/banner-slide-3.jpg); */
  width: 100%;
  height: 203%; /* Adjust as needed */
  z-index: -1;
  top: -41px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 62% center; /* Move closer to the left */
}

  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/Banner-Slider-4.jpg);
  width: 100%;
  height: 203%; /* Adjust as needed */
  z-index: -1;
  top: -41px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 62% center; /* Move closer to the left */
}

    .client-response {
      padding: 16% 2% 7% 2%;
      margin-top: 16%;
  }

   .thank-you {
      padding: 9% 1% 5% 1%;
      margin-top: 20%;
  }

    .section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  margin-top: -7em;
}

.section-7::after {
    top: -5em; /* Position slightly above the section */
    left: -6%; /* Position slightly off the left edge */
    width: 18em; /* Use em for responsive sizing */
    height: 18em; /* Keep proportions responsive */
}

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 17%;
  }

  .usp2-box {
    background-color: white;
    border-radius: 44px;
    text-align: center;
    padding: 4em 2em 4em 2em;
    margin: 0em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

    .section-7 {
    position: relative;
    padding: 13% 6% 7% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec8-bg.jpg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: 0em;
    background-position-y: -190px;
}

    .section-4::before {
    bottom: 1em; /* Position at the bottom */
    left: -13%; /* Position on the left */
    width: 22em; /* Use em units for responsive width */
    height: 24em; /* Use em units for responsive height */
}


      .insideimage {
  position: relative;
  padding: 8% 4% 8% 4%;
  margin-top: 27.5%;
  border-bottom: 0.2em solid #e95a3a;
  /* background: url('/wp-content/uploads/2024/12/inner-banner-2.jpg') no-repeat; */
  background-size: cover;
  /* background-position: 50% 45%; */ /* Adjust this to move the image */
  z-index: 12;
  /* background-position: 330px -67px; */ /* 10px right, 20px up */
}

    .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 135%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}
  
.member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 4em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }

  
    .section-4::after {
    top: -26em; /* Position at the bottom */
    left: 0; /* Position on the left */
    width: 34em; /* Use em units for responsive width */
    height: 45em; /* Use em units for responsive height */
}

  .sec-3-row {
    display: flex
;
    align-items: center;
    padding: 0em;
}

  .sec3-header {
    position: relative;
    text-transform: uppercase;
    font-size: 3em;
    margin-bottom: 0.3em;
    font-family: 'PoppinsBold', sans-serif;
    color: white;
    line-height: normal;
    z-index: 1;
}

  .custom-control-left {
    left: 3em;
}

  .custom-control-right {
    right: 3em;
}

      .usp-con::after {
  display: none
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 22%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 36px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
    .slide-5 .slider-header {
        font-size: 2em;
        margin-top: 3em;
    }
  .slider-header {
      font-size: 2.8em;
      margin-top: 2em;
  }

  .contact-info-desk a {
      font-size: 1.8em;
  }

  .home-price {
      font-size: 3em;
  }

  /* END NEW QUERIES */
  .side-form iframe {
      height: 47em!important;
  }

  .desk-nav {
      display: block;
  }

  .mobile-nav,
  .quick-nav {
      display: none;
  }

  .menu>li a {
      font-size: .8em;
  }

  .menu-top-menu-container .menu>li a {
      font-size: 0.68em;
      padding: 0.4em .9em;
      color: black !important;
  }

  .side-rev .btn {
      font-size: .9em;
  }

  .side-price {
      font-size: 3.3em;
  }

  .side-offer {
      font-size: 1.2em;
  }

  .top-menu .btn {
      font-size: .8em;
  }




  .smallbar .desk-nav .top-bar .btn-primary {
      font-size: 0.7em;
  }

  .contact-desk a {
      font-size: 1.8em;
  }

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

  .client-review {
      padding: 13% 4% 5% 4%;
      margin-top: 23%;
  }

  .banner-head {
      font-size: 1.3em;
  }

  .insideimage .activate a {
      font-size: 1em;
  }

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

  html {
      font-size: 16px!important;
  }

  .rev-slider .tt_2cl {
      height: 26em;
  }

  .rev-slider .ttshowcase_slider .bx-wrapper .bx-viewport {
      height: 26em!important;
  }

  .home-form iframe {
      height: 46em!important;
      width: 100%!important;
      margin-top: -4em;
  }

  .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) {
  /* NEW QUERIES */

  .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -120px;
  left: 0;
}

  .slide-2:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-2.jpg);
  width: 100%;
  height: 204%; /* Adjust as needed */
  z-index: -1;
  top: -13px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 66% center; /* Move closer to the left */
}

.slide-3:after {
  content: "";
  position: absolute;
  /* background-image: url(/wp-content/uploads/2024/12/banner-slide-3.jpg); */
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 60% center; /* Move closer to the left */
}

  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/Banner-Slider-4.jpg);
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-position: 60% center; /* Move closer to the left */
}

    .section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  margin-top: -12em;
}

.section-7::after {
    top: 5em; /* Position slightly above the section */
    left: -3%; /* Position slightly off the left edge */
    width: 17em; /* Use em for responsive sizing */
    height: 17em; /* Keep proportions responsive */
}

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 13%;
  }

    .section-4::before {
    bottom: 0em; /* Position at the bottom */
    left: -11%; /* Position on the left */
    width: 23em; /* Use em units for responsive width */
    height: 25em; /* Use em units for responsive height */
}

        .insideimage {
  position: relative;
  padding: 6% 4% 8% 4%;
  margin-top: 21.5%;
  border-bottom: 0.2em solid #e95a3a;
  /* background: url('/wp-content/uploads/2024/12/inner-banner-2.jpg') no-repeat; */
  background-size: cover;
  background-position: 50% 45%; /* Adjust this to move the image */
  z-index: 12;
  /* background-position: 401px -78px; */ /* 10px right, 20px up */
}

    .review-btns{
  margin-bottom: 6em;
}

    .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 135%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}

  .member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 4em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }

  .section-4::after {
    top: -26em; /* Position at the bottom */
    left: -4em; /* Position on the left */
    width: 38em; /* Use em units for responsive width */
    height: 45em; /* Use em units for responsive height */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 23%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 49px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}

  .slider-header {
      font-size: 2.8em;
      margin-top: 1em;
  }

      .slide-5 .slider-header {
        font-size: 2.2em;
    }

  .home-price {
      font-size: 3em;
  }

  .contact-info-desk a {
      font-size: 2em;
  }

  /* END NEW QUERIES */
  html {
      font-size: 17px!important;
  }

  .home-form iframe {
      height: 43em!important;
      margin-top: -3.6em;
  }

  .desk-nav {
      display: block;
  }

  .mobile-nav,
  .quick-nav {
      display: none;
  }

  .menu>li a {
      padding: 0.7em 1.3em;
      font-size: 0.7em;
  }

  .menu-top-menu-container .menu>li a {
      font-size: 0.7em;
  }


  .top-menu .btn {
      font-size: .9em;
  }



  .logo-image img {
      width: 10em;
  }

  .side-rev .btn {
      font-size: 1em;
  }

  .side-price {
      font-size: 3.3em;
  }

  .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) {
  /* NEW QUERIES */

      .sec1-subtext {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #000000; /* Adjust for readability */
    text-transform: uppercase;
    font-weight: bold;
    padding: 0px 198px;
}

   .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -100px;
  left: 0;
}

  .slide-2:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-2.jpg);
  width: 100%;
  height: 246%; /* Adjust as needed */
  z-index: -1;
  top: -90px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-3:after {
  content: "";
  position: absolute;
  /* background-image: url(/wp-content/uploads/2024/12/banner-slide-3.jpg); */
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
} 

  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/Banner-Slider-4.jpg);
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}


    .section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  margin-top: -12em;
}

.section-7::after {
    top: 3em; /* Position slightly above the section */
    left: -3%; /* Position slightly off the left edge */
    width: 25em; /* Use em for responsive sizing */
    height: 25em; /* Keep proportions responsive */
}

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 10%;
  }

  .section-5 {
  padding: 25% 5% 65% 5%;
  position: relative;
  z-index: 1; /* Keep the base section below the ::after */
  background: url('/wp-content/uploads/2024/11/sec5-bg-new-min.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  margin: 0; /* Remove any default margin */
  /* min-height: 100vh; */ /* Make the section fill the viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  margin-top: -10em;
}

    .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -7%; /* Position on the left */
    width: 25em; /* Use em units for responsive width */
    height: 25em; /* Use em units for responsive height */
}

  
    .review-btns{
  margin-bottom: 6em;
}

    .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 134%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}

  .member-col, .finance-col {
        min-height: 200px; /* Reduce height for mobile */
        padding: 1.5em 0.5em; /* Adjust padding for better spacing */
        border-width: 2px; /* Thinner borders for smaller blocks */
        border-radius: 60px; /* Adjust the border-radius */
        background-color: #e95a3a;
    }

    /* Adjust Icon Size */
    .icon-irock-financecon, .icon-cc-money {
        font-size: 6em; /* Make icons smaller */
        margin-bottom: 0.5em; /* Maintain spacing below icons */
    }

    /* Adjust Text Size */
    .text-container {
        font-size: 1.2em; /* Slightly smaller text */
        margin-bottom: 0.5em; /* Adjust spacing below text */
    }

    /* Adjust Button Padding and Font Size */
    .custom-btn {
        padding: 1em 1em; /* Smaller padding for buttons */
        font-size: 0.9em; /* Adjust font size for mobile */
        width: 170px;
        background-color: black;
    }

    /* Add Spacing Between Blocks */
    .member-finance-blocks {
        gap: 1.5em; /* Increase spacing between blocks */
    }

    .section-4::after {
    top: -26em; /* Position at the bottom */
    left: 0; /* Position on the left */
    width: 39em; /* Use em units for responsive width */
    height: 45em; /* Use em units for responsive height */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 26%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 27px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}

  .slider-header {
      font-size: 3.54em;
  }

   .slide-5 .slider-header {
      font-size: 2.4em;
  }

  /* END NEW QUERIES */
  html {
      font-size: 17px!important;
  }

  .home-form iframe {
      height: 41em!important;
  }

  .home-form .camp-form iframe {
      height: 32em!important;
  }

  .widget .home-form .camp-form iframe {
      height: 36.3em!important;
  }

  .modal-dialog .camp-form iframe {
      height: 32.2em!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 .desk-nav .top-bar .btn-primary {
      font-size: 0.7em;
  }

  .logo-image img {
      width: 14em;
  }

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

  .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) {
  /* NEW QUERIES */

      .slide-5 .slider-header {
        font-size: 2.4em;
    }

    .sec1-subtext {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #000000; /* Adjust for readability */
    text-transform: uppercase;
    font-weight: bold;
    padding: 0px 198px;
}

   .slide-1:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -156px;
  left: 0;
}

  .slide-2:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-2.jpg);
  width: 100%;
  height: 261%; /* Adjust as needed */
  z-index: -1;
  top: -106px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-3:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/12/banner-slide-3.jpg);
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}


  .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/Banner-Slider-4.jpg);
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

    .section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  margin-top: -12em;
}

.section-7::after {
    top: 2em; /* Position slightly above the section */
    left: -3%; /* Position slightly off the left edge */
    width: 25em; /* Use em for responsive sizing */
    height: 25em; /* Keep proportions responsive */
}

  .error-page {
      padding: 15% 4% 12% 4%;
      margin-top: 9%;
  }

  .section-5 {
  padding: 25% 5% 72% 5%;
  position: relative;
  z-index: 1; /* Keep the base section below the ::after */
  background: url('/wp-content/uploads/2024/11/sec5-bg-new-min.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  margin: 0; /* Remove any default margin */
  /* min-height: 100vh; */ /* Make the section fill the viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  margin-top: -10em;
}

    .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -5%; /* Position on the left */
    width: 25em; /* Use em units for responsive width */
    height: 25em; /* Use em units for responsive height */
}

    .review-btns{
  margin-bottom: 6em;
}
  
    .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 117%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}

  .section-6 {
    padding: 31% 6% 7% 6%;
    margin-top: -29em;
}

.sec-6-col {
    padding: 0em;
}

  .section-4::after {
    top: -26em; /* Position at the bottom */
    left: 0em; /* Position on the left */
    width: 41em; /* Use em units for responsive width */
    height: 45em; /* Use em units for responsive height */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 24%;
}

      .static-slide:after {
        z-index: 1;
        top: 49px;
  
    }

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 15px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}


  .slider-header {
      font-size: 3.6em;
  }

   .slide-5 .slider-header {
      font-size: 2.6em;
  }

  /* END NEW QUERIES */
  html {
      font-size: 17px!important;
  }

  .desk-nav {
      display: block;
  }

  .mobile-nav,
  .quick-nav {
      display: none;
  }

  .sliderfull {
  }

  .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;
  }

  .team-box {
      height: 26em;
      width: 95%;
  }
}

@media screen and (min-width: 125.001em) and (max-width: 999.9em) {
  /* NEW QUERIES */

      .slide-5 .slider-header {
        font-size: 2.4em;
    }

    .slide-4:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/Banner-Slider-4.jpg);
  width: 100%;
  height: 229%; /* Adjust as needed */
  z-index: -1;
  top: -131px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

      .slide-5:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2025/01/iflopro_slider_4.jpg);
  width: 100%;
  height: 194%; /* Adjust as needed */
  z-index: -1;
  top: -53px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left; /* Adjust position for this slide */
  transition: transform 0.4s ease, opacity 0.4s ease;
}



  .sec1-subtext {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #000000; /* Adjust for readability */
    text-transform: uppercase;
    font-weight: bold;
    padding: 0px 198px;
}

  .carousel-item:after {
  width: 100%;
  height: 252%; /* Matches your previous setting */
  z-index: -1; /* Keeps it behind the slide content */
  top: -156px;
  left: 0;
}

  .section-7 {
  position: relative;
  padding: 25% 6% 7% 6%;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  margin-top: -12em;
}

.section-7::after {
    top: 2em; /* Position slightly above the section */
    left: -3%; /* Position slightly off the left edge */
    width: 25em; /* Use em for responsive sizing */
    height: 25em; /* Keep proportions responsive */
}

  .section-5 {
  padding: 25% 5% 60% 5%;
  position: relative;
  z-index: 1; /* Keep the base section below the ::after */
  background: url('/wp-content/uploads/2024/11/sec5-bg-new-min.png') no-repeat center center;
  background-size: cover;
  background-position: top;
  margin: 0; /* Remove any default margin */
  /* min-height: 100vh; */ /* Make the section fill the viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  margin-top: -10em;
}

  .section-4::before {
    bottom: -2em; /* Position at the bottom */
    left: -3%; /* Position on the left */
    width: 25em; /* Use em units for responsive width */
    height: 25em; /* Use em units for responsive height */
}

  .section-6 {
    position: relative;
    padding: 32% 6% 7% 6%;
    background-size: 100%;
    background: url(/wp-content/uploads/2024/11/sec-6-bg.png) no-repeat center center;
    background-size: cover;
    background-position: top;
    z-index: 3;
    background-repeat: no-repeat;
    margin-top: -29em;
}

    .review-btns{
  margin-bottom: 6em;
}

  .home-form::after {
  content: '';
  bottom: 100%; /* Align the bottom of the image with the top of .home-form */
  right: -42%; /* Align to the right edge of .home-form */
  width: 117%; /* Adjust for responsive width */
  aspect-ratio: 2.1 / 1; /* Maintain correct aspect ratio */
}

  .rev-box {
    position: relative;
    background-size: 100% 100%;
    padding: 0em 3em;
    background-position: center;
}

    .section-4::after {
    top: -26em; /* Position at the bottom */
    left: 0; /* Position on the left */
    width: 45em; /* Use em units for responsive width */
    height: 45em; /* Use em units for responsive height */
}

  .sliderfull {
    position: relative;
    z-index: 1;
    margin-top: 21%;
}

.static-slide:after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2024/11/banner-new-1.jpg);
  width: 100%;
  height: 200%;
  z-index: 1;
  top: 49px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}


  .slider-header {
      font-size: 4em;
  }

  .slide-5 .slider-header {
    font-size: 2.8em; /* Adjust the size as needed */
}

  /* END NEW QUERIES */


  html {
      font-size: 17px!important;
  }

  .home-form .camp-form iframe {
      height: 32em!important;
  }

  .widget .home-form .camp-form iframe {
      height: 36.3em!important;
  }

  .modal-dialog .camp-form iframe {
      height: 32.2em!important;
  }

  .desk-nav {
      display: block;
  }

  .mobile-nav,
  .quick-nav {
      display: none;
  }

  .menu>li a {
      font-size: 1.1em;
  }

 

  .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;
  }
}


[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos]{pointer-events:none}[data-aos].aos-animate{pointer-events:auto}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}@media screen{html:not(.no-js) [data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;-webkit-transform:none;transform:none}html:not(.no-js) [data-aos=fade-up]{-webkit-transform:translate3d(0,100px,0);transform:translate3d(0,100px,0)}html:not(.no-js) [data-aos=fade-down]{-webkit-transform:translate3d(0,-100px,0);transform:translate3d(0,-100px,0)}html:not(.no-js) [data-aos=fade-right]{-webkit-transform:translate3d(-100px,0,0);transform:translate3d(-100px,0,0)}html:not(.no-js) [data-aos=fade-left]{-webkit-transform:translate3d(100px,0,0);transform:translate3d(100px,0,0)}html:not(.no-js) [data-aos=fade-up-right]{-webkit-transform:translate3d(-100px,100px,0);transform:translate3d(-100px,100px,0)}html:not(.no-js) [data-aos=fade-up-left]{-webkit-transform:translate3d(100px,100px,0);transform:translate3d(100px,100px,0)}html:not(.no-js) [data-aos=fade-down-right]{-webkit-transform:translate3d(-100px,-100px,0);transform:translate3d(-100px,-100px,0)}html:not(.no-js) [data-aos=fade-down-left]{-webkit-transform:translate3d(100px,-100px,0);transform:translate3d(100px,-100px,0)}html:not(.no-js) [data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}html:not(.no-js) [data-aos=zoom-in]{-webkit-transform:scale(.6);transform:scale(.6)}html:not(.no-js) [data-aos=zoom-in-up]{-webkit-transform:translate3d(0,100px,0) scale(.6);transform:translate3d(0,100px,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-down]{-webkit-transform:translate3d(0,-100px,0) scale(.6);transform:translate3d(0,-100px,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-right]{-webkit-transform:translate3d(-100px,0,0) scale(.6);transform:translate3d(-100px,0,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-left]{-webkit-transform:translate3d(100px,0,0) scale(.6);transform:translate3d(100px,0,0) scale(.6)}html:not(.no-js) [data-aos=zoom-out]{-webkit-transform:scale(1.2);transform:scale(1.2)}html:not(.no-js) [data-aos=zoom-out-up]{-webkit-transform:translate3d(0,100px,0) scale(1.2);transform:translate3d(0,100px,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-down]{-webkit-transform:translate3d(0,-100px,0) scale(1.2);transform:translate3d(0,-100px,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-right]{-webkit-transform:translate3d(-100px,0,0) scale(1.2);transform:translate3d(-100px,0,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-left]{-webkit-transform:translate3d(100px,0,0) scale(1.2);transform:translate3d(100px,0,0) scale(1.2)}html:not(.no-js) [data-aos^=slide][data-aos^=slide]{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;visibility:hidden}html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate{visibility:visible;-webkit-transform:translateZ(0);transform:translateZ(0)}html:not(.no-js) [data-aos=slide-up]{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}html:not(.no-js) [data-aos=slide-down]{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}html:not(.no-js) [data-aos=slide-right]{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}html:not(.no-js) [data-aos=slide-left]{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}html:not(.no-js) [data-aos^=flip][data-aos^=flip]{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}html:not(.no-js) [data-aos=flip-left]{-webkit-transform:perspective(2500px) rotateY(-100deg);transform:perspective(2500px) rotateY(-100deg)}html:not(.no-js) [data-aos=flip-left].aos-animate{-webkit-transform:perspective(2500px) rotateY(0);transform:perspective(2500px) rotateY(0)}html:not(.no-js) [data-aos=flip-right]{-webkit-transform:perspective(2500px) rotateY(100deg);transform:perspective(2500px) rotateY(100deg)}html:not(.no-js) [data-aos=flip-right].aos-animate{-webkit-transform:perspective(2500px) rotateY(0);transform:perspective(2500px) rotateY(0)}html:not(.no-js) [data-aos=flip-up]{-webkit-transform:perspective(2500px) rotateX(-100deg);transform:perspective(2500px) rotateX(-100deg)}html:not(.no-js) [data-aos=flip-up].aos-animate{-webkit-transform:perspective(2500px) rotateX(0);transform:perspective(2500px) rotateX(0)}html:not(.no-js) [data-aos=flip-down]{-webkit-transform:perspective(2500px) rotateX(100deg);transform:perspective(2500px) rotateX(100deg)}html:not(.no-js) [data-aos=flip-down].aos-animate{-webkit-transform:perspective(2500px) rotateX(0);transform:perspective(2500px) rotateX(0)}}