/*! Normalise CSS !*/
@import url(normalize.css);
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Black, #000);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  background: #fff;
  overflow-x: hidden;
}

p {
  color: var(--Text, #45556c);
  /* Section Paragraph(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 20px;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 0.75rem;
  color: var(--White, #fff);
  /* Headline(H1) */
  font-family: Poppins;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.25rem; /* 113.333% */
}

h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 2.75rem;
  color: var(--Black, #000);
  /* Section Heading(H2) */
  font-family: Poppins;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.25rem; /* 170% */
}

h3 {
  padding: 0;
  margin: 0;
  color: black;
  /* H3 */
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem; /* 125% */
  margin-bottom: 0.25rem;
}

h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  color: #000;
  /* H4 */
  font-family: Poppins;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem; /* 121.429% */
}

h5 {
  margin: 0;
  padding: 0;
  color: var(--Black, #000);
  /* Card Heading */
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

h6 {
  margin: 0;
  padding: 0;
  color: var(--Green, #7db54f);
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 1.005rem 1.5rem;
  color: var(--White, #fff);
  text-align: center;
  /* CTA */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
  border: 1px solid var(--Green, #7db54f);
  border-radius: 3.125rem;
  background: var(--Green, #7db54f);
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
.btn:hover {
  border: 1px solid var(--Green, #7db54f);
  background: white;
  color: var(--Green, #7db54f);
}
.btn.btnborder {
  background-color: transparent;
  border: 1px solid white;
  color: #fff;
}
.btn.btnborder:hover {
  background-color: white;
  color: var(--Black, #000);
}
.btn.whitebtn {
  background-color: white;
  color: var(--Black, #000);
  border: 1px solid white;
}
.btn.whitebtn:hover {
  background-color: transparent;
  border: 1px solid white;
  color: #fff;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit]):not([type=radio]):not([type=checkbox]),
textarea {
  width: 100%;
  padding: 1.0821rem 1.2382rem;
  border-radius: 0.25rem;
  border: 1px solid #a1a1a1;
  background: rgba(255, 255, 255, 0.1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background: #f1f1f1;
  box-shadow: none;
}

select {
  width: 100%;
  padding: 1.2382rem;
  border-radius: 0.25rem;
  border: 1px solid #a1a1a1;
  background: rgba(255, 255, 255, 0.1);
  -webkit-appearance: none; /* Removes default appearance in Safari */
  -moz-appearance: none; /* Removes default appearance in Firefox */
  appearance: none; /* Standard */
  outline: none; /* Removes the focus outline */
  box-shadow: none; /* Removes the box shadow */
  background: #fff url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: right 0.86rem center;
  background-size: 1.03125rem;
  color: var(--Black, #000);
}

select:focus {
  border: 1px solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: var(--Black, #000);
  font-size: 14px;
  font-weight: 400;
}

label {
  color: var(--White, #fff);
  /* Section Paragraph(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  display: block;
  margin-bottom: 0.45rem;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #090914;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 8px;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #bbc4cd;
  padding: 11px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 4px;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background: #fff;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 6px;
  font-size: 13px;
  top: 1px;
  color: #121212;
}

.defaultspacing {
  padding: 5rem 0;
}

.pills {
  display: inline-flex;
  width: 10.6625rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 3.125rem;
  background: rgba(77, 180, 210, 0.1);
  color: var(--Black, #000);
  /* Section Tagline(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem; /* 450% */
  margin-bottom: 1.25rem;
}

header {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: top 0.3s ease-in-out;
}
@media (max-width: 991px) {
  header.scroll-down {
    top: var(--tophead-height, -50px);
  }
}
header .tophead {
  padding: 0.5625rem;
  background-color: var(--Sky, #4db4d2);
}
header .tophead .tophead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
header .tophead .tophead-row p {
  color: white;
  margin-bottom: 0;
}
header .tophead .tophead-row ul {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
header .tophead .tophead-row ul li a {
  border-radius: 1.375rem;
  border: 0.55px solid var(--White, #fff);
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.625rem;
}
header .tophead .tophead-row ul li a:hover {
  background-color: white;
  color: var(--Green, #7db54f);
}
header .bottomhead {
  background-color: white;
}
header .bottomhead .bottomhead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
header .bottomhead .bottomhead-row .logo {
  max-width: 5.6875rem;
  width: 100%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  overflow: hidden;
}
header .bottomhead .bottomhead-row .logo img {
  width: 100%;
  aspect-ratio: 91/90;
}
header .bottomhead .bottomhead-row .navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header .bottomhead .bottomhead-row .navigation ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
header .bottomhead .bottomhead-row .navigation ul li a {
  color: var(--Black, #000);
  text-align: center;
  /* Section Paragraph(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  padding: 2.38rem 0.63rem;
  text-decoration: none;
  position: relative;
}
header .bottomhead .bottomhead-row .navigation ul li a:before {
  content: "";
  position: absolute;
  height: 4px;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--Sky, #4db4d2);
  width: 0;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}
header .bottomhead .bottomhead-row .navigation ul li a:hover:before {
  width: 100%;
}

.banner {
  overflow: hidden;
  position: relative;
}
.banner > img {
  width: 100%;
}
.banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  width: 75%; /* Controls how far right the top corner goes */
  /* Teal gradient matching the design */
  background: linear-gradient(125deg, #47aebc 25.5%, rgba(113, 194, 205, 0) 101.2%);
  /* Creates the angled slice (Top-Left, Top-Right, Bottom-Right, Bottom-Left) */
  clip-path: polygon(-17% 0%, 58% 0%, 100% 100%, 20% 100%);
  z-index: 2;
}
@media (max-width: 991px) {
  .banner .banner-overlay {
    width: 85%;
    clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
  }
}
.banner .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.banner .container .banner-content {
  max-width: 43.1rem;
}
.banner .container .banner-content p {
  color: var(--White, #fff);
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 3.13rem;
}
.banner .container .banner-content .btn-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.banner .container .showcase {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
}
.banner .container .showcase .showcasebx {
  border: 1px solid var(--White, #fff);
  background: var(--Green, #7db54f);
  border-radius: 2.5rem;
  max-width: 8.3rem;
  width: 100%;
  padding: 1.5625rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  justify-content: center;
}
.banner .container .showcase .showcasebx span {
  color: var(--White, #fff);
  text-align: center;
  /* H2 */
  font-family: Poppins;
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.15rem;
}
.banner .container .showcase .showcasebx small {
  color: var(--White, #fff);
  text-align: center;
  /* Section Paragraph(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
.banner .container .showcase .showcasebx.white {
  border: 1px solid var(--White, #fff);
  background: var(--White, #fff);
}
.banner .container .showcase .showcasebx.white span,
.banner .container .showcase .showcasebx.white small {
  color: var(--Text, #45556c);
}
.banner.innerbanner {
  text-align: center;
}
.banner.innerbanner .banner-overlay {
  background: linear-gradient(179deg, #118672 -132%, rgba(255, 255, 255, 0.25) 110%);
  clip-path: polygon(-4% 0%, 56.5% 0%, 80% 200%, 7% 100%);
}
.banner.innerbanner .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner.innerbanner img {
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner.innerbanner h1 {
  color: var(--White, #fff);
  /* Section Heading(H2) */
  font-family: Poppins;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.25rem; /* 170% */
  margin-bottom: 0.75rem;
}
.banner.innerbanner .breadcrumb-custom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.banner.innerbanner .breadcrumb-custom ul li {
  position: relative;
  color: var(--White, #fff);
  text-align: center;
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem; /* 160% */
}
.banner.innerbanner .breadcrumb-custom ul li a,
.banner.innerbanner .breadcrumb-custom ul li span {
  color: var(--White, #fff);
}
.banner.innerbanner .breadcrumb-custom ul li a:hover {
  opacity: 0.7;
}
.banner.innerbanner .breadcrumb-custom ul li:after {
  content: "";
  width: 0.54831rem;
  height: 0.87506rem;
  background: url(../images/breadcrumb-arrow.png) no-repeat center center;
  position: absolute;
  right: -1.375rem;
  top: 50%;
  transform: translateY(-50%);
}
.banner.innerbanner .breadcrumb-custom ul li:last-child:after {
  display: none;
}

.book-appointment .book-appointment-inner {
  padding: 2.25rem 1.25rem;
  position: relative;
  z-index: 2;
  border-radius: 0.5rem;
  background: var(--White, #fff);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  margin: -4.5rem 0 0 0;
}
.book-appointment .book-appointment-inner .book-now-form form {
  width: 100%;
}
.book-appointment .book-appointment-inner .book-now-form-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 0 0;
}
.book-appointment .book-appointment-inner .book-now-form-inner .inputs {
  max-width: 25%;
  width: 100%;
}
.book-appointment .book-appointment-inner .book-now-form-inner .inputs .btn {
  padding: 1.0382rem;
  width: 100%;
  position: relative;
  text-align: center;
  justify-content: center;
}
.book-appointment .book-appointment-inner .book-now-form-inner .inputs .btn input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.service-pods {
  padding: 7.5rem 0;
  padding-bottom: 13.75rem;
  position: relative;
  overflow: hidden;
}
.service-pods:after {
  content: "";
  position: absolute;
  bottom: 6.25rem;
  right: 0;
  width: 28rem;
  height: 2px;
  background-color: var(--Green, #7db54f);
}
.service-pods .service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.service-pods .service-top .right {
  max-width: 32.93rem;
  width: 100%;
}
.service-pods .service-bottom {
  position: relative;
}
.service-pods .service-bottom .row {
  margin-bottom: 2.5rem;
  gap: 1.19rem 0;
}
.service-pods .service-bottom .service-bx {
  position: relative;
  padding: 3.38rem 1.87rem;
  background: linear-gradient(164deg, #2a717a -14.26%, #71c2cd 145.06%);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  align-self: stretch;
  text-align: center;
}
.service-pods .service-bottom .service-bx:before {
  content: "";
  position: absolute;
  right: 0;
  left: 49px;
  top: 20%;
  width: 23.68675rem;
  height: 40.98438rem;
  transform: rotate(30deg) translateY(-50%);
  z-index: 2;
  background: linear-gradient(179deg, rgba(77, 180, 210, 0.25) -14.7%, rgba(255, 255, 255, 0) 104.65%);
  pointer-events: none;
}
.service-pods .service-bottom .service-bx:after {
  content: "";
  border-radius: 0.75rem;
  position: absolute;
  inset: 1px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.service-pods .service-bottom .service-bx:hover:after {
  opacity: 0;
}
.service-pods .service-bottom .service-bx:hover .icon img {
  filter: brightness(0) invert(1);
}
.service-pods .service-bottom .service-bx:hover .text {
  position: relative;
  z-index: 1;
}
.service-pods .service-bottom .service-bx:hover .text h5,
.service-pods .service-bottom .service-bx:hover .text p,
.service-pods .service-bottom .service-bx:hover .text a {
  color: white;
}
.service-pods .service-bottom .service-bx:hover .text h5 img,
.service-pods .service-bottom .service-bx:hover .text p img,
.service-pods .service-bottom .service-bx:hover .text a img {
  filter: brightness(0) invert(1);
}
.service-pods .service-bottom .service-bx .icon {
  width: 4.375rem;
  position: relative;
  z-index: 1;
}
.service-pods .service-bottom .service-bx .icon img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  aspect-ratio: 1/1;
}
.service-pods .service-bottom .service-bx .text {
  position: relative;
  z-index: 1;
}
.service-pods .service-bottom .service-bx .text h5 {
  margin-bottom: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.service-pods .service-bottom .service-bx .text p {
  margin-bottom: 2rem;
  transition: all 0.3s ease-in-out;
}
.service-pods .service-bottom .service-bx .text a {
  color: var(--Sky, #4db4d2);
  text-align: center;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.81rem;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.service-pods .service-bottom .service-bx .text a img {
  transition: all 0.3s ease-in-out;
  height: 16.5px;
  width: 9px;
}
.service-pods.testimonials {
  padding-top: 7.5rem;
  padding-bottom: 8.8rem;
}
.service-pods.testimonials:after {
  display: none;
}
.service-pods.testimonials h2 {
  margin-bottom: 0;
}
.service-pods.testimonials .service-top {
  margin-bottom: 2.5rem;
}
.service-pods.testimonials .testimonial-slider {
  padding: 20px 15px 80px;
  position: relative;
  overflow: visible;
}
.service-pods.testimonials .testimonial-slider .swiper-slide {
  height: auto;
}
.service-pods.testimonials .testimonial-slider .testimonial-card {
  background: linear-gradient(164deg, #2a717a -14.26%, #71c2cd 145.06%);
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3.25rem;
  justify-content: space-between;
}
.service-pods.testimonials .testimonial-slider .testimonial-card:after {
  content: "";
  border-radius: 1.25rem;
  position: absolute;
  inset: 1px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.service-pods.testimonials .testimonial-slider .testimonial-card h4 {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  color: var(--Green, #7db54f);
  font-weight: 500;
  line-height: 2.125rem; /* 121.429% */
}
.service-pods.testimonials .testimonial-slider .testimonial-card p {
  position: relative;
  z-index: 2;
}
.service-pods.testimonials .testimonial-slider .testimonial-card .author-info {
  position: relative;
  z-index: 2;
}
.service-pods.testimonials .testimonial-slider .testimonial-card .author-info strong {
  color: var(--Black, #000);
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
}
.service-pods.testimonials .testimonial-slider .testimonial-card .author-info span {
  display: block;
  color: var(--Text, #45556c);
  /* h5 */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
.service-pods.testimonials .testimonial-slider .testimonial-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-prev-custom,
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-next-custom {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #7db54f;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-prev-custom svg,
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-next-custom svg {
  width: 20px;
  height: 20px;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-prev-custom {
  background: transparent;
  color: #7db54f;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-prev-custom:hover {
  background: #7db54f;
  color: #ffffff;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-next-custom {
  background: transparent;
  color: #7db54f;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-next-custom:hover {
  background: #7db54f;
  color: #ffffff;
}
.service-pods.testimonials .testimonial-slider .testimonial-nav .swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.service-pods.testimonials-edit {
  padding: 5rem 0;
}
.service-pods.service-pods-edit {
  padding-bottom: 7.5rem;
}
.service-pods.service-pods-edit:after {
  display: none;
}

.about-us {
  background: linear-gradient(164deg, #2a717a -14.26%, #71c2cd 145.06%);
  position: relative;
}
.about-us .pills {
  color: var(--Text, #45556c);
  background-color: white;
}
.about-us .iconbg {
  position: absolute;
  bottom: 6.34rem;
  right: 0;
  width: 16.5625rem;
  height: 16.625rem;
}
.about-us .col-md-6 {
  position: relative;
}
.about-us .img {
  position: absolute;
  height: 60.5rem;
  top: -10.2rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  left: calc(var(--bs-gutter-x) * 0.5);
  right: 0;
}
.about-us .img img {
  width: 100%;
  height: 100%;
}
.about-us .text {
  padding-left: 4.825rem;
}
.about-us .text h2 {
  color: var(--White, #fff);
  margin-bottom: 1.5rem;
}
.about-us .text p {
  color: var(--White, #fff);
  padding-right: 0.925rem;
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem; /* 160% */
  margin-bottom: 1.875rem;
}
.about-us .text p:has(+ .btn) {
  margin-bottom: 2.5rem;
}
.about-us.get-in-touch {
  text-align: center;
}
.about-us.get-in-touch h2 {
  margin-bottom: 1rem;
  color: var(--White, #fff);
}
.about-us.get-in-touch p {
  max-width: 43.875rem;
  margin: 0 auto 3.75rem;
  color: var(--White, #fff);
}
.about-us.get-in-touch .img {
  height: 51.4rem;
  bottom: -11.2rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  left: calc(var(--bs-gutter-x) * 0.5);
  right: 0;
  top: auto;
}
.about-us.get-in-touch .text .forminner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.about-us.get-in-touch .text .forminner .forminner-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
.about-us.get-in-touch .text .forminner .forminner-row .forminner-inner {
  text-align: left;
  width: 100%;
}
.about-us.get-in-touch select {
  width: 100%;
}
.about-us.get-in-touch input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.about-us.get-in-touch textarea {
  color: white;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}
.about-us.get-in-touch input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .about-us.get-in-touch textarea::-moz-placeholder {
  color: white;
}
.about-us.get-in-touch input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.about-us.get-in-touch textarea::placeholder {
  color: white;
}
.about-us.get-in-touch input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.about-us.get-in-touch textarea:focus {
  outline: none;
}
.about-us.get-in-touch select {
  color: white;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2) url(../images/down-arrow-white.png) no-repeat right 0.86rem center;
}
.about-us.get-in-touch textarea {
  height: 14rem;
}
.about-us.get-in-touch.get-in-touch-edit {
  position: relative;
}
.about-us.get-in-touch.get-in-touch-edit:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 197px;
  width: 100%;
  height: 191px;
  background: url(../images/contactbgicon.png) no-repeat center center;
  background-size: cover !important;
}
.about-us.get-in-touch.get-in-touch-edit:after {
  display: none;
}
.about-us.get-in-touch.get-in-touch-edit .img {
  position: static;
  height: unset;
  width: 100%;
}
.about-us.get-in-touch.get-in-touch-edit .text {
  text-align: left;
}
.about-us.get-in-touch.get-in-touch-edit .text .pills {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.about-us.get-in-touch.get-in-touch-edit .text h2 {
  line-height: 3.75rem;
  margin-bottom: 1.88rem;
}
.about-us.get-in-touch.get-in-touch-edit .text textarea {
  height: 8rem;
}

.rates-outer .top-part {
  border-radius: 0.75rem 0.75rem 0 0;
  background: linear-gradient(164deg, #2a717a -14.26%, #71c2cd 145.06%);
  display: flex;
  padding: 1.5rem 1.875rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  align-self: stretch;
}
.rates-outer .top-part h3 {
  color: var(--White, #fff);
}
.rates-outer .top-part p {
  color: var(--White, #fff);
  /* h5 */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0;
}
.rates-outer .bottom-part {
  padding: 2rem 2.5rem;
  border-radius: 0 0 0.75rem 0.75rem;
  background: var(--White, #fff);
}
.rates-outer .bottom-part ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
  margin-bottom: 2.31rem;
}
.rates-outer .bottom-part ul li {
  display: flex;
  padding: 1.5rem;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 0.875rem;
  border: 1.265px solid #f1f5f9;
}
.rates-outer .bottom-part ul li .icon {
  display: flex;
  width: 1.99931rem;
  height: 1.99931rem;
  padding: 0 0.37544rem 0 0.37419rem;
  justify-content: center;
  align-items: center;
  margin-right: 0.72rem;
  border-radius: 2651956.25rem;
  background: rgba(125, 181, 79, 0.2);
}
.rates-outer .bottom-part ul li .icon img {
  width: 0.83313rem;
}
.rates-outer .bottom-part ul li .text {
  max-width: calc(100% - 140px);
  width: 100%;
}
.rates-outer .bottom-part ul li .text h6 {
  color: var(--Black, #000);
  margin-bottom: 0.25rem;
}
.rates-outer .bottom-part ul li .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 0.25rem;
  flex: 1 0 0;
  align-self: stretch;
  text-align: right;
}
.rates-outer .bottom-part ul li .price strong {
  color: var(--Green, #7db54f);
  text-align: center;
  /* H3 */
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem; /* 125% */
}
.rates-outer .bottom-part ul li .price span {
  color: var(--Text, #45556c);
  text-align: right;
  /* h5 */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
.rates-outer .bottom-part .details p img {
  padding: 0.36rem 0.3rem;
}
.rates-outer .bottom-part .details p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.rates-outer .insurance .bottom-part ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}
.rates-outer .insurance .bottom-part ul li {
  border-radius: 0.625rem;
  border: 1.265px solid #e2e8f0;
  background: #f8fafc;
  padding: 0;
  max-width: calc(25% - 12px);
  width: 100%;
  height: 4.99894rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rates-outer .insurance .bottom-part ul li img {
  max-width: 91px;
  width: 100%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.rates-outer .row:last-child {
  margin-top: 3.12rem;
}

.contact-us {
  padding: 7.5rem 0;
  text-align: center;
  position: relative;
}
.contact-us .crisisbx {
  position: relative;
  padding: 2.5rem;
  height: 19.125rem;
  background: linear-gradient(180deg, #2a717a -14.26%, #71c2cd 145.06%);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.69rem;
  align-self: stretch;
  text-align: center;
  justify-content: center;
}
.contact-us .crisisbx:after {
  content: "";
  border-radius: 0.75rem;
  position: absolute;
  inset: 1px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.contact-us .crisisbx:hover .text {
  position: relative;
  z-index: 1;
}
.contact-us .crisisbx .icon {
  border-radius: 3.125rem;
  background: linear-gradient(164deg, #2a717a -14.26%, #71c2cd 145.06%);
  display: flex;
  width: 4.02238rem;
  height: 4.02238rem;
  padding: 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.contact-us .crisisbx .icon img {
  width: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.contact-us .crisisbx .text {
  position: relative;
  z-index: 1;
}
.contact-us .crisisbx .text h5 {
  color: var(--Text, #45556c);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.contact-us .crisisbx .text span {
  color: var(--Text, #45556c);
  text-align: center;
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  display: block;
}
.contact-us .crisisbx .text p {
  color: var(--Text, #45556c);
  text-align: center;
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  transition: all 0.3s ease-in-out;
}
.contact-us .crisisbx .abs {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-us.contact-us-edit {
  background: linear-gradient(153deg, #2d889f -7.23%, #65b9cf 90.88%), var(--cool, #4eb1a0);
  padding: 5rem 0;
}
.contact-us.contact-us-edit .pills {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.contact-us.contact-us-edit h2 {
  color: white;
}
.contact-us .crisisbx .icon img {
  height: unset;
  flex-shrink: 0;
  aspect-ratio: unset;
}

.site-footer {
  background: linear-gradient(164deg, #2a717a -14.26%, #71c2cd 145.06%);
  color: #ffffff;
  padding: 3.75rem 0 1.33rem;
}
.site-footer .top-cta-row {
  margin-bottom: 3.12rem;
}
.site-footer .top-cta-row h2 {
  color: var(--White, #fff);
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.5rem; /* 125% */
  margin-bottom: 0;
}
.site-footer .top-cta-row .btn-contact {
  background-color: #ffffff;
  color: #333333;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.site-footer .top-cta-row .btn-contact:hover {
  background-color: #f1f1f1;
  color: #000000;
  transform: translateY(-2px);
}
.site-footer .footer-divider {
  border-top: 1px solid rgb(255, 255, 255);
  margin: 0 0 3.12rem 0;
  opacity: 1;
}
.site-footer .main-footer-row {
  margin-bottom: 3.13rem;
}
.site-footer .main-footer-row .footer-widget {
  margin-bottom: 0;
}
.site-footer .main-footer-row .footer-widget .footer-logo {
  max-width: 9.80594rem;
  margin-bottom: 1.44rem;
  display: block;
}
.site-footer .main-footer-row .footer-widget p {
  color: var(--White, #fff);
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
}
.site-footer .main-footer-row .footer-widget .widget-title {
  color: var(--White, #fff);
  margin-bottom: 1.5rem;
}
.site-footer .main-footer-row .footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
  align-self: stretch;
}
.site-footer .main-footer-row .footer-widget ul li {
  margin-bottom: 0;
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
}
.site-footer .main-footer-row .footer-widget ul li a {
  color: var(--White, #fff);
}
.site-footer .main-footer-row .footer-widget ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}
.site-footer .main-footer-row .footer-widget ul.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.site-footer .main-footer-row .footer-widget ul.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.site-footer .main-footer-row .footer-widget ul.social-links li a:hover {
  background-color: #ffffff;
  color: #428286;
  border-color: #ffffff;
  padding: 0;
}
.site-footer .main-footer-row .footer-widget .newsletter-form {
  position: relative;
  max-width: 100%;
}
.site-footer .main-footer-row .footer-widget .newsletter-form input:not([type=checkbox], [type=radio], [type=submit]) {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 16px 60px 16px 15px;
  color: var(--White, #fff);
  /* Section Paragraph(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  transition: all 0.3s ease;
}
.site-footer .main-footer-row .footer-widget .newsletter-form input:not([type=checkbox], [type=radio], [type=submit])::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .main-footer-row .footer-widget .newsletter-form input:not([type=checkbox], [type=radio], [type=submit])::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .main-footer-row .footer-widget .newsletter-form input:not([type=checkbox], [type=radio], [type=submit]):focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.site-footer .main-footer-row .footer-widget .newsletter-form input[type=submit] {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff url(../images/send-icon.png) no-repeat center center;
  text-indent: -20000px;
}
.site-footer .main-footer-row .footer-widget .newsletter-form input[type=submit]:hover {
  background: #fff url(../images/send-icon.png) no-repeat center center;
}
.site-footer .main-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer .main-footer-row .footer-widget.mxw20 {
  max-width: 19rem;
  width: 100%;
}
.site-footer .main-footer-row .footer-widget.mxw9 {
  max-width: 12rem;
  width: 100%;
}
.site-footer .main-footer-row .footer-widget.mxw19 {
  max-width: 26.1rem;
  width: 100%;
}
.site-footer .main-footer-row .footer-widget.mxw23 {
  max-width: 19.5rem;
  width: 100%;
}
.site-footer .bottom-divider {
  border-top: 1px solid rgb(255, 255, 255);
  margin: 0 0 0.75rem 0;
  opacity: 1;
}
.site-footer .copyright-text {
  color: var(--White, #fff);
  text-align: center;
  /* Section Paragraph(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0;
}

body:has(.home) .contact-us {
  padding-top: 13.75rem;
}

body:has(.home) .contact-us {
  padding-top: 13.75rem;
}
body:has(.home) .contact-us:after {
  content: "";
  position: absolute;
  top: 6.25rem;
  right: 0;
  width: 28rem;
  height: 2px;
  background-color: var(--Green, #7db54f);
}

.about-main {
  padding: 7.5rem 0;
}
.about-main .pills {
  background: var(--Sky, #4db4d2);
  color: white;
}
.about-main .img {
  border-radius: 0.5rem;
  background: #e3dfdf;
  overflow: hidden;
}
.about-main .img img {
  width: 100%;
}
.about-main .text h2 {
  max-width: 28.8125rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
.about-main .text p:has(+ a.btn) {
  margin-bottom: 2.5rem;
}

.get-the-care {
  background: linear-gradient(153deg, #2d889f -7.23%, #65b9cf 90.88%), var(--cool, #4eb1a0);
  text-align: center;
  position: relative;
}
.get-the-care:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/get-the-care-bgicon.png) no-repeat center center;
  background-size: cover !important;
  width: 184px;
  height: 231px;
  pointer-events: none;
}
.get-the-care .pills {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.get-the-care h2 {
  margin-bottom: 1.5rem;
  color: white;
}
.get-the-care p {
  color: white;
  max-width: 46.125rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 2.25rem;
}
.get-the-care.get-the-care-edit {
  padding: 7.5rem 0;
  background: white;
}
.get-the-care.get-the-care-edit .pills {
  background: rgba(77, 180, 210, 0.2);
  color: var(--Text, #45556c);
}
.get-the-care.get-the-care-edit h2 {
  color: var(--Black, #000);
}
.get-the-care.get-the-care-edit p {
  color: var(--Text, #45556c);
  max-width: 46.125rem;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.service-details {
  padding: 7.5rem 0;
}
.service-details .container {
  /* Assuming your container handles max-width and centering globally, 
   we scope the typography directly inside it. */
}
.service-details .container h2 {
  color: #177d8d;
  margin-bottom: 2.5rem;
  line-height: 2.5rem;
}
.service-details .container img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-details .container h3 {
  margin-bottom: 1.5rem;
  color: #000;
  /* H4 */
  font-family: Poppins;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem; /* 121.429% */
}
.service-details .container p {
  margin-bottom: 1.5rem;
}
.service-details .container p:last-of-type {
  margin-bottom: 0;
}
.service-details .container blockquote {
  border-left: 1px solid #177d8d; /* Light teal line */
  margin: 1.5rem 0;
  padding: 1.31rem 0 1.31rem 2rem;
  color: var(--Text, #45556c);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.service-details .container blockquote:last-of-type {
  margin-bottom: 0;
}

/* Client might add a custom class like you did, or use a WP Group block */
.glancebx {
  border-radius: 0.125rem 3.125rem 3.125rem 3.125rem;
  border: 1px solid #6badc0;
  background: #f2f9fb;
  padding: 2.25rem;
  margin: 2.5rem 0;
}
.glancebx h3 {
  margin-bottom: 2rem;
}
.glancebx ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  align-self: stretch;
}
.glancebx ul li {
  position: relative;
  padding-left: 2.7rem;
  margin-bottom: 0;
  color: var(--Text, #45556c);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.glancebx ul li:last-child {
  margin-bottom: 0;
}
.glancebx ul li {
  /* Creating the custom teal checkmark icon via CSS */
}
.glancebx ul li::before {
  content: ""; /* Unicode for checkmark */
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: url(../images/service-details-icon.png) no-repeat center center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.resource-main {
  padding: 7.5rem 0;
}
.resource-main h4 {
  margin-bottom: 1.5rem;
}
.resource-main p {
  padding: 1.5rem;
  border-left: 1px solid var(--Sky, #4db4d2);
  margin-bottom: 3rem;
}
.resource-main p:last-of-type {
  margin-bottom: 0;
}

.blog-featured {
  padding: 7.5rem 0;
}
.blog-featured .img {
  width: 100%;
}
.blog-featured .text h4 {
  margin-bottom: 1.25rem;
}
.blog-featured .text p:has(+ .btn) {
  margin-bottom: 2.25rem;
}

.blog-listing {
  padding-bottom: 7.5rem;
}
.blog-listing .row {
  gap: 1.88rem 0;
}
.blog-listing .row:last-child {
  margin-top: 2.5rem;
}
.blog-listing .row:last-child .pagination-custom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-listing .row:last-child .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
}
.blog-listing .row:last-child .pagination a,
.blog-listing .row:last-child .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  font-size: 14px;
}
.blog-listing .row:last-child .pagination .page {
  display: flex;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0.8215rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8215rem;
  aspect-ratio: 1/1;
  border-radius: 3.34906rem;
  border: 1.072px solid #f1f1f1;
  background: var(--White, #fff);
  color: var(--Black, #000);
  leading-trim: both;
  text-edge: cap;
  /* Section Tagline(H5) */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem; /* 450% */
}
.blog-listing .row:last-child .pagination .page:hover {
  background: var(--Sky, #4db4d2);
  color: #fff;
}
.blog-listing .row:last-child .pagination .page.active {
  background: #4db4d2;
  color: #fff;
  border-color: #4db4d2;
}
.blog-listing .row:last-child .pagination .prev,
.blog-listing .row:last-child .pagination .next {
  color: var(--Light-Grey, #9e9e9e);
  /* Paragraph */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
}
.blog-listing .row:last-child .pagination .prev:hover,
.blog-listing .row:last-child .pagination .next:hover {
  color: #4db4d2;
}
.blog-listing .row:last-child .pagination .disabled {
  pointer-events: none;
  opacity: 0.5;
}
.blog-listing .row:last-child .pagination .dots {
  padding: 0 5px;
}

.blogbx {
  position: relative;
}
.blogbx .img {
  border-radius: 0.75rem;
  background: #e8e8e8;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.blogbx .img img {
  width: 100%;
}
.blogbx .text time {
  color: var(--Light-Grey, #9e9e9e);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1wwrem; /* 150% */
  margin-bottom: 0.44rem;
}
.blogbx .text h5 {
  color: var(--Sky, #4db4d2);
  margin-bottom: 0.63rem;
  transition: all 0.3s ease-in-out;
}
.blogbx .text .readmore {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--Black, #000);
  text-align: center;
  /* Button Text */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
.blogbx .text .readmore span {
  width: 1.8125rem;
  height: 1.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4db4d2;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.blogbx .text .readmore span img {
  width: 0.86094rem;
  height: 0.725rem;
}
.blogbx .abs {
  position: absolute;
  inset: 0;
}
.blogbx:hover h5 {
  color: black;
}
.blogbx:hover .readmore span {
  rotate: 30deg;
}

.blog-details {
  padding: 7.5rem 0;
}
.blog-details .container > img {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2.5rem;
}
.blog-details .pills {
  margin-bottom: 0.5rem;
}
.blog-details h2 {
  margin-bottom: 1rem;
}
.blog-details .img-sec {
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
.blog-details .img-sec img {
  max-width: 50%;
  width: 100%;
}

.most-popular {
  padding: 7.5rem 0;
}
.most-popular .most-popular-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.most-popular .most-popular-top .right {
  max-width: 32.93rem;
  width: 100%;
}

.map-area {
  padding: 7.5rem 0;
}
.map-area .map-inner {
  height: 24.4375rem;
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid #fff;
  overflow: hidden;
}
.map-area .map-inner iframe {
  width: 100%;
  height: 100%;
}

/* Responsive adjustments */
@media screen and (max-width: 1399px) {
  header .bottomhead .bottomhead-row .navigation ul {
    gap: 1.5rem;
  }
  .service-pods .service-bottom .service-bx {
    padding: 3rem 1.2rem;
  }
  .about-us .text h2,
  .about-main .text h2 {
    line-height: 3rem;
  }
  .rates-outer .bottom-part ul li {
    gap: 1rem;
  }
  .rates-outer .bottom-part ul li .price span {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
  .rates-outer .bottom-part ul li .price {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .rates-outer .bottom-part ul li .text h6 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    line-height: 1.5rem;
  }
  .rates-outer .bottom-part ul li .icon {
    width: 1.99931rem;
    height: 1.99931rem;
    max-width: 1.99931rem;
    flex: 1.99931rem 0 0;
  }
  .about-us.get-in-touch p {
    margin: 0 auto 2rem;
  }
  .contact-us .crisisbx .text h5 {
    line-height: 1.8rem;
    margin: 0 0 0.5rem 0;
  }
  .site-footer .main-footer-row {
    gap: 1rem;
  }
  .site-footer .main-footer-row .footer-widget p,
  .site-footer .main-footer-row .footer-widget ul li {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .site-footer .main-footer-row .footer-widget ul {
    gap: 0.5375rem;
  }
}
@media screen and (max-width: 1199px) {
  header .bottomhead .bottomhead-row .navigation ul {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  h1 {
    font-size: 3rem;
    line-height: 3.6rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 3.05rem;
  }
  h3 {
    font-size: 1.7rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  h5 {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  p,
  .site-footer .main-footer-row .footer-widget p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .banner .container .banner-content p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
  }
  .book-appointment .book-appointment-inner {
    padding: 1.2rem 1.3rem;
    margin: -1.8rem 0 0 0;
  }
  .banner .container .showcase .showcasebx span {
    font-size: 2rem;
    line-height: 1.95rem;
  }
  .banner .container .showcase .showcasebx {
    max-width: 7.5rem;
    width: 100%;
    padding: 1.2rem 1rem;
    gap: 0.3rem;
  }
  .banner .container .showcase .showcasebx small {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
  select,
  input:not([type=submit]):not([type=radio]):not([type=checkbox]),
  textarea {
    padding: 0.8rem 1rem;
  }
  .book-appointment .book-appointment-inner .book-now-form-inner .inputs .btn {
    padding: 0.5rem 1rem 0.7rem;
  }
  .book-appointment {
    padding-bottom: 0;
  }
  .service-pods,
  .service-pods.testimonials,
  .about-main,
  .service-pods.service-pods-edit,
  .contact-us,
  .resource-main,
  .get-the-care.get-the-care-edit,
  .blog-featured,
  .map-area,
  .blog-details,
  .most-popular,
  .service-details {
    padding: 5rem 0;
  }
  .blog-listing {
    padding-bottom: 5rem;
  }
  .service-pods .service-bottom .service-bx {
    padding: 1.87rem;
    gap: 1.5rem;
  }
  .service-pods .service-bottom .service-bx .text h5 {
    margin-bottom: 0.85rem;
    transition: all 0.3s ease-in-out;
    font-size: 1.3rem;
  }
  .service-pods .service-bottom .service-bx .text a {
    font-size: 1.05rem;
  }
  .service-pods .service-bottom .service-bx .text a img {
    transition: all 0.3s ease-in-out;
    height: 15px;
    width: 7px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .service-pods:after {
    bottom: 2.45rem;
  }
  body:has(.home) .contact-us:after {
    top: 2.45rem;
  }
  .about-us .text p,
  .about-main .text p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .about-us .img {
    height: 48rem;
    top: -7rem;
  }
  .rates-outer .bottom-part {
    padding: 1rem;
  }
  .rates-outer .insurance .bottom-part ul li img {
    max-width: 70px;
    height: 50px;
  }
  .rates-outer .bottom-part ul li .price strong {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .service-pods.testimonials .testimonial-slider .testimonial-card {
    padding: 1.5rem;
  }
  .about-us .text,
  .about-main .text {
    padding-left: 1rem;
  }
  .about-us.get-in-touch .img {
    height: 47.5rem;
    bottom: -8rem;
  }
  body:has(.home) .contact-us {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
  .contact-us .crisisbx .text span {
    font-size: 1.1rem;
    line-height: 1.75rem;
    margin-top: 0.5rem;
  }
  .contact-us .crisisbx {
    padding: 1rem;
    height: unset;
  }
  .site-footer .top-cta-row h2 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .site-footer .top-cta-row,
  .site-footer .footer-divider {
    margin-bottom: 2rem;
  }
  .site-footer .main-footer-row .footer-widget .widget-title {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .site-footer .main-footer-row .footer-widget ul {
    gap: 0.6rem;
  }
  .site-footer .main-footer-row .footer-widget ul li {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .site-footer .main-footer-row {
    gap: 1rem;
  }
  .site-footer .main-footer-row {
    margin-bottom: 2rem;
  }
  header .bottomhead .bottomhead-row .navigation ul li a {
    padding: 1.5rem 0.63rem;
  }
  header .bottomhead .bottomhead-row {
    padding: 0.5rem 0;
  }
  .blogbx .text time {
    margin-bottom: 0.7rem;
    display: block;
  }
  .about-us.get-in-touch.get-in-touch-edit .text h2 {
    line-height: 2.55rem;
    margin-bottom: 1.88rem;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.7rem;
    line-height: 3.2rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
  h3 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  h5 {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  header .bottomhead .bottomhead-row .navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: row-reverse;
  }
  .stellarnav .menu-toggle,
  .stellarnav .call-btn-mobile,
  .stellarnav .location-btn-mobile,
  .stellarnav .close-menu {
    width: 58px;
    height: 58px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--Sky, #4db4d2);
  }
  .stellarnav .menu-toggle {
    margin-top: 1px;
  }
  .stellarnav .menu-toggle span.bars {
    top: 0;
  }
  .book-appointment .book-appointment-inner {
    padding: 1.2rem 1.3rem;
    margin: 3rem 0 0 0;
  }
  .service-pods,
  .service-pods.testimonials,
  .defaultspacing,
  .about-main,
  .service-pods.service-pods-edit,
  .contact-us,
  .resource-main,
  .contact-us.contact-us-edit,
  .get-the-care.get-the-care-edit,
  .blog-featured,
  .map-area,
  .blog-details,
  .most-popular,
  .service-details {
    padding: 3rem 0;
  }
  .blog-listing {
    padding-bottom: 3rem;
  }
  .banner .banner-overlay {
    width: 50%;
    clip-path: polygon(0 0, 100% -20%, -65% 130%, 0 100%);
    opacity: 0.5;
  }
  .banner .container {
    position: relative;
    z-index: 2;
    background: #7db54f;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding: 2rem 2.3rem 2.4rem;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .banner .container .showcase {
    position: static;
    transform: unset;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
  }
  .banner .container .banner-content .btn-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
  }
  .service-pods .service-top,
  .most-popular .most-popular-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }
  .service-pods {
    text-align: center;
    margin: 0 auto;
  }
  .service-pods .service-bottom .service-bx {
    padding: 1rem;
    gap: 1rem;
  }
  .about-us .img {
    height: unset;
    top: 0;
  }
  .pills {
    width: auto;
    padding: 0.6rem 1rem;
  }
  .rates-outer .insurance .bottom-part ul li {
    max-width: calc(33% - 12px);
  }
  .rates-outer .bottom-part ul li {
    padding: 1rem;
    flex-direction: column;
    gap: 1.2rem;
  }
  .rates-outer .bottom-part ul li .text {
    max-width: 100%;
    width: 100%;
  }
  .rates-outer .bottom-part ul li .price {
    align-items: flex-start;
    text-align: left;
  }
  .service-pods.testimonials .testimonial-slider .testimonial-card {
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 1rem;
  }
  .service-pods.testimonials {
    margin-bottom: 0;
  }
  .about-us.get-in-touch p {
    margin: 0 auto 2rem;
  }
  .about-us.get-in-touch {
    position: relative;
    overflow: hidden;
  }
  .about-us.get-in-touch .col-md-6 {
    width: 100%;
  }
  .about-us.get-in-touch .col-md-12 + .col-md-6,
  .about-us.get-in-touch .col-md-6:first-of-type {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .about-us.get-in-touch .img,
  .about-us.get-in-touch.get-in-touch-edit .img {
    height: 100%;
    position: static;
    scale: 1.2;
    opacity: 0.3;
    pointer-events: none;
  }
  .about-us.get-in-touch .col-md-12,
  .about-us.get-in-touch .text {
    position: relative;
    z-index: 2;
  }
  .about-us.get-in-touch .text .forminner .forminner-row:last-child,
  .about-us.get-in-touch .text .forminner .forminner-row:last-child .forminner-inner {
    text-align: center;
  }
  body:has(.home) .contact-us {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  body:has(.home) .contact-us:after,
  .service-pods:after {
    display: none;
  }
  .contact-us .row {
    margin-top: 2rem;
  }
  header .bottomhead .bottomhead-row .navigation ul {
    display: block !important;
    gap: 1rem;
    text-align: left;
    padding-top: 3.5rem;
    right: -100%;
    transition: all 0.3s ease-in-out;
  }
  header .bottomhead .bottomhead-row .navigation .stellarnav.right.current-menu-item ul {
    right: 0;
  }
  header .bottomhead .bottomhead-row .navigation ul li a {
    padding: 1rem 1.5rem;
    text-align: left;
  }
  .stellarnav.mobile.right .close-menu {
    position: absolute;
    top: -2px;
    right: 0;
    color: white !important;
    z-index: 2;
  }
  .stellarnav .icon-close:after,
  .stellarnav .icon-close:before {
    width: 1.15rem;
    border-color: white;
  }
  .site-footer .main-footer-row {
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0;
  }
  .site-footer .main-footer-row .footer-widget.mxw20 {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-footer .main-footer-row .footer-widget p {
    max-width: 38rem;
  }
  .site-footer .main-footer-row .footer-widget .footer-logo {
    max-width: 6rem;
    margin-bottom: 1.44rem;
    display: block;
  }
  .site-footer .main-footer-row .footer-widget ul.social-links {
    align-items: center;
    justify-content: center;
  }
  .site-footer .main-footer-row .footer-widget.mxw20 {
    max-width: 100%;
  }
  .site-footer .main-footer-row .footer-widget.mxw23,
  .site-footer .main-footer-row .footer-widget.mxw19,
  .site-footer .main-footer-row .footer-widget.mxw9 {
    max-width: 33%;
    width: 100%;
  }
  .site-footer .main-footer-row {
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }
  .about-us .img {
    position: static;
  }
  .banner.innerbanner h1 {
    line-height: 2.5rem;
  }
  .banner.innerbanner .container {
    padding: 1.5rem 0;
  }
  .service-pods.testimonials h2 {
    margin-bottom: 1rem;
  }
  .service-pods.testimonials .service-top {
    margin-bottom: 0.8rem;
  }
  .about-us.get-in-touch.get-in-touch-edit .text {
    text-align: center;
  }
  .about-us.get-in-touch.get-in-touch-edit .img {
    opacity: 0.1;
  }
  .map-area .map-inner {
    height: 14rem;
  }
  .most-popular {
    text-align: center;
  }
  .blog-details .img-sec {
    gap: 1rem;
    flex-direction: column;
  }
  .blog-details {
    text-align: center;
  }
  .blog-details .img-sec img {
    max-width: 100%;
    width: 100%;
  }
  .blogbx {
    text-align: left;
  }
  select,
  input:not([type=submit]):not([type=radio]):not([type=checkbox]),
  textarea {
    padding: 0.8rem 2rem 0.8rem 0.8rem;
  }
  select {
    background-position: right 0.46rem center;
    background-size: 0.83125rem;
  }
  .service-details .container h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .service-details .container h2 {
    color: #177d8d;
    margin-bottom: 1.2rem;
    line-height: 2.5rem;
  }
  .service-details {
    text-align: center;
  }
  .glancebx,
  .service-details .container blockquote {
    text-align: left;
  }
  header .bottomhead .bottomhead-row .navigation ul li a:hover:before {
    display: none;
  }
  header .bottomhead .bottomhead-row .navigation ul li.current-menu-item a,
  header .bottomhead .bottomhead-row .navigation ul li.active a,
  header .bottomhead .bottomhead-row .navigation ul li a:hover {
    background-color: var(--Sky, #4db4d2);
    color: white;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.9rem;
    line-height: 2.3rem;
  }
  h2 {
    font-size: 1.65rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
  h3 {
    font-size: 1.55rem;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  h5 {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  h6 {
    font-size: 1.05rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
  }
  .banner.innerbanner img {
    min-height: 165px;
  }
  .banner .container .showcase .showcasebx {
    max-width: 50%;
    padding: 0.7rem 0.6rem;
    gap: 0.3rem;
  }
  header .tophead .tophead-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    flex-direction: column;
    text-align: center;
    gap: 0.7rem;
  }
  header .tophead .tophead-row p {
    color: white;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
  header .bottomhead .bottomhead-row .navigation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row-reverse;
  }
  .banner .container {
    padding: 2rem calc(var(--bs-gutter-x) * 0.5);
  }
  header .bottomhead .bottomhead-row .logo {
    max-width: 3.6875rem;
  }
  .book-appointment .book-appointment-inner {
    text-align: center;
  }
  .book-appointment .book-appointment-inner .book-now-form-inner {
    gap: 0.85rem;
    flex-direction: column;
  }
  .book-appointment .book-appointment-inner .book-now-form-inner .inputs {
    max-width: 100%;
    width: 100%;
  }
  .banner .container .banner-content .btn-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
  }
  .banner .container .banner-content .btn-container .btn {
    width: 50%;
    justify-content: center;
    padding: 0.5rem;
  }
  .pills {
    width: auto;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  .about-us .row,
  .rates-outer .row,
  .about-main .row,
  .blog-featured .row {
    gap: 2rem;
  }
  .about-us .text,
  .about-us .text p,
  .about-main .text,
  .about-main .text p {
    padding: 0;
    text-align: center;
  }
  .about-us .text p:has(+ .btn) {
    margin-bottom: 1.875rem;
  }
  .rates-outer .top-part {
    padding: 1.2rem;
    align-items: center;
    gap: 0.15rem;
  }
  .rates-outer .bottom-part ul li {
    padding: 1rem;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .rates-outer .bottom-part ul li .text h6 {
    color: var(--Black, #000);
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
  }
  .rates-outer .bottom-part ul li .text p {
    font-size: 0.9rem;
  }
  .rates-outer .bottom-part ul li .price {
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .rates-outer .row:last-child {
    margin-top: 2rem;
  }
  .rates-outer .insurance .bottom-part ul {
    margin: 0;
  }
  .rates-outer .insurance .bottom-part ul li {
    max-width: calc(50% - 12px);
    margin: 0;
  }
  .service-pods.testimonials h2 {
    margin-bottom: 1rem;
  }
  .service-pods.testimonials .service-top {
    margin-bottom: 0.7rem;
  }
  .service-pods.testimonials .testimonial-slider .testimonial-card h4 {
    line-height: 2rem;
  }
  .about-us.get-in-touch .text .forminner .forminner-row {
    gap: 1rem;
    flex-direction: column;
  }
  .about-us.get-in-touch .row {
    gap: 0;
  }
  .about-us.get-in-touch textarea {
    height: 7rem;
  }
  .contact-us .row {
    margin-top: 2rem;
    gap: 2rem;
  }
  .site-footer {
    padding-top: 3rem;
  }
  .site-footer .top-cta-row h2 {
    font-size: 1.6rem;
    line-height: 2rem;
    text-align: center;
  }
  .res-center {
    text-align: center !important;
  }
  .site-footer .main-footer-row {
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem 0;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .site-footer .main-footer-row .footer-widget {
    max-width: 100% !important;
  }
  .site-footer .main-footer-row .footer-widget ul {
    align-items: center;
  }
  .site-footer .top-cta-row,
  .site-footer .footer-divider {
    margin-bottom: 1.2rem;
  }
  .site-footer .main-footer-row .footer-widget .footer-logo {
    max-width: 4.5rem;
    margin-bottom: 1.2rem;
    display: block;
  }
  .site-footer .main-footer-row .footer-widget ul {
    gap: 0.4rem;
  }
  .site-footer .main-footer-row .footer-widget .widget-title {
    margin-bottom: 0.7rem;
  }
  .banner.innerbanner .banner-overlay {
    clip-path: polygon(-4% 0%, 15.5% 0%, 120% 200%, 7% 100%);
    width: 100%;
  }
  .banner.innerbanner h1 {
    line-height: 1.9rem;
    font-size: 1.9rem;
  }
  .banner.innerbanner .breadcrumb-custom ul li {
    font-size: 1rem;
    line-height: 2rem;
  }
  .about-us .text h2,
  .about-main .text h2 {
    line-height: 2.2rem;
  }
  .about-us .text h2 span,
  .about-main .text h2 span {
    display: block;
  }
  .resource-main h4 {
    text-align: center;
  }
  .blog-featured {
    text-align: center;
  }
  .blogbx {
    text-align: center;
  }
  .blogbx .text .readmore {
    justify-content: center;
  }
  .blog-listing .row:last-child .pagination .prev,
  .blog-listing .row:last-child .pagination .next {
    font-size: 1rem;
    line-height: 1.75rem;
  }
  .blog-listing .row:last-child .pagination .page {
    width: 2rem;
    height: 2rem;
  }
  .blog-details .container > img {
    margin-bottom: 1.5rem;
  }
  .blog-details .img-sec {
    gap: 1rem;
    flex-direction: column;
    margin: 1.5rem 0;
  }
  .most-popular .row {
    gap: 1.88rem 0;
  }
  .service-details .container h3 {
    margin-bottom: 1rem;
    font-size: 1.55rem;
  }
  .glancebx {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  .about-main .row {
    flex-direction: column-reverse;
  }
  .blogbx .text p {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 639px) {
  .banner .container .showcase .showcasebx span {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }
  header .tophead {
    padding: 0.7rem 0;
  }
  header .tophead .tophead-row {
    gap: 0.3rem;
  }
  header .tophead .tophead-row p {
    font-size: 0.6rem;
    line-height: 1.2rem;
  }
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .stellarnav .menu-toggle,
  .stellarnav .call-btn-mobile,
  .stellarnav .location-btn-mobile,
  .stellarnav .close-menu {
    width: 40px;
    height: 40px;
  }
  .stellarnav .menu-toggle span.bars span {
    width: 1.1375rem;
    height: 0.125rem;
    margin: 0 0 0.2rem;
  }
  .stellarnav .icon-close {
    box-sizing: border-box;
    width: 0.95rem;
    height: 0.95rem;
  }
  .stellarnav.mobile.right .close-menu {
    top: 0;
    right: 1px;
    padding: 0;
  }
  header .bottomhead .bottomhead-row .navigation ul li a {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  .site-footer .copyright-text {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */