* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --default-color: #2c5978;
  --surface-color: #0f4a49;
  --accent-color: #a7cbcb;
  --white-color: rgba(255, 255, 255, 1);

  /* Background color define */
  --darkbluebg: #16374d;
  --lightgrebg: #0f4a49;
  --btn-color: #a7cbcb;
  --text-color: #13233d;
  --text-black: #141e46;

  /* Typography */
  --heading-font: "Tenor Sans", sans-serif;
  --default-font: "Poppins", sans-serif;
  --font-sm: 16px;
  --font-base: 18px;
  --font-md: 24px;
  --font-lg: 35px;
  --font-xl: 40px;
  --font-xxl: 45px;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 48px;
  --spacing-xxl: 60px;
  --spacing-xxxl: 100px;
}

.dark-background {
  --background-color: rgba(19, 35, 61, 1);
  --surface-color: rgba(74, 99, 130, 1);
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*-- # General Styling & Shared Classes --*/
body {
  color: var(--text-color);
  font-family: var(--default-font);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.125rem;
}
p strong,
li strong,
td strong {
  font-weight: 600;
}
a {
  text-decoration: none;
  transition: all 0.3s linear;
}
html {
  scroll-behavior: smooth;
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
}
ol {
  padding-left: 1.2rem;
}
ul {
  padding-left: 0rem;
}
ol li {
  font-family: var(--default-color);
}
ul li {
  font-family: var(--default-font);
}
/* img{height:auto;} */
img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
img,
svg {
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-style: normal;
}
.common_breadcrum {
  background: var(--darkbluebg);
  padding: 50px 0 10px 0;
  text-align: center;
  position: relative;
}
.common_breadcrum .mainheading {
  color: var(--white-color);
  line-height: 1.1;
  margin-bottom: 5px;
  padding-bottom: 0;
}
.common_breadcrum ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.common_breadcrum ul li {
  color: #f3f3f3;
  list-style: none;
  font-size: 14px;
}
.common_breadcrum ul li a {
  color: var(--accent-color);
}
.common_breadcrum ul li::after {
  content: "|";
  margin-left: 10px;
  color: var(--white-color);
}
.common_breadcrum ul li:last-child::after {
  content: "";
  margin: 0;
}
.mainheading {
  font-family: var(--heading-font);
  font-size: var(--font-xxl);
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  padding-bottom: var(--font-sm);
}
.mainheading span {
  color: var(--accent-color);
}
.subheading {
  font-family: var(--heading-font);
  font-size: var(--font-lg);
  font-weight: 400;
  padding-bottom: var(--font-sm);
  line-height: 1.4;
}
.mainsubheading {
  font-family: var(--heading-font);
  font-size: var(--font-base);
  font-weight: 400;
  padding-bottom: var(--font-sm);
  line-height: 1.4;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
p {
  font-family: var(--default-font);
}

/* Show logofront (default), hide logoback */
.logo .logofront {
  display: inline-block;
}
.logo .logoback {
  display: none;
}

/* Show logoback.webp on scroll */
.header.active .logo .logofront {
  display: none;
}
.header.active .logo .logoback {
  display: inline-block;
}

/* Start of section */
section {
  padding: 40px 0;
  scroll-margin-top: 58px;
  overflow: clip;
}
.blink {
  animation: blinkEffect 2s infinite ease-in-out;
}
.book_appointment .schedulebtn {
  padding: 10px;
  font-size: 16px;
}
/* Blink with shadow */
@keyframes blinkEffect {
  0% {
    background-color: #a7cbcb;
    color: #0f4a49;
    box-shadow: 0 0 10px 2px rgba(44, 89, 120, 0.8);
  }
  50% {
    background-color: #ffffff;
    color: #0f4a49;
    box-shadow: 0 0 18px 4px rgba(15, 74, 73, 0.8);
  }
  100% {
    background-color: #a7cbcb;
    color: #0f4a49;
    box-shadow: 0 0 10px 2px rgba(44, 89, 120, 0.8);
  }
}
table {
  width: 70%;
  border-collapse: collapse;
  background: var(--white-color);
  color: var(--text-black);
  font-family: Arial, sans-serif;
  border: 1px solid var(--accent-color);
  font-size: 18px;
  margin-bottom: 15px;
}

/* Cells */
table td,
table th {
  padding: 12px 16px;
  border: 1px solid var(--accent-color);
}

/* Header */
table th {
  background: var(--accent-color);
  color: var(--text-color);
  font-weight: 600;
  text-align: left;
}

/* Alternate Row Colors */
table tr:nth-child(odd) {
  background: #f7fdfd; /* very light accent shade */
}

table tr:nth-child(even) {
  background: #ffffff; /* pure white */
}

/* Hover Effect (soft & light) */
table tr:hover {
  background: #e3f4f4;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 40px;
  }
}

/*-- # Global Header --*/
#heroSection {
  scroll-margin-top: 100px;
}
.header {
  color: var(--default-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 9999;
}
.header.scrolled {
  background-color: #0f4a49;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.header .topbar {
  background-color: var(--surface-color);
  height: 35px;
  padding: 0;
  opacity: 1;
  overflow: hidden;
  font-size: 14px;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
body.scrolled .header .topbar {
  max-height: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.header .branding {
  position: relative;
  width: 100%;
  transition: background-color 0.4s ease, box-shadow 0.4s ease,
    padding 0.4s ease;
  z-index: 1050;
  min-height: 80px;
  padding: 10px 0;
}
.header .branding.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--surface-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  z-index: 10000;
}
.header .topbar .contact-info {
  font-style: normal;
  color: var(--white-color);
}
.header .topbar .contact-info a {
  padding-left: 2px;
  color: var(--accent-color);
  transition: 0.3s;
}
.header .topbar .contact-info a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.header .logo {
  line-height: 1;
  width: 250px;
}
.header .logo img {
  margin-right: 1rem;
  height: auto;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 11px 15px;
  margin: 0 0 0 30px;
  transition: 0.3s;
  font-weight: 500;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background-color: #f3db94;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navmenu {
  padding: 0;
}
.navmenu .schedulebtn {
  padding: 10px;
  background: var(--btn-color);
  color: var(--default-color);
}
.navmenu .schedulebtn:focus {
  padding: 10px;
}
.navmenu .schedulebtn:hover {
  color: #222;
}
.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--white-color);
  padding: 18px 5px;
  font-family: var(--default-font);
  font-weight: 500;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.chevron-icon {
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s;
}
.chevron-icon.rotate {
  transform: rotate(180deg);
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu a img,
.navmenu a:focus img {
  line-height: 0;
  margin-top: 3px;
  margin-left: 2px;
  transition: 0.3s;
}
.navmenu li:hover > a img {
  filter: invert(74%) sepia(10%) saturate(434%) hue-rotate(135deg)
    brightness(92%) contrast(88%);
}

.navmenu a img {
  filter: brightness(0) invert(1);
  margin-right: 5px;
}

.navmenu li:last-child a {
  /* padding-right: 0; */
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accent-color);
}
.navmenu .dropdown:hover ul {
  display: block;
}
.navmenu .dropdown .lastlist {
  left: auto;
  /* right: 0; */
}
.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--white-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 0px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 4px 15px;
  font-size: 15px;
  text-transform: none;
  color: var(--default-color);
}

.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
  color: var(--accent-color);
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

/* Listing Dropdown - Desktop */
.navmenu .listing-dropdown {
  position: static;
}

.navmenu .listing-dropdown ul {
  margin: 0;
  padding: 10px;
  background: var(--white-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navmenu .listing-dropdown ul li {
  flex: 1;
}

.navmenu .listing-dropdown ul li a,
.navmenu .listing-dropdown ul li:hover > a {
  padding: 10px 15px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--accent-color);
}

.navmenu .listing-dropdown ul li a:hover,
.navmenu .listing-dropdown ul li .active,
.navmenu .listing-dropdown ul li .active:hover {
  color: var(--accent-color);
  background-color: var(--accent-color);
}

.navmenu .listing-dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/* Start of bedcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0.75rem 1rem 0px 0px;
  margin-bottom: 1rem;
  font-size: 12px;
  background-color: transparent;
  border-radius: 0px;
}

.breadcrumb-item + .breadcrumb-item::before {
  /* content: ">"; */
  content: "|";
  padding: 0 0.2rem;
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0px;
}
.breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #fff;
}

/* Start of video testimonial section */
.videotestimonials {
  padding: var(--spacing-lg) 0px var(--spacing-xl) 0;
  background-color: var(--white-color);
  position: relative;
}
.boxcenter {
  margin: 0 auto;
  text-align: center;
}
.simpletext {
  font-size: 17px;
  font-weight: 500;
  padding-bottom: var(--spacing-sm);
  color: var(--text-black);
}
.videotestimonials h2.mainheading {
  color: var(--default-color);
  padding-bottom: var(--spacing-lg);
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.videotestimonials h2.mainheading span {
  color: var(--accent-color);
  font-weight: 600;
}
.position-relative {
  position: relative !important;
}

/* Start of videotestimonialsection */
.featuredwrapper {
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.featuredwrapper .featuredcarousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 1.5) - 15px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 90px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-left: 0px;
  margin-top: -35px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.featuredwrapper.three .featuredcarousel {
  grid-auto-columns: calc((100% / 1.5) - 15px);
}

.featuredcarousel::-webkit-scrollbar {
  display: none;
}

.featuredcarousel.no-transition {
  scroll-behavior: auto;
}
.no-transition {
  scroll-behavior: auto !important;
}

.featuredcarousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.featuredcarousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carouselcard {
  overflow-x: scroll;
  display: flex;
  /* overflow-x: auto; */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  gap: 20px; /* Add gap between cards */
  padding: 0px;
}
.featuredcarousel .videocard {
  border-radius: 1px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  touch-action: pan-y;
  pointer-events: auto;
  user-select: none;
  scroll-snap-align: center;
  border: 10px solid rgba(238, 238, 238, 1);
  background: rgba(255, 255, 255, 1);
  width: 100%;
  transition: all 0.3s ease;
}
.cardimg {
  border-radius: 2px;
  width: 35%;
  position: relative;
}
.beforepics {
  position: absolute;
  right: -40px;
  bottom: 30px;
  z-index: 9;
  width: 110px;
}
.beforepics img {
  height: auto;
  width: 100%;
}

.cardimg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.agencycontent {
  padding: 0px;
  text-align: left;
  width: calc(62% - 40px);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-text {
  margin-bottom: 15px;
  color: var(--text-black);
}
.card-text em {
  font-weight: bold;
  font-style: italic;
}
.cardstory {
  margin-bottom: 15px;
  font-weight: 600;
}
.cardstory img {
  margin-left: 5px;
}
.quotearrow {
  font-size: 100px;
  color: var(--surface-color);
  line-height: 40px;
}
.featureddots {
  text-align: center;
  margin-top: 10px;
}

.featureddots span {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.featureddots span.active {
  background-color: var(--default-color);
}
.carousel-nav {
  position: relative;
  top: 220px;
  width: 76%;
  left: 12%;
  display: flex;
  z-index: 99;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-nav button {
  pointer-events: all;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(220, 220, 220, 1);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.12);
}
.next-btn.cyan {
  background-color: var(--surface-color);
  color: #fff;
  border: var(--surface-color) 1px solid;
}

/* common call back form start */
.commonrequest {
  margin-top: 65px;
}
.commonrequests {
  margin-top: 35px;
}
.rqst_callback_form {
  padding: 20px 0px;
  border-bottom: #ddd 1px solid;
  overflow: auto;
}
#capt img {
  height: 46px;
  width: 100%;
}
.refresh_btn {
  padding: 0px;
  cursor: pointer;
  margin: 0 auto;
  width: 25%;
  text-align: center;
}
.error-message {
  font-size: 11px;
  color: red;
  text-align: left;
}
/* .form-control:focus {border-color: #ccc;box-shadow: none;} */
.fields.form-control {
  border-radius: 0px !important;
  box-shadow: rgb(0 0 0 / 0.1) 0 0 5px 0, rgb(0 0 0 / 0.1) 0 0 1px 0;
  height: 44px;
  border: 1px solid rgba(195, 202, 206, 1);
  padding-left: 12px;
  padding-right: 12px;
}
.captcha_field {
  display: flex;
  align-items: center;
  justify-content: center;
}
.captcha_field {
  border: 1px solid rgba(195, 202, 206, 1);
  box-shadow: rgb(0 0 0 / 0.1) 0 0 5px 0, rgb(0 0 0 / 0.1) 0 0 1px 0;
}
.rqst_callback_form .captcha {
  display: flex;
  align-items: center;
}
.rqst_callback_form .captcha img {
  height: 43px;
  width: 100%;
}
.rqst_callback_form button {
  min-height: 44px;
  background: var(--accent-color);
  color: #0f4a49;
  font-weight: 600;
  border: none;
  width: 100%;
}
.btnview {
  min-height: 46px;
  background: var(--surface-color);
  color: #fff;
  font-weight: 500;
  border: none;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 16px;
  font-family: var(--text-black);
  display: unset !important;
}
.form_submit button {
  padding: 5px 1rem;
}
.rqst_btn {
  width: 100%;
}
.refresh_btn {
  padding: 0px;
  cursor: pointer;
  margin: 0 auto;
  min-height: 42px;
  width: 42px;
  text-align: center;
  line-height: 39px;
}
.captcha_imgs {
  width: 75%;
}
.captcha_imgs img {
  height: 40px;
  width: 100%;
}
/* .loader{background-color: var(--darkbluebg);padding: 6px 1rem;display: inline-block;color: var(--white-color);} */

/* Start of modal Popup */
.modal-content {
  background: none !important;
  border: none !important;
}
.modal-dialog {
  margin: 150px auto;
}
.modal-header {
  padding: 0rem;
  background-color: unset;
}
.modal-body {
  padding: 0rem;
}
.btn-close:hover {
  opacity: 1;
}
.btn-close {
  background: var(--accent-color);
  opacity: 1;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  position: absolute;
  right: 0px;
}
.btn-close i {
  color: #fff;
}
.modal-dialog {
  width: 750px !important;
  border: 0px;
}
iframe.video_iframe {
  width: 100%;
  height: 380px;
}

/* Start of appointmentsection */
.ribbon {
  background: url("../images/dividerphase.webp") repeat-x;
  height: 43px;
  position: relative;
  line-height: 44px;
  width: 75%;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.ribbon::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 0;
  width: 26px;
  height: 43px;
  background: url("../images/leftribbion.webp") no-repeat;
  z-index: 9;
}
.ribbon::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 0;
  width: 26px;
  height: 43px;
  background: url("../images/rightribbion.webp") no-repeat;
  z-index: 9;
}

.appointmentsection {
  padding: 0;
}
.appointmentsection .quotesbg {
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.quotesbox {
  padding-top: var(--spacing-xxl);
}
.quotesbox p {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--heading-font);
  color: var(--default-color);
}
.getheading {
  color: var(--default-color);
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 5px;
  font-family: var(--heading-font);
}
.getquotesheading {
  color: var(--default-color);
  font-size: var(--font-xl);
  font-weight: 4600;
  line-height: 1.2;
  padding-bottom: var(--spacing-md);
  font-family: var(--heading-font);
}
.quotesbgpic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.quotesbox {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.appointmentsection .content {
  background: rgba(241, 244, 246, 1);
  padding: 40px;
  text-align: center;
}

.appointmentsection .content .formheading {
  font-weight: 400;
  padding-bottom: var(--spacing-sm);
  font-family: var(--heading-font);
  font-size: 50px;
  color: var(--default-color);
}
.appointmentsection .content .formheading span {
  color: var(--accent-color);
}

.appointmentsection .content ul {
  list-style: none;
  padding: 0;
}

.appointmentsection .content ul li {
  padding-bottom: 10px;
}

.appointmentsection .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.appointmentsection .content p:last-child {
  margin-bottom: 0;
}

.appointmentsection .content .read-more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.appointmentsection .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.appointmentsection .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

.appointmentsection .content .read-more:hover i {
  margin-left: 10px;
}
.form-check {
  background: rgba(239, 242, 244, 1);
  padding: 6px 12px;
  min-height: auto;
  border: 3px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}
.form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.position-relative {
  position: relative;
}
.mb-20 {
  margin-bottom: 30px;
  margin-top: 1rem;
}
.checkboxrow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.checkcolumn {
  padding: 1px;
  background: #f5f5f5;
  margin: 10px 0px 15px 0px;
}

/* Create a custom checkbox */
.form-check-label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 0px;
  margin-left: 1%;
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  margin-top: -38px;
  vertical-align: middle;
  background: rgba(241, 244, 246, 1);
}
.form-check-label img {
  border-radius: 11px;
  padding: 5px;
  background-color: #fff;
  width: auto;
  height: auto;
  margin-bottom: 8px;
  display: block;
}
.form-check label {
  font-size: 15px;
}

/* Show checkmark when checked */
.form-check-input:checked + .form-check-label::before {
  content: "✔";
  color: white;
  background: rgb(14 74 72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}
.appointment .form-group {
  padding-bottom: 12px;
}
.appointment {
  width: 100%;
}
.appointment .form-group label {
  padding-bottom: 5px;
  color: #252525;
  font-weight: 500;
}

.appointment .form-group label span {
  color: red;
}

.appointment input,
.appointment textarea,
.appointment select {
  color: var(--default-color);
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(195, 202, 206, 1);
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  padding: 10px !important;
  box-shadow: rgb(0 0 0 / 0.1) 0 0 5px 0, rgb(0 0 0 / 0.1) 0 0 1px 0;
}

.appointment input:focus,
.appointment textarea:focus,
.appointment select:focus {
  border-color: var(--accent-color);
}
.appointment select.form-select {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.appointment select option {
  color: var(--default-color);
  background: #f0f0f0;
}

.appointment .form-select-lg {
  font-size: 1.25rem; /* Larger font size */
  padding: 0.5rem 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.appointment .form-select {
  display: block;
  width: 100%;
  height: calc(2.875rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='gray' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658A.5.5 0 0 1 2.825 4.8h10.35a.5.5 0 0 1 .374.858L8.753 11.14a.5.5 0 0 1-.753 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px 20px;
  border: 1px solid #ced4da;
  border-radius: 1px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.appointment input::placeholder,
.appointment textarea::placeholder,
.appointment select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment input,
.appointment select {
  height: 45px;
}

.appointment textarea {
  padding: 10px 12px;
}

.appointment button[type="submit"] {
  background: var(--surface-color);
  font-size: 16px;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 12px 24px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 4px;
  cursor: pointer;
}

.appointment button[type="submit"]:hover {
  background: color-mix(in srgb, var(--default-color) 90%, white 15%);
  color: #fff;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--white-color);
  background-color: var(--darkbluebg);
  font-size: 1rem;
  position: relative;
}

.footer .footertop {
  padding-top: 0px;
  padding-bottom: 0rem;
}
.sitename img {
  width: 250px;
  margin-bottom: 1rem;
  height: auto;
}
.sociallinks {
  margin-top: var(--font-md);
}
.sociallinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-color);
  font-size: 15px;
  color: var(--white-color);
  margin-right: 10px;
  transition: 0.3s;
}
.sociallinks a img {
  filter: brightness(0) invert(1);
}

.sociallinks a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color) 1px solid;
  background-color: var(--accent-color);
}
.sociallinks img {
  width: 20px;
  height: auto;
}

.footer .footerheading {
  font-size: 22px;
  font-family: var(--heading-font);
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer .footerlinks {
  padding: 0px 2.5rem 1.5rem 2.5rem;
  margin-bottom: 0px;
  position: relative;
}
.footerlinks::before,
.footerlinks::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footerlinks::before {
  left: 0;
}

.footerlinks::after {
  right: 0;
}
.footer .footerlinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 20px;
}

.footer .footerlinks ul li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  column-count: 2;
  justify-content: flex-start;
  column-gap: 20px;
  font-size: 15px;
  list-style: none;
  break-inside: avoid;
}

.footer .footerlinks ul a {
  display: inline-block;
  color: var(--white-color);
  line-height: 1;
}

.footer .footerlinks ul a:hover {
  color: var(--accent-color);
}
.footer .footercontacts {
  padding-left: 2rem;
  padding-top: var(--font-xl);
}
.footer .footerabout {
  padding-right: 1rem;
  padding-top: var(--font-xl);
}
.footer .footerlinks {
  padding-top: var(--font-xl);
}
.footer .footerabout a {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--heading-font);
}
.footer .footercontacts p {
  font-size: 15px;
}
.footer .footercontact p {
  margin-bottom: 5px;
  font-size: 15px;
}

.footercontacts .footercall {
  margin-bottom: 1.5rem;
  align-items: center;
}

.footercontacts .footercall span {
  font-size: 20px;
  background: var(--darkbluebg);
  width: 40px;
  border: #fff 1px solid;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 12px;
}
.footercontacts .footercall p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
}
.footercontacts .footercall p a {
  color: var(--white-color);
}
.footercontacts .footercall p a:hover {
  color: var(--accent-color);
}

.footercontacts .footercall:hover span {
  background: var(--white-color);
  color: var(--contrast-color);
}

.footercontacts .footercall:hover span img {
  filter: unset;
}
.footercontacts .footercall span img {
  filter: brightness(0) invert(1);
}

.disclaimerbox {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.disclaimerbox p {
  font-size: 13px;
  line-height: 22px;
  padding-bottom: 5px;
}
.disclaimerheading {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  font-family: var(--heading-font);
}
.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyrightrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  align-items: center;
}

.cbox {
  text-align: right;
  font-size: 13px;
  padding: 10px 0px;
}
.cboxs {
  text-align: left;
  font-size: 13px;
  padding: 10px 0px;
}
.cboxs a {
  color: var(--white-color);
  text-decoration: none;
}
.cboxs a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top img {
  font-size: 24px;
  line-height: 0;
  /* filter: brightness(0) invert(1); */
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* end demo only */
.mobile-bottom-nav {
  display: none;
}
.calltoaction {
  display: none;
}
/* .mobile-bottom-nav {position: fixed;bottom: 0;left: 0;right: 0;z-index: 99;display: flex;height: 55px;background-color: #fff;box-shadow: 0 -2px 5px -2px #333;}
.mobile-bottom-nav__item {flex-grow: 1;background-color: var(--surface-color);color: #fff;text-align: center;font-size: 12px;display: flex;flex-direction: column;align-items: center;justify-content: center;padding: 5px 0;transition: background 0.3s;}
.mobile-bottom-nav__item--active {background-color: var(--accent-color);}
.mobile-bottom-nav__item-content {display: flex;flex-direction: column;align-items: center;}
.mobile-bottom-nav__item-content img {width: 24px;height: 24px;margin-bottom: 4px;}
.mobile-bottom-nav__item span {font-size: 12px;color: #fff;}
.mobile-bottom-nav__item:hover {background-color: var(--accent-color);} */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 -2px 5px -2px #333;
  text-align: center; /* Center inline-blocks */
  font-size: 0; /* Remove whitespace between inline-blocks */
}

.mobile-bottom-nav__item {
  display: inline-block;
  width: 33.33%;
  height: 55px;
  background-color: var(--surface-color);
  color: #fff;
  text-align: center;
  font-size: 12px;
  vertical-align: top;
  padding: 5px 0;
  transition: background 0.3s;
}
.mobile-bottom-nav__item--active {
  background-color: var(--accent-color);
}
.mobile-bottom-nav__item-content {
  display: inline-block;
  text-align: center;
}
.mobile-bottom-nav__item-content img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
.mobile-bottom-nav__item span {
  font-size: 11px;
  color: #fff;
  display: block;
  margin-top: 2px;
}
.mobile-bottom-nav__item:hover {
  background-color: var(--accent-color);
}

/* Start of load more */
.load-more-wrapper {
  text-align: center;
  margin-top: 1rem;
}
.loadmore {
  background-color: var(--surface-color);
  color: var(--white-color);
  border: var(--surface-color) 1px solid;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.loadmore:hover {
  background-color: var(--default-color);
  border: var(--default-color) 1px solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.loadmore:disabled {
  background-color: #ddd;
  cursor: not-allowed;
  color: #222;
  border: #ddd 1px solid;
}
.call_now.gotp a {
  left: 20px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  color: var(--white);
  background-color: #25d366;
}
.call_now.whatsapp_desktop a {
  bottom: 90px;
}
.gotp a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--white);
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9;
  border-radius: 100%;
  line-height: 45px;
  transition: 0.5s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call_now.gotp.mob_call a {
  background: var(--default-color);
  bottom: 24px;
}

@media (1201px <= width < 1367px) {
  .navmenu a,
  .navmenu a:focus {
    font-size: 14px;
  }
  .book_appointment .schedulebtn {
    font-size: 14px;
  }
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 7px;
  }
}
@media (1201px <= width < 1260px) {
  .header .logo {
    width: 150px;
  }
}
@media screen and (max-width: 1300.98px) and (min-width: 1201px) {
  .getquotesheading {
    font-size: 30px;
  }
  .appointmentsection .content .formheading {
    font-size: 40px;
  }
  .ribbon {
    width: 90%;
  }
  .featuredwrapper .featuredcarousel {
    grid-auto-columns: calc((100% / 1.3) - 10px);
    gap: 75px;
  }
  .carousel-nav {
    width: 88%;
    left: 6%;
  }
  .getquotesheading {
    font-size: 26px;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }

  /* Start of request A CallBack */
  /* .commonrequest {margin-top: 20px;} */
  .commonrequest {
    margin-top: 60px;
  }
  .btnview {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Start of appointment */
  .getheading {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 5px;
  }
  .quotesbox {
    width: 90%;
    padding-top: var(--spacing-xl);
  }
  .getquotesheading {
    font-size: 30px;
    padding-bottom: var(--spacing-md);
  }
  .appointmentsection .quotesbg {
    min-height: 580px;
  }
  .appointmentsection .content {
    padding: 2rem 2rem;
    text-align: center;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }
  .appointmentsection .content .formheading br {
    display: none;
  }
  .ribbon {
    width: 80%;
  }

  /* Start of videotestimonials */
  .videotestimonials {
    padding: var(--spacing-lg) 0px var(--spacing-md) 0;
  }
  .boxcenter {
    margin-bottom: 1rem;
  }
  .carousel-nav {
    top: 170px;
  }
  .simpletext {
    padding-bottom: 0px;
  }
  .boxcenter .mainheading {
    padding-bottom: 0px;
  }
  .card-text {
    font-size: 1rem;
  }
  .featuredwrapper {
    padding: 2rem 0px;
  }
  .featuredcarousel .videocard {
    padding: 15px;
  }
  .cardstory {
    font-size: 15px;
  }
  .quotearrow {
    font-size: 60px;
    line-height: 20px;
  }
}

/* Start of Mini Desktop Screen */
@media screen and (max-width: 1200.98px) and (min-width: 1101px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 5px;
  }
  .getquotesheading {
    font-size: 30px;
  }
  .appointmentsection .content .formheading {
    font-size: 40px;
  }
  .ribbon {
    width: 90%;
  }
  .mainheading {
    font-size: var(--font-xl);
  }
  .featuredwrapper .featuredcarousel {
    grid-auto-columns: calc((100% / 1.3) - 10px);
    gap: 75px;
  }
  .carousel-nav {
    width: 88%;
    left: 6%;
  }
  .getquotesheading {
    font-size: 26px;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }

  /* Start of request A CallBack */
  .commonrequest {
    margin-top: 40px;
  }

  /* Start of appointment */
  .getheading {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 5px;
  }
  .quotesbox {
    width: 90%;
    padding-top: var(--spacing-xl);
  }
  .getquotesheading {
    font-size: 30px;
    padding-bottom: var(--spacing-md);
  }
  .appointmentsection .quotesbg {
    min-height: 580px;
  }
  .appointmentsection .content {
    padding: 2rem 2rem;
    text-align: center;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }
  .appointmentsection .content .formheading br {
    display: none;
  }
  .ribbon {
    width: 80%;
  }

  /* Start of videotestimonials */
  .videotestimonials {
    padding: var(--spacing-lg) 0px var(--spacing-md) 0;
  }
  .boxcenter {
    margin-bottom: 1rem;
  }
  .carousel-nav {
    top: 170px;
  }
  .simpletext {
    padding-bottom: 0px;
  }
  .boxcenter .mainheading {
    padding-bottom: 0px;
  }
  .card-text {
    font-size: 1rem;
  }
  .featuredwrapper {
    padding: 2rem 0px;
  }
  .featuredcarousel .videocard {
    padding: 15px;
  }
  .cardstory {
    font-size: 15px;
  }
  .quotearrow {
    font-size: 60px;
    line-height: 20px;
  }
}

/* Start of Mini Desktop Screen */
@media screen and (max-width: 1100.98px) and (min-width: 992px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 5px;
    font-size: 15px;
  }
  .ribbon {
    width: 100%;
    font-size: 16px;
  }
  .getquotesheading {
    font-size: 26px;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }
  .mainheading {
    font-size: var(--font-xl);
  }

  /* Start of request A CallBack */
  .commonrequest {
    margin-top: 10px;
  }

  /* Start of appointment */
  .getheading {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 5px;
  }
  .quotesbox {
    width: 90%;
    padding-top: var(--spacing-xl);
  }
  .getquotesheading {
    font-size: 30px;
    padding-bottom: var(--spacing-md);
  }
  .appointmentsection .quotesbg {
    min-height: 580px;
  }
  .appointmentsection .content {
    padding: 2rem 1rem;
    text-align: center;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }
  .appointmentsection .content .formheading br {
    display: none;
  }
  .ribbon {
    width: 80%;
  }

  /* Start of videotestimonials */
  .videotestimonials {
    padding: var(--spacing-lg) 0px var(--spacing-md) 0;
  }
  .boxcenter {
    margin-bottom: 1rem;
  }
  .simpletext {
    padding-bottom: 0px;
  }
  .boxcenter .mainheading {
    padding-bottom: 0px;
  }
  .card-text {
    font-size: 1rem;
  }
  .featuredwrapper {
    padding: 2rem 0px;
  }
  .featuredcarousel .videocard {
    padding: 15px;
  }
  .cardstory {
    font-size: 15px;
  }
  .quotearrow {
    font-size: 60px;
    line-height: 20px;
  }

  /* Start of footer */
  .footer .footerlinks ul li {
    column-gap: 15px;
    font-size: 14px;
  }
  .footercontacts .footercall p {
    margin-bottom: 0;
    font-size: 14px;
  }
  .footer .footercontact p {
    font-size: 14px;
  }
}

/* Start of IPad Screen */
@media screen and (max-width: 991.98px) and (min-width: 768px) {
  .header .branding {
    background-color: var(--darkbluebg);
  }
  .header .logo {
    width: 160px;
  }
  .btn-getstarted {
    display: none;
  }
  .header .branding {
    min-height: 65px;
    padding: 5px 0;
  }
  section {
    padding: 20px 0;
    scroll-margin-top: 38px;
  }
  .mainheading {
    font-size: 26px;
    padding-bottom: 5px;
  }
  .form-check label {
    font-size: 13px;
  }
  .form-check {
    padding: 2px 5px;
    min-height: auto;
    border: 2px solid rgba(255, 255, 255, 1);
    margin-bottom: 0px;
  }
  .form-check-label img {
    padding: 0px;
    margin-bottom: 3px;
    margin-top: -5px;
  }
  .form-check-label::before {
    width: 20px;
    height: 20px;
    margin-right: 0px;
    margin-left: 0%;
    border: 2px solid rgba(255, 255, 255, 1);
    margin-top: -25px;
  }
  .checkcolumn {
    margin: 0px 0px 10px 0px;
  }
  .header .topbar {
    height: 25px;
    padding: 0;
    font-size: 13px;
  }
  .mainheading {
    padding-bottom: 0px;
    font-size: var(--font-lg);
  }
  .rqst_callback_form {
    padding: 20px 0px 20px 0px;
  }

  /* Start of request A CallBack */
  .commonrequest {
    margin-top: 70px;
  }

  /* Start of appointment */
  .getheading {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 5px;
  }
  .quotesbox {
    width: 90%;
    padding-top: var(--spacing-xl);
  }
  .getquotesheading {
    font-size: 27px;
    padding-bottom: var(--spacing-sm);
  }
  .appointmentsection .quotesbg {
    min-height: 580px;
  }
  .appointmentsection .content {
    padding: 2rem 1rem;
    text-align: center;
  }
  .appointmentsection .content .formheading {
    font-size: 35px;
  }
  .appointmentsection .content .formheading br {
    display: none;
  }
  .ribbon {
    width: 65%;
  }

  /* Start of videotestimonials */
  .videotestimonials {
    padding: var(--spacing-lg) 0px var(--spacing-md) 0;
  }
  .carousel-nav {
    display: none;
  }
  .boxcenter {
    margin-bottom: 1rem;
  }
  .simpletext {
    padding-bottom: 0px;
  }
  .featuredwrapper .featuredcarousel {
    grid-auto-columns: calc(75% - 0px);
    gap: 8px;
    margin-left: -35px;
    margin-top: -10px;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    grid-auto-columns: unset;
    gap: 16px;
  }
  .featuredcarousel .card {
    scroll-snap-align: start;
    display: inline-block;
    padding: 8px;
  }
  .cardimg {
    width: 80%;
  }
  .beforepics {
    position: absolute;
    right: -80px;
    bottom: 50px;
    width: 150px;
  }
  .featuredcarousel .videocard {
    padding: 10px;
    border: 5px solid rgba(238, 238, 238, 1);
    width: 70%;
    display: block;
    min-height: 100%;
  }
  .agencycontent {
    padding: 0px;
    text-align: left;
    width: calc(100% - 0px);
  }
  .quotearrow {
    font-size: 100px;
    line-height: 100px;
    height: 60px;
    vertical-align: middle;
  }
  .carousel-nav {
    position: relative;
    top: 750px;
    width: 30%;
    left: 34%;
  }
  .boxcenter .mainheading {
    padding-bottom: 12px;
  }
  .card-text {
    font-size: 1rem;
  }
  .featuredwrapper {
    padding: 2rem 0px;
  }

  /* Start of footer */
  .footer .footercontacts {
    padding-left: 1rem;
    padding-top: var(--font-lg);
    border-top: rgba(255, 255, 255, 0.2) 1px solid;
  }
  .footerlinks::after {
    display: none;
  }
}

/* Start of mobile menu */
@media screen and (max-width: 1199.99px) and (min-width: 320px) {
  .book_appointment {
    display: none;
  }
  /* Start of sidebar */
  .topbluebg {
    background-color: var(--surface-color);
  }
  .nav-mobile {
    background: #fff;
    color: #fff;
    padding: 0;
    margin: 0;
    cursor: auto;
    font-size: 16px;
    list-style-type: none;
    box-shadow: 0 5px 5px -5px #333;
  }
  .nav-mobile:after {
    content: "";
    display: table;
    clear: both;
  }
  .nav-mobile svg {
    height: 35px;
    width: 40px;
    background: var(--accent-color);
    padding: 5px;
    font-size: 10px;
    font-weight: normal !important;
    border-radius: 3px;
    margin-top: 1px;
  }
  .nav-mobile svg path {
    fill: #fff;
  }
  .nav-mobile svg.icon-close {
    display: none;
    margin-top: 7px;
  }
  .nav-mobile li {
    width: 100%;
    height: 45px;
    line-height: 46px;
    text-align: center;
  }
  .nav-mobile li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #151618;
    text-decoration: none;
  }
  .nav-mobile li a.btn_book {
    background: #0f4a49;
    display: inline-block;
    padding-left: 20px;
    color: #fff;
  }
  .nav-mobile .menu-button {
    position: absolute;
    top: -25px;
    left: -12vw;
    margin: 0;
    cursor: pointer;
    display: block;
    z-index: 99;
  }
  .nav-mobile .menu-button:after {
    opacity: 0;
    top: 40px;
    content: "";
    width: 100vw;
    display: block;
    position: fixed;
    height: 100vh;
    content: "";
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
    transition-delay: 0.1s;
  }

  .nav-mobile #menu-toggle.active ~ .menu-button .icon-close,
  .nav-mobile #menu-toggle:checked ~ .menu-button .icon-close {
    display: block;
  }
  .nav-mobile #menu-toggle.active ~ .menu-button .icon-open,
  .nav-mobile #menu-toggle:checked ~ .menu-button .icon-open {
    display: none;
  }
  .nav-mobile #menu-toggle.active ~ .menu-button:after,
  .nav-mobile #menu-toggle:checked ~ .menu-button:after {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
  }
  .nav-mobile #menu-toggle.active ~ .menu-sidebar,
  .nav-mobile #menu-toggle:checked ~ .menu-sidebar {
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  }
  .nav-mobile .menu-container {
    width: auto;
    float: left;
    cursor: pointer;
    position: absolute;
  }
  .nav-mobile .menu-container .menu-sidebar {
    box-shadow: 5px 0 5px -5px #333;
    display: block;
    width: 270px;
    bottom: 0;
    left: 0;
    background: #fff;
    color: #151618;
    position: fixed;
    transform: translateX(-405px);
    transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
    top: 0;
    z-index: 9999;
    list-style-type: none;
    padding: 0;
    max-height: 100vh;
    max-height: 100%;
    max-width: 400px;
  }
  .nav-mobile .menu-container .menu-sidebar .arrow {
    position: absolute;
    line-height: 28px;
    font-size: 32px;
    color: #222;
    top: 2px;
    z-index: -1;
    text-align: center;
  }
  .nav-mobile .menu-container .menu-sidebar .arrow.left {
    left: 10px;
  }
  .nav-mobile .menu-container .menu-sidebar .arrow.right {
    right: 10px;
  }
  .nav-mobile .menu-container .menu-sidebar li {
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
    padding-left: 10px;
  }
  .nav-mobile .menu-container .menu-sidebar li:hover {
    background: rgb(0 0 0 / 0.1);
  }
  .nav-mobile .menu-container .menu-sidebar li .menu-sub {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background: #fff;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
    border-left: 1px solid #ccc;
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 2;
    max-width: 400px;
  }
  .nav-mobile .menu-container .menu-sidebar li .menu-sub li {
    overflow: hidden;
  }
  .nav-mobile .menu-container .menu-sidebar li .menu-sub .menu-sub-title {
    padding-left: 35px;
  }
  .nav-mobile .menu-container .menu-sidebar li .submenu-label {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: block !important;
  }
  .nav-mobile .menu-container .menu-sidebar li .lblback {
    width: 100%;
    padding-left: 36px;
    margin-left: -34px;
  }
  .bookbtn {
    padding: 3px 12px;
    border-radius: 30px;
    background-color: #e9c04a;
    font-size: 14px;
    color: #fff;
    line-height: 34px !important;
  }
  .book {
    font-size: 13px;
  }
  .nav-mobile li a.mnlnkbx {
    line-height: 20px;
    padding-top: 6px;
  }
  .mainsub {
    width: 100% !important;
    margin: 0 4px 0 0;
  }
  .nav-mobile .menu-container .menu-sidebar li .submenu-toggle {
    display: none;
  }
  .nav-mobile
    .menu-container
    .menu-sidebar
    li
    .submenu-toggle.active
    ~ .menu-sub,
  .nav-mobile
    .menu-container
    .menu-sidebar
    li
    .submenu-toggle:checked
    ~ .menu-sub {
    width: 272px;
    visibility: visible;
    z-index: 1;
    transition: width 0.35s cubic-bezier(0, 0, 0.3, 1);
  }
  .thirdlebel {
    max-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .thirdlebel li:first-child {
    position: fixed !important;
    background-color: #fff !important;
    z-index: 9;
    color: #222;
  }
  .thirdlebel li:nth-child(2) {
    padding-top: 34px !important;
  }
  .nav-mobile .menu-container .menu-sidebar li label {
    z-index: 99;
    color: #151618 !important;
  }
  .nav-mobile .menu-container .menu-sidebar .mlogo {
    height: auto;
    text-align: center;
    padding: 0;
  }
  .nav-mobile .menu-container .menu-sidebar .mlogo:hover {
    background: none;
  }
  .nav-mobile .menu-container .menu-sidebar .mlogo img {
    margin: 10px 0;
  }
  .navmenu,
  .nav-mobile #menu-toggle {
    display: none;
  }
  /* End of sidebar */
}

/* Start of mobile menu */
@media screen and (max-width: 767px) and (min-width: 600px) {
  .checkboxrow{
    gap: 2px;
  }
  .mob_call {
    display: none;
  }
  .header .logo {
    width: 150px;
  }
  .btn-getstarted {
    display: none;
  }
  .header .logo img {
    margin-left: 1rem;
  }
  .header .branding {
    min-height: 65px;
    padding: 5px 0;
    background-color: var(--darkbluebg);
  }
  section {
    padding: 20px 0;
    scroll-margin-top: 38px;
  }
  .form-check label {
    font-size: 12px;
  }
  .form-check {
    padding: 2px 5px;
    min-height: auto;
    border: 2px solid rgba(255, 255, 255, 1);
    margin-bottom: 0px;
  }
  .form-check-label img {
    padding: 0px;
    margin-bottom: 3px;
    margin-top: -5px;
  }
  .form-check-label::before {
    width: 20px;
    height: 20px;
    margin-right: 0px;
    margin-left: 0%;
    border: 2px solid rgba(255, 255, 255, 1);
    margin-top: -25px;
  }
  .checkcolumn {
    margin: 0px 0px 10px 0px;
  }
  .header .topbar {
    height: 25px;
    padding: 0;
    font-size: 12px;
  }
  .mainheading {
    padding-bottom: 0px;
    font-size: var(--font-lg);
  }

  /* Start of request A CallBack */
  .commonrequest {
    margin-top: 75px;
  }

  /* Start of videotestimonials */
  .videotestimonials {
    padding: var(--spacing-lg) 0px var(--spacing-md) 0;
  }
  .carousel-nav {
    display: none;
  }
  .boxcenter {
    margin-bottom: 1rem;
  }
  .simpletext {
    padding-bottom: 0px;
  }
  .featuredwrapper .featuredcarousel {
    grid-auto-columns: calc(75% - 0px);
    gap: 8px;
    margin-left: -35px;
    margin-top: -10px;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    grid-auto-columns: unset;
    gap: 16px;
  }
  .featuredcarousel .card {
    scroll-snap-align: start;
    display: inline-block;
    padding: 8px;
  }
  .cardimg {
    width: 90%;
  }
  .beforepics {
    position: absolute;
    right: -30px;
    bottom: 30px;
    z-index: 9;
    width: 80px;
  }
  .featuredcarousel .videocard {
    padding: 10px;
    border: 5px solid rgba(238, 238, 238, 1);
    width: 70%;
    display: block;
    min-height: 100%;
  }
  .agencycontent {
    padding: 0px;
    text-align: left;
    width: calc(100% - 0px);
  }
  .quotearrow {
    font-size: 100px;
    line-height: 100px;
    height: 60px;
    vertical-align: middle;
  }
  .carousel-nav {
    position: relative;
    top: 750px;
    width: 30%;
    left: 34%;
  }
  .boxcenter .mainheading {
    padding-bottom: 12px;
  }
  .card-text {
    font-size: 1rem;
  }

  /* Start of appointment */
  .getheading {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 5px;
  }
  .quotesbox {
    width: 90%;
    padding-top: var(--spacing-lg);
  }
  .getquotesheading {
    font-size: 27px;
    padding-bottom: var(--spacing-sm);
  }
  .appointmentsection .quotesbg {
    min-height: 500px;
  }
  .appointmentsection .content {
    padding: 10px;
    text-align: center;
  }
  .appointmentsection .content .formheading {
    font-size: 30px;
  }
  .appointmentsection .content .formheading br {
    display: none;
  }
  .ribbon {
    width: 90%;
  }

  /* Start of footer */
  .footer {
    margin-bottom: 55px;
  }
  .footer .footerlinks {
    padding: 0px 1rem 1.5rem 1rem;
  }
  .footer .footercontacts {
    padding-left: 1rem;
    padding-top: 0px;
  }
  .sociallinks {
    margin-top: var(--font-sm);
    margin-bottom: var(--spacing-lg);
  }
  .copyrightrow {
    grid-template-columns: 1fr;
    gap: 0rem;
    align-items: center;
  }
  .cbox {
    text-align: center;
    font-size: 12px;
    padding: 0px 0px;
  }
  .cboxs {
    text-align: center;
    font-size: 12px;
    padding: 3px 0px;
  }
  .scroll-top {
    bottom: 110px;
  }
  .footerlinks::before,
  .footerlinks::after {
    height: 100%;
    width: 0px;
    background-color: unset;
    display: none;
  }
  .mobile-bottom-nav {
    display: block;
    display: unset;
  }
  .calltoaction {
    display: block;
  }
}

/* Start of Iphone/Mobile Screen */
@media screen and (max-width: 599.98px) and (min-width: 320px) {
  .checkboxrow{
    gap: 0;
  }
  .call_now.gotp a {
    width: 50px;
    height: 50px;
  }
  .call_now.whatsapp_desktop a {
    bottom: 105px;
  }
  .mob_call {
    display: none;
  }
  .common_breadcrum {
    padding-top: 30px;
  }
  .common_breadcrum ul li {
    font-size: 12px;
  }
  .header .logo {
    width: 180px;
  }
  .btn-getstarted {
    display: none;
  }
  .header .branding {
    min-height: 65px;
    padding: 5px 0;
    background: var(--darkbluebg);
  }
  section {
    padding: 20px 0;
    scroll-margin-top: 38px;
  }
  .mainheading {
    font-size: 26px;
    padding-bottom: 5px;
    padding-bottom: 0px;
  }
  .form-check label {
    font-size: 8px;
  }
  .form-check {
    padding: 2px 5px;
    min-height: auto;
    border: 2px solid rgba(255, 255, 255, 1);
    margin-bottom: 0px;
  }
  .form-check-label img {
    padding: 0px;
    margin-bottom: 3px;
    margin-top: -5px;
  }
  .form-check-label::before {
    width: 20px;
    height: 20px;
    margin-right: 0px;
    margin-left: 0%;
    border: 2px solid rgba(255, 255, 255, 1);
    margin-top: -25px;
  }
  .checkcolumn {
    margin: 0px 0px 10px 0px;
  }
  .header .topbar {
    height: 25px;
    padding: 0;
    font-size: 8px;
  }

  /* Start of videotestimonials */
  .videotestimonials {
    padding: var(--spacing-lg) 0px var(--spacing-md) 0;
  }
  .carousel-nav {
    display: none;
  }
  .boxcenter {
    margin-bottom: 1rem;
  }
  .simpletext {
    padding-bottom: 0px;
  }
  .featuredwrapper .featuredcarousel {
    grid-auto-columns: calc(75% - 0px);
    gap: 8px;
    margin-left: -35px;
    margin-top: -10px;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    grid-auto-columns: unset;
    gap: 16px;
  }
  .featuredcarousel .card {
    scroll-snap-align: start;
    display: inline-block;
    padding: 8px;
  }
  .cardimg {
    width: 90%;
  }
  .card-text {
    font-size: 15px;
  }
  .beforepics {
    position: absolute;
    right: -30px;
    bottom: 30px;
    z-index: 9;
    width: 80px;
  }
  .featuredcarousel .videocard {
    padding: 10px;
    border: 5px solid rgba(238, 238, 238, 1);
    width: 80%;
    display: block;
    min-height: 100%;
  }
  .agencycontent {
    padding: 0px;
    text-align: left;
    width: calc(100% - 0px);
  }
  .quotearrow {
    font-size: 100px;
    line-height: 100px;
    height: 60px;
    vertical-align: middle;
  }
  .cardstory {
    font-size: 15px;
  }
  .carousel-nav {
    position: relative;
    top: 750px;
    width: 30%;
    left: 34%;
  }
  .boxcenter .mainheading {
    padding-bottom: 12px;
  }

  /* Start of appointment */
  .getheading {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 5px;
  }
  .quotesbox p {
    font-size: 15px;
  }
  .content p {
    font-size: 16px;
  }
  .quotesbox {
    width: 90%;
    padding-top: var(--spacing-lg);
  }
  .getquotesheading {
    font-size: var(--font-md);
    padding-bottom: var(--spacing-sm);
  }
  .appointmentsection .quotesbg {
    min-height: 440px;
  }
  .appointmentsection .content {
    padding: 10px;
    text-align: center;
  }
  .appointmentsection .content .formheading {
    font-size: 24px;
  }
  .appointmentsection .content .formheading br {
    display: none;
  }
  .ribbon {
    width: 90%;
    font-size: 15px;
  }

  /* Start of request A CallBack */
  .rqst_callback_form {
    padding: 10px 0px 15px 0px;
  }
  .commonrequests {
    margin-top: 10px;
  }
  .commonrequest {
    margin-top: 90px;
  }

  /* Start of footer */
  .footer {
    margin-bottom: 55px;
  }
  .footer .footerlinks {
    padding: 0px 1rem 1.5rem 1rem;
  }
  .footer .footercontacts {
    padding-left: 1rem;
    padding-top: 0px;
  }
  .sociallinks {
    margin-top: var(--font-sm);
    margin-bottom: var(--spacing-lg);
  }
  .copyrightrow {
    grid-template-columns: 1fr;
    gap: 0rem;
    align-items: center;
  }
  .cbox {
    text-align: center;
    font-size: 12px;
    padding: 0px 0px;
  }
  .cboxs {
    text-align: center;
    font-size: 12px;
    padding: 3px 0px;
  }
  .scroll-top {
    bottom: 110px;
  }
  .mobile-bottom-nav {
    display: block;
    display: unset;
  }
  .calltoaction {
    display: block;
  }
}
