/* **** Table of Contents
1. Reset
2. Typography
3. Utilities
   3.1 - Text Color
   3.2 - Link Color
   3.3 - Background Color
   3.4 - Borders
   3.5 - Border Radius
   3.6 - Background Image Related
   3.7 - Object Fit
   3.8 - Line Clamp
   3.9 - Font Weight
   3.10 - Spacing
   3.11 - Others
4. Components
   4.1 - Buttons
   4.2 - Pagetitle
   4.3 - Pagination
   4.4 - Forms
   4.5 - Social Icons
   4.6 - Content Box
   4.7 - Cards
        4.7.1 - Clinic Card
        4.7.2 - Blog Card
        4.7.3 - Doctor Card
   4.8 - Tables
   4.9 - Scroll Top Button
   4.10 - Quantity Generator Button
   4.11 - Search Modal
5. Section wise common styles
6. Vendor Overriding
7. Layouts
   7.1 - Header
   7.2 - Footer
8. Pages(Each page will contain its own media queries)
   8.1 - Home
   8.2 - Contact Us
   8.3 - About Us
   8.4 - Doctors
   8.5 - Doctors Single
   8.6 - Clinics
   8.7 - Clinic Single
   8.8 - Blog Single
   8.9 - 404 Error
   8.10 - FAQs

**** */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --color-primary: #ff435b;
  --color-secondary: #072242;
  --color-dark: #05172c;
  --color-text: #4b627b;
  --color-light: #f7fafe;
  --color-border: #d7e2f1;
  --color-primaryShade: #e92b44;
  --color-secondaryShade: #032652;
  --color-link: #e92b44;
  --bg-color-body: #fff;
  --font-base: "Inter", "Arial", sans-serif;
  --shadow-base: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-base: 1rem;
  --border-radius-xl: 1.25rem;
  --border-radius-2xl: 2rem;
  --border-radius-3xl: 2.25rem;
  --border-radius-4xl: 3rem;
}

/* ---- 1. Reset ---- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  padding: 0;
  margin: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: var(--font-base);
  background-color: var(--bg-color-body);
  color: var(--color-text);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-link);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a:hover {
  color: var(--color-primaryShade);
}

input,
select,
textarea,
label {
  display: block;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: #fff;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

/* ---- 2. Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 2.125rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.875rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.625rem;
  line-height: 1.25;
}

h4 {
  font-size: 1.375rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h6 {
  font-size: 1.125rem;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 3.125rem;
  }

  h2 {
    font-size: 2.125rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1400px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 1.875rem;
  }
  p {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1700px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }
}

/* ---- 3. Utilities ---- */
/* ---- 3.1 Text Colors ---- */
.text--primary {
  color: var(--color-primary);
}

.text--secondary {
  color: var(--color-secondary);
}

.text--dark {
  color: var(--color-dark);
}

.text--para {
  color: var(--color-text);
}

.text--primaryShade {
  color: var(--color-primaryShade);
}

/* ---- 3.2 Link Color ---- */
.link--primary {
  color: var(--color-primary);
}

.link--primary:hover {
  color: var(--color-primaryShade);
}

.link--secondary {
  color: var(--color-secondary);
}

.link--secondary:hover {
  color: var(--color-secondaryShade);
}

.link--light {
  color: #fff;
}

.link--light:hover {
  color: rgba(255, 255, 255, 0.85);
}

.link-hover--underline:hover {
  text-decoration: underline;
}

.link--dark {
  color: var(--color-dark);
}

.link--dark:hover {
  color: var(--color-primary);
}

/* ---- 3.3 - Background Colors ---- */
.bg--primary {
  background-color: var(--color-primary);
}

.bg--secondary {
  background-color: var(--color-secondary);
}

.bg--dark {
  background-color: var(--color-dark);
}

.bg--light {
  background-color: var(--color-light);
}

.bg--body {
  background-color: var(--bg-color-body);
}

.bg--primaryShade {
  background-color: var(--color-primaryShade);
}

.bg--secondaryShade {
  background-color: var(--color-secondaryShade);
}

/* ---- 3.4 - Borders ---- */
.border--solid {
  border-style: solid;
}

.border--dotted {
  border-style: dotted;
}

.border--1 {
  border-width: 1px;
}

.border--2 {
  border-width: 2px;
}

.border--4 {
  border-width: 4px;
}

.border--6 {
  border-width: 6px;
}

.border--8 {
  border-width: 8px;
}

.border--10 {
  border-width: 10px;
}

.border--primary {
  border-color: var(--color-primary);
}

.border--primaryShade {
  border-color: var(--color-primaryShade);
}

.border--secondary {
  border-color: var(--color-secondary);
}

.border--secondaryShade {
  border-color: var(--color-secondaryShade);
}

.border--dark {
  border-color: var(--color-dark);
}

.border--borderColor {
  border-color: var(--color-border);
}

.border--extraLight {
  border-color: rgba(0, 0, 0, 0.1);
}

/* ---- 3.5 - Border Radius ---- */
.rounded--sm {
  border-radius: var(--border-radius-sm);
}

.rounded--md {
  border-radius: var(--border-radius-md);
}

.rounded--lg {
  border-radius: var(--border-radius-lg);
}

.rounded--base {
  border-radius: var(--border-radius-base);
}

.rounded--xl {
  border-radius: var(--border-radius-xl);
}

.rounded--2xl {
  border-radius: var(--border-radius-2xl);
}

.rounded--3xl {
  border-radius: var(--border-radius-3xl);
}

.rounded--3xl {
  border-radius: var(--border-radius-4xl);
}

/* ---- 3.6 - Background Image Related ---- */
.bg--center {
  background-position: center center;
}

.bg--right {
  background-position: center right;
}

.bg--left {
  background-position: center left;
}

.bg--top-right {
  background-position: top right;
}

.bg--bottom-right {
  background-position: bottom right;
}

.bg--top-left {
  background-position: topleftt;
}

.bg--bottom-left {
  background-position: bottom left;
}

.bg--bottom-center {
  background-position: bottom center;
}

.bg--cover {
  background-size: cover;
}

.bg--no-repeat {
  background-repeat: no-repeat;
}

.bg--contain {
  background-size: contain;
}

/* ---- 3.7 - Object Fit ---- */
.object-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

/* ---- 3.8 - Line Clamp ---- */
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp--2 {
  -webkit-line-clamp: 2;
}

.line-clamp--3 {
  -webkit-line-clamp: 3;
}

.line-clamp--4 {
  -webkit-line-clamp: 4;
}

.line-clamp--5 {
  -webkit-line-clamp: 5;
}

/* ---- 3.9 - Font Weight ---- */
.fw-medium {
  font-weight: 500;
}

/* ---- 3.10 - Spacing ---- */

/* ---- 3.11 - Others ---- */
.scroll--disabled {
  overflow-y: hidden;
}

.shadow--base {
  -webkit-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
}

.has-effect--scale-up {
  overflow: hidden;
}

.has-effect--scale-up img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.has-effect--scale-up:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.filter--invert {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* ---- 4. Components ---- */
/* ---- 4.1 Buttons ---- */
.button {
  display: inline-block;
  padding: 1rem 2.25rem;
  color: var(--color-dark);
  font-weight: 600;
  background-color: #fff;
  border-radius: 3.75rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.9375rem;
}

.button:hover {
  -webkit-transform: translateY(-0.25rem);
  transform: translateY(-0.25rem);
}

.button--primary {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #fff;
}

.button--primary:hover {
  background-color: var(--color-primaryShade);
  border: 2px solid var(--color-primaryShade);
  color: #fff;
}

.button--secondary {
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: #fff;
}

.button--secondary:hover {
  background-color: var(--color-secondaryShade);
  border: 2px solid var(--color-secondaryShade);
  color: #fff;
}

.button--white {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--color-primary);
}

.button--white:hover {
  background-color: var(--color-light);
  border: 2px solid var(--color-light);
}

.button--primary-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.button--primary-outline:hover {
  background-color: var(--color-primaryShade);
  border: 2px solid var(--color-primaryShade);
  color: #fff;
}

.button--white-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.button--white-outline:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--color-primaryShade);
}

@media (min-width: 992px) {
  .button {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1700px) {
  .button {
    padding: 1.25rem 3.25rem;
  }
}

/* ---- 4.2 Pagetitle ---- */
.pagetitle-block {
  padding: 7.25rem 0 4rem;
  background-position: center right;
}
.pagetitle-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(247, 250, 254)), color-stop(rgb(247, 250, 254)), color-stop(rgb(247, 250, 254)), to(rgba(215, 228, 245, 0.6)));
  background-image: linear-gradient(to right, rgba(247, 250, 254), rgb(247, 250, 254), rgb(247, 250, 254), rgba(215, 228, 245, 0.6));
}

.pagetitle-block .breadcrumb {
  margin-bottom: 0;
}

.pagetitle-block .breadcrumb .breadcrumb-item a,
.pagetitle-block .breadcrumb .breadcrumb-item.active,
pagetitle .breadcrumb-item::before {
  font-weight: 500;
  text-transform: capitalize;
}

.pagetitle-block .breadcrumb .breadcrumb-item,
.breadcrumb-item::before {
  color: var(--color-dark);
}

.pagetitle-block .breadcrumb .breadcrumb-item.active {
  color: var(--color-primary);
}

.pagetitle-block .breadcrumb .breadcrumb-item:hover {
  color: var(--color-primary);
}

.pagetitle-block .pagetitle-block__inner-container {
  background-color: rgba(0, 0, 0, 0.65);
  max-width: 90%;
  margin: 0 auto;
  padding: 1.875rem 1.125rem;
}

.pagetitle-block .pagetitle {
  margin-bottom: 0.75rem;
}

.site-content--doctor-single .pagetitle-block .pagetitle,
.site-content--clinic-single .pagetitle-block .pagetitle,
.single-product .pagetitle-block .pagetitle,
.single-post .pagetitle-block .pagetitle {
  font-size: 1.875rem;
}

@media (min-width: 992px) {
  .pagetitle-block {
    padding: 9rem 0 5rem;
  }

  .site-content--doctor-single .pagetitle-block .pagetitle,
  .site-content--clinic-single .pagetitle-block .pagetitle,
  .single-product .pagetitle-block .pagetitle,
  .single-post .pagetitle-block .pagetitle {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .pagetitle-block {
    padding: 9.625rem 0 5.5rem;
  }
}

@media (min-width: 1700px) {
  .pagetitle-block {
    padding: 11rem 0 6rem;
  }
}

/* ---- 4.3 Pagination ---- */
.pagination-wrapper .pagination {
  margin-top: 2.5rem;
}

.pagination-wrapper .pagination .page-item .page-link {
  background-color: transparent;
  border: 0;
  color: var(--color-dark);
  border-radius: 50%;
  padding: 0.5rem 1rem;
}

.pagination-wrapper .pagination .page-item .page-link:hover {
  color: var(--color-primary);
}

.pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  color: #fff;
}

@media (min-width: 992px) {
  .pagination-wrapper .pagination {
    margin-top: 3.125rem;
  }
}

@media (min-width: 1700px) {
  .pagination-wrapper .pagination {
    margin-top: 3.75rem;
  }
}

/* ---- 4.4 Forms ---- */
.form .form__field {
  position: relative;
}

.form .form__field .form__input-label {
  display: inline-block;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  position: relative;
  font-weight: 600;
}

.form .form__field .form__input-label.required::after {
  content: "*";
  position: absolute;
  top: 0;
  right: -0.5rem;
  color: var(--bs-danger);
}

.form .form__field .form__input {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border: 1px solid var(--color-border);
  width: 100%;
  color: var(--color-dark);
  font-weight: 600;
  min-height: 2.9375rem;
  border-radius: 0.375rem;
}

.form .form__field textarea.form__input {
  height: 10rem;
}

.form .form__field .form__input:focus {
  border: 1px solid var(--color-primary);
  outline: 1px solid var(--color-primary);
}

.form.form--light .form__input {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.form input[type="checkbox"],
.form input[type="radio"] {
  accent-color: var(--color-primary);
}

.form .form__field .form__input::-webkit-input-placeholder {
  font-weight: 400;
  color: var(--color-text);
}

.form .form__field .form__input::-moz-placeholder {
  font-weight: 500;
  color: var(--color-text);
}

.form .form__field .form__input:-ms-input-placeholder {
  font-weight: 400;
  color: var(--color-text);
}

.form .form__field .form__input::-ms-input-placeholder {
  font-weight: 400;
  color: var(--color-text);
}

.form .form__field .form__input::placeholder {
  font-weight: 500;
  color: var(--color-text);
}

.form .form__field .form__input--hide-number-button::-webkit-outer-spin-button,
.form .form__field .form__input--hide-number-button::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form .form__field .form__input--hide-number-button[type="number"] {
  -moz-appearance: textfield;
}

/* jquery ui select */
.ui-button {
  padding: 0.75rem 1rem;
  background-color: var(--color-light);
  color: var(--color-dark);
  font-weight: 400;
  width: 100% !important;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  margin-right: 0;
  border-radius: 0.5rem;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: var(--color-light) !important;
  border: 1px solid var(--color-border) !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* Select 2 */
.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  height: 3.125rem;
  padding: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1;
  color: var(--color-dark);
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-weight: 500;
  color: var(--color-text);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0.75rem;
  right: 0.75rem;
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--color-light);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-primary);
}

@media (min-width: 992px) {
  .ui-button {
    font-size: 1rem;
  }
}

@media (min-width: 1400px) {
  .form .form__field .form__input {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .select2-container--default .select2-selection--single {
    height: 3.375rem;
    padding: 1.125rem;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0.875rem;
  }
}

@media (min-width: 1700px) {
  .form .form__field .form__input {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }
}

/* ---- 4.5 - Social Icons ---- */
.social-icons li:not(:last-child) {
  margin-right: 0.75rem;
}

.social-icons li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-primary);
}

.social-icons li a:hover {
  color: #fff;
  background-color: var(--color-primaryShade);
}

.social-icons.social-icons--light li a {
  color: var(--color-dark);
  background-color: #fff;
}

.social-icons.social-icons--light li a:hover {
  color: #fff;
  background-color: var(--color-primary);
}

@media (min-width: 992px) {
  .social-icons li a {
    width: 2.125rem;
    height: 2.125rem;
    font-size: 1.25rem;
  }
}

/* ---- 4.6 - Content box ---- */
.content-box ul {
  list-style: disc;
  margin-left: 1.125rem;
}

.content-box ul li {
  position: relative;
}

.content-box ul li:not(:last-child) {
  margin-bottom: 0.625rem;
}

.content-box ul:not(:last-child) {
  margin-bottom: 1.25rem;
}

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

.content-box img {
  width: 100%;
}

.content-box img:not(:last-child) {
  margin-bottom: 1.25rem;
}

.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  font-weight: 700;
  color: var(--color-dark);
}

.content-box.has-styled-checked-list ul {
  margin-left: 0;
}

.content-box.has-styled-checked-list ul li {
  list-style: none;
}

.content-box.has-styled-checked-list ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  display: inline-block;
  padding-right: 0.75rem;
  vertical-align: middle;
  font-weight: 900;
  margin-top: -0.125rem;
  color: var(--color-primary);
}

.content-box a {
  font-weight: 600;
}

.content-box h1:last-child,
.content-box h2:last-child,
.content-box h3:last-child,
.content-box h4:last-child,
.content-box h5:last-child,
.content-box h6:last-child,
.content-box p:last-child {
  margin-bottom: 0 !important;
}

.content-box.has-h1--has-mb h1,
.content-box.has-h2--has-mb h2,
.content-box.has-h3--has-mb h3,
.content-box.has-h4--has-mb h4,
.content-box.has-h5--has-mb h5,
.content-box.has-h6--has-mb h6,
.has-mb,
.content-box.has-h1--has-mb-2 h1,
.content-box.has-h2--has-mb-2 h2,
.content-box.has-h3--has-mb-2 h3,
.content-box.has-h4--has-mb-2 h4,
.content-box.has-h5--has-mb-2 h5,
.content-box.has-h6--has-mb-2 h6,
.has-mb-2 {
  margin-bottom: 1.875rem;
}

.content-box.has-h1--dark h1,
.content-box.has-h2--dark h2,
.content-box.has-h3--dark h3,
.content-box.has-h4--dark h4,
.content-box.has-h5--dark h5,
.content-box.has-h6--dark h6 {
  color: var(--color-dark);
}

.content-box.has-h1--primary h1,
.content-box.has-h2--primary h2,
.content-box.has-h3--primary h3,
.content-box.has-h4--primary h4,
.content-box.has-h5--primary h5,
.content-box.has-h6--primary h6 {
  color: var(--color-primary);
}

.content-box.has-h1--secondary h1,
.content-box.has-h2--secondary h2,
.content-box.has-h3--secondary h3,
.content-box.has-h4--secondary h4,
.content-box.has-h5--secondary h5,
.content-box.has-h6--secondary h6 {
  color: var(--color-secondary);
}

.content-box.has-h1--white h1,
.content-box.has-h2--white h2,
.content-box.has-h3--white h3,
.content-box.has-h4--white h4,
.content-box.has-h5--white h5,
.content-box.has-h6--white h6 {
  color: #fff;
}

.content-box.has-h1--bold h1,
.content-box.has-h2--bold h2,
.content-box.has-h3--bold h3,
.content-box.has-h4--bold h4,
.content-box.has-h5-bold h5,
.content-box.has-h6--bold h6 {
  font-weight: 700;
}

.content-box.has-h1--semibold h1,
.content-box.has-h2--semibold h2,
.content-box.has-h3--semibold h3,
.content-box.has-h4--semibold h4,
.content-box.has-h5--semibold h5,
.content-box.has-h6--semibold h6 {
  font-weight: 600;
}

.content-box.has-h1--medium h1,
.content-box.has-h2--medium h2,
.content-box.has-h3--medium h3,
.content-box.has-h4--medium h4,
.content-box.has-h5--medium h5,
.content-box.has-h6--medium h6 {
  font-weight: 500;
}

.content-box.has-h1--uppercase h1,
.content-box.has-h2--uppercase h2,
.content-box.has-h3--uppercase h3,
.content-box.has-h4--uppercase h4,
.content-box.has-h5--uppercase h5,
.content-box.has-h6--uppercase h6 {
  text-transform: uppercase;
}

.content-box.has-h1--capitalize h1,
.content-box.has-h2--capitalize h2,
.content-box.has-h3--capitalize h3,
.content-box.has-h4--capitalize h4,
.content-box.has-h5--capitalize h5,
.content-box.has-h6--capitalize h6 {
  text-transform: capitalize;
}

.content-box.has-b-text--semibold b {
  font-weight: 600;
}

.content-box.has-b-text--dark b {
  color: var(--color-dark);
}

.content-box.content-box--prose h1,
.content-box.content-box--prose h2,
.content-box.content-box--prose h3,
.content-box.content-box--prose h4,
.content-box.content-box--prose h5,
.content-box.content-box--prose h6 {
  padding-top: 1.25rem;
}

@media (min-width: 992px) {
  .content-box.has-h1--has-mb h1,
  .content-box.has-h2--has-mb h2,
  .content-box.has-h3--has-mb h3,
  .content-box.has-h4--has-mb h4,
  .content-box.has-h5--has-mb h5,
  .content-box.has-h6--has-mb h6,
  .has-mb,
  .content-box.has-h1--has-mb-2 h1,
  .content-box.has-h2--has-mb-2 h2,
  .content-box.has-h3--has-mb-2 h3,
  .content-box.has-h4--has-mb-2 h4,
  .content-box.has-h5--has-mb-2 h5,
  .content-box.has-h6--has-mb-2 h6,
  .has-mb-2 {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .content-box.has-h1--has-mb h1,
  .content-box.has-h2--has-mb h2,
  .content-box.has-h3--has-mb h3,
  .content-box.has-h4--has-mb h4,
  .content-box.has-h5--has-mb h5,
  .content-box.has-h6--has-mb h6,
  .has-mb {
    margin-bottom: 3.25rem;
  }
}

@media (min-width: 1700px) {
  .content-box.has-h1--has-mb h1,
  .content-box.has-h2--has-mb h2,
  .content-box.has-h3--has-mb h3,
  .content-box.has-h4--has-mb h4,
  .content-box.has-h5--has-mb h5,
  .content-box.has-h6--has-mb h6,
  .has-mb {
    margin-bottom: 4.5rem;
  }
}

/* ---- 4.7.1 - Clinic Card ---- */
.clinic-card {
  overflow: hidden;
  position: relative;
}

.clinic-card .clinic-card__header figure {
  margin-bottom: 0;
  aspect-ratio: 4/5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.clinic-card .clinic-card__header .clinic-card__review {
  position: absolute;
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  top: 0.625rem;
  right: 0.625rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 3.75rem;
}

.clinic-card .clinic-card__body {
  padding: 1.25rem;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 85%;
}
.clinic-card .clinic-card__body .clinic-card__location {
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .clinic-card .clinic-card__body .clinic-card__title {
    min-height: 3.25rem;
  }
}
@media (min-width: 992px) {
  .clinic-card .clinic-card__body .clinic-card__location {
    font-size: 0.875rem;
  }
}

/* ---- 4.7.2 - Blog Card ---- */
.blog-card {
  height: 100%;
  overflow: hidden;
}

.blog-card .blog-card__header figure {
  aspect-ratio: 5/3;
  margin-bottom: 0;
}

.blog-card .blog-card__header .blog-card__date {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
}

.blog-card .blog-card__body {
  padding: 1.25rem;
}

.blog-card .blog-card__body .blog-card__title {
  margin-bottom: 0.75rem;
}

.blog-card .blog-card__body .blog-card__exercpt {
  margin-bottom: 1rem;
}

.blog-card .blog-card__body .blog-card__title {
  min-height: 4.25rem;
}

.blog-card .blog-card__body .blog-card__meta {
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.blog-card .blog-card__body .blog-card__meta p {
  font-size: 0.875rem;
  line-height: 1;
}

.blog-card .blog-card__body .blog-card__meta p a {
  color: var(--color-text);
}

.blog-card .blog-card__body .blog-card__meta p a:hover {
  color: var(--color-primary);
}

.blog-card.blog-card--light .blog-card__body .blog-card__title a,
.blog-card.blog-card--light .blog-card__body .blog-card__exercpt {
  color: #fff;
}

@media (max-width: 1399.98px) {
  .blog-card .blog-card__body .blog-card__title {
    font-size: 1.25rem;
    min-height: 3.5rem;
  }

  .blog-card .blog-card__header .blog-card__date {
    width: 4.25rem;
    height: 4.25rem;
  }

  .blog-card .blog-card__header .blog-card__date h4 {
    font-size: 1.125rem;
  }

  .blog-card .blog-card__header .blog-card__date h3 {
    font-size: 1.5rem;
  }
}

/* ---- 4.7.3 - Doctor Card ---- */
.doctor-card .doctor-card__body {
  padding: 1.25rem 0.75rem;
}
.doctor-card .doctor-card__body p {
  font-size: 0.875rem;
}
.doctor-card .doctor-card__body p span i {
  display: inline-block;
  margin-right: 0.5rem;
}
.doctor-card .doctor-card__body ul {
  border-top: 1px solid var(--color-border);
  gap: 1rem;
}
@media (min-width: 768px) {
  .doctor-card .doctor-card__body {
    padding: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .doctor-card .doctor-card__body h5 {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .doctor-card .doctor-card__body h5 {
    font-size: 1rem;
  }
}

/* ---- 4.8 - Tables ---- */
@media (max-width: 767.98px) {
  table.table--responsive thead {
    display: none;
  }

  table.table--responsive > tbody > tr:not(:last-child) {
    border-bottom: 1px dashed var(--color-dark);
  }

  table.table--responsive tbody tr td {
    display: block;
    border: 0;
  }

  table.table--responsive > tbody > tr > td::before {
    content: attr(data-cell) " : ";
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-dark);
  }
}

/* ---- 4.9 - Button Scroll To Top ---- */
.button--scroll-to-top {
  width: 3.125rem;
  height: 3.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 3.125rem;
  right: 1rem;
  border: 0;
  border-radius: 50%;
  font-size: 1.125rem;
  visibility: hidden;
  z-index: 1000;
}
.button--scroll-to-top:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.button--scroll-to-top.show {
  visibility: visible;
}

/* ---- 4.10 - Quantity Generator Button ---- */
.quantity-generating-input-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
}

.quantity-generating-input-container input.qtyminus,
.quantity-generating-input-container input.qtyplus {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--color-primary);
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.375rem;
}

.quantity-generating-input-container input.qty {
  width: 100%;
  max-width: 5rem;
  color: var(--color-dark);
  pointer-events: none;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 1.125rem;
}

.quantity-generating-input-container.quantity-generating-input-container--sm {
  padding: 0.5rem 1rem;
}

.quantity-generating-input-container.quantity-generating-input-container--sm input.qtyminus,
.quantity-generating-input-container.quantity-generating-input-container--sm input.qtyplus {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---- 4.11 - Search Modal ---- */
.modal--search .form-wrapper .form-wrapper__header .form select {
  position: absolute;
  background-color: #fff;
  border: 0;
  top: 0.875rem;
  left: 1rem;
}

.modal--search .form-wrapper .form-wrapper__body ul li {
  font-size: 90%;
}

.modal--search .form-wrapper .form-wrapper__body ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.modal--search .form-wrapper .form-wrapper__body ul li a {
  padding: 0.625rem;
}

.modal--search .form-wrapper .form-wrapper__body ul li a figure {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-border);
}

.modal--search .form-wrapper .form-wrapper__body ul li a:hover {
  background-color: var(--color-light);
}

@media (min-width: 1400px) {
  .modal--search .form-wrapper .form-wrapper__header .form select {
    top: 1rem;
  }
}

/* ---- 4.11 - Book Appointment Modal ---- */
.modal--book-appointment .modal-header {
  background-color: #d4e4f8;
  background-image: url(../images/top-view-frame-with-stethoscope\ 1-min.png);
}
.modal--book-appointment .modal-header,
.modal--book-appointment .modal-body {
  padding: 2rem 1.25rem;
}
.modal--book-appointment .modal-header .btn-close {
  position: absolute;
  top: -1.5rem;
  right: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
@media (min-width: 992px) {
  .modal--book-appointment .modal-header .btn-close {
    right: -1.25rem;
  }
}
/* ---- 5. Section wise common styles ---- */
.section--py {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section--pt {
  padding-top: 4rem;
}

.section--pb {
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .section--py {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section--pt {
    padding-top: 4.5rem;
  }

  .section--pb {
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 1200px) {
  .section--py {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section--pt {
    padding-top: 5rem;
  }

  .section--pb {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1400px) {
  .section--py {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }

  .section--pt {
    padding-top: 5.625rem;
  }

  .section--pb {
    padding-bottom: 5.625rem;
  }
}
@media (min-width: 1700px) {
  .section--py {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .section--pt {
    padding-top: 6.25rem;
  }

  .section--pb {
    padding-bottom: 6.25rem;
  }
}

/* ---- 6. Vendor Overriding ---- */
.offcanvas {
  max-width: 22.5rem;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.owl-carousel.owl-carousel--nav-vertical-middle .owl-nav button.owl-prev {
  position: absolute;
  top: calc(50% - 2rem);
  left: 0;
}

.owl-carousel.owl-carousel--nav-vertical-middle .owl-nav button.owl-next {
  position: absolute;
  top: calc(50% - 2rem);
  right: 0;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: transparent;
  border: 1px solid var(--color-primary);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.owl-carousel.has-stage-outer-pb .owl-stage-outer {
  padding-bottom: 3.5rem;
}

.owl-carousel.has-default-nav-style .owl-nav button.owl-next,
.owl-carousel.has-default-nav-style .owl-nav button.owl-prev,
.owl-carousel.has-default-nav-style .owl-nav button.owl-next:hover,
.owl-carousel.has-default-nav-style .owl-nav button.owl-prev:hover {
  background-color: transparent;
  color: var(--color-primary);
}

strong,
b {
  font-weight: 700;
}

.modal-content {
  border-radius: 0;
  border: 0;
}

.dropdown-menu {
  border: 1px solid var(--color-border);
  border-radius: 0.125rem;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.site-content {
  padding-top: 3rem;
}

.subheading {
  padding: 0.25rem 1rem;
  background-color: #ffe4e8;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3.75rem;
}
.subheading img {
  max-width: 1.5rem;
  margin-left: 0.625rem;
}

figure {
  margin-bottom: 0;
}

.table {
  border-color: var(--color-border);
}

.mfp-bg {
  opacity: 0.6;
}

@media (min-width: 992px) {
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    width: 3.125rem;
    height: 3.125rem;
  }
  .owl-carousel.has-stage-outer-pb .owl-stage-outer {
    padding-bottom: 4rem;
  }

  .site-content {
    padding-top: 3.625rem;
  }
}

@media (min-width: 1200px) {
  .owl-carousel.has-stage-outer-pb .owl-stage-outer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 1700px) {
  .container {
    max-width: 1440px;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }
}

/* ---- 7. Layouts ---- */
/* ---- 7.1 Header ---- */
.site-header {
  z-index: 1040;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-header .site-header__top,
.site-header .site-header__bottom {
  padding: 0.75rem 0;
}

.site-header .site-header__bottom {
  border-bottom: 1px solid transparent;
}

.site-header .site-header__top a,
.site-header .site-header__top button {
  font-size: 0.75rem;
}

.site-header .site-header__top .button--book-appointment {
  padding: 0.625em 1.25rem;
  font-size: 0.75rem;
}

.site-header,
.site-header .site-header__logo img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-header .site-header__logo img {
  max-width: 12rem;
}

.site-header .site-header__button--nav-toggler {
  font-size: 1.5rem;
  background-color: transparent;
  border: 0;
}

.site-header .site-header__button--search {
  background-color: transparent;
  font-size: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  padding: 0.25rem 0.625rem;
}

.site-header .site-header__button--search:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
}

.site-header .offcanvas {
  max-width: 22.5rem;
}

.site-header .offcanvas .site-header__btn--account::after {
  color: #fff;
}

.site-header .site-header__nav ul li {
  position: relative;
}

.site-header .site-header__nav ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header .site-header__nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: var(--color-dark);
  font-weight: 600;
}

.site-header .site-header__nav ul li a i {
  padding: 0.25rem;
  display: inline-block;
}

.site-header .site-header__nav ul li a span.dropdown-button {
  padding: 0.125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-header .site-header__nav ul li:hover a,
.site-header .site-header__nav ul li.active a,
.site-header .site-header__nav ul li.current-menu-item a {
  color: var(--color-primary);
}

/* .site-header.site-header--shrinked {
  -webkit-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
} */

.site-header.site-header--shrinked .site-header__bottom {
  background-color: var(--bg-color-body);
  border-bottom: 1px solid #d4e4f894;
}

.site-header .form-wrapper {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 1rem 1rem;
  display: none;
  z-index: 10;
  -webkit-box-shadow: var(--shadow-base);
  box-shadow: var(--shadow-base);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header .form-wrapper .form-wrapper__button--close {
  font-size: 1.25rem;
}

.site-header .form-wrapper .form {
  max-width: 40rem;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.site-header .form-wrapper.show {
  display: block;
}

.site-header .form-wrapper form button[type="submit"] {
  position: absolute;
  top: 0.625rem;
  right: 1rem;
  background-color: transparent;
  border: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
}

@media (min-width: 576px) {
  .site-header .site-header__top a,
  .site-header .site-header__top button {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .site-header .site-header__top p {
    font-size: 0.875rem;
  }

  .site-header .site-header__nav ul li a {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .site-header .site-header__top,
  .site-header .site-header__bottom {
    padding: 1rem 0;
  }

  .site-header .site-header__top a,
  .site-header .site-header__top button {
    font-size: 0.9375rem;
  }

  .site-header .site-header__logo {
    max-width: 18rem;
  }
  .site-header .site-header__logo img {
    max-width: 100%;
  }

  .site-header .contact-block {
    padding-left: 1.25rem;
    position: relative;
  }

  .site-header .contact-block .contact-block__icon {
    margin-top: 0.25rem;
  }

  .site-header .contact-block .contact-block__icon img {
    max-width: 2rem;
  }

  .site-header .contact-block .contact-block__body {
    padding-left: 1rem;
  }

  .site-header .contact-block .contact-block__body p,
  .site-header .contact-block .contact-block__body div {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .site-header .site-header__logo {
    margin-right: 1.875rem;
  }

  .site-header .site-header__nav ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .site-header .site-header__nav ul li:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 0;
    margin-right: 1rem;
  }

  .site-header .site-header__nav ul li::before {
    content: "";
    background-image: url(../images/ecg-icon.png);
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 1.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-animation: blink 3s linear 3s infinite alternate;
    animation: blink 3s linear 3s infinite alternate;
    display: none;
  }
  @-webkit-keyframes blink {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes blink {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .site-header .site-header__nav ul li.active::before,
  .site-header .site-header__nav ul li.current::before {
    display: block;
  }

  .site-header .site-header__nav ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--color-dark);
    font-size: 0.9375rem;
    padding: 0.5rem;
    white-space: nowrap;
    font-weight: 600;
  }

  .site-header .site-header__nav ul li:hover > a,
  .site-header .site-header__nav ul li.active a,
  .site-header .site-header__nav ul li.current-menu-item a {
    color: var(--color-primary);
  }

  .site-header .site-header__nav ul li ul {
    display: block;
    -webkit-box-shadow: var(--shadow-base);
    box-shadow: var(--shadow-base);
    border-radius: 0.375rem;
    min-width: 12rem;
    position: absolute;
    top: 2.25rem;
    left: 0;
    background-color: var(--bg-color-body);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0;
  }

  .site-header .site-header__nav ul li ul li {
    margin-right: 0 !important;
    text-align: left;
  }

  .site-header .site-header__nav ul li ul li::before,
  .site-header .site-header__nav ul li ul li.active::before,
  .site-header .site-header__nav ul li ul li.current::before {
    display: none;
  }

  .site-header .site-header__nav ul li ul li a {
    font-size: 0.9375rem;
    padding: 0.625rem 0.875rem;
    display: block;
  }

  .site-header .site-header__nav ul li ul li a,
  .site-header .site-header__nav ul li:hover ul li a {
    color: var(--color-dark);
  }

  .site-header .site-header__nav ul li ul li:hover > a,
  .site-header .site-header__nav ul li ul li.active > a,
  .site-header .site-header__nav ul li ul li.current > a {
    color: var(--color-primary);
  }

  .site-header .site-header__nav ul li:hover ul {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
  }

  .site-header .contact-block .contact-block__icon img {
    max-width: 2.5rem;
  }

  .site-header .contact-block .contact-block__body p,
  .site-header .contact-block .contact-block__body div {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1400px) {
  .site-header .site-header__nav ul li:not(:last-child) {
    margin-right: 1.25rem;
  }

  .site-header .site-header__nav ul li a {
    font-size: 1rem;
  }

  .site-header .site-header__top a,
  .site-header .site-header__top button {
    font-size: 1rem;
  }

  .site-header .site-header__nav ul li ul li a {
    font-size: 1rem;
  }
}

@media (min-width: 1700px) {
  .site-header .site-header__nav ul li:not(:last-child) {
    margin-right: 1.875rem;
  }

  .site-header .contact-block .contact-block__icon img {
    max-width: 2.75rem;
  }
}

/* ---- 7.2 Footer ---- */
.site-footer .site-footer__top {
  padding: 3.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .site-footer__top .newsletter-form {
  max-width: 28.125rem;
}

.site-footer .site-footer__top .newsletter-form .form__input {
  border: 1px solid #fff;
  color: #fff;
  min-height: 3.5rem;
  margin-bottom: 0.75rem;
  background-color: transparent;
}
.site-footer .site-footer__top .newsletter-form .form__input:focus {
  border: 1px solid var(--color-primary);
}

.site-footer .site-footer__top .newsletter-form .form__input::-webkit-input-placeholder {
  color: #fff;
}

.site-footer .site-footer__top .newsletter-form .form__input::-moz-placeholder {
  color: #fff;
}

.site-footer .site-footer__top .newsletter-form .form__input:-ms-input-placeholder {
  color: #fff;
}

.site-footer .site-footer__top .newsletter-form .form__input::-ms-input-placeholder {
  color: #fff;
}

.site-footer .site-footer__top .newsletter-form .form__input::placeholder {
  color: #fff;
}

.site-footer .site-footer__top .newsletter-form button[type="submit"] {
  width: 100%;
  display: block;
  text-align: center;
}

.site-footer .site-footer__top .site-footer__nav ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.site-footer .site-footer__top .site-footer__nav ul li a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.9375rem;
}

.site-footer .site-footer__top .site-footer__nav ul li a:hover {
  color: var(--color-primary);
}

.site-footer .site-footer__top .site-footer__contact-items li:not(:last-child) {
  margin-bottom: 1rem;
}

.site-footer .site-footer__top .site-footer__contact-items li .cta--link {
  font-size: 0.9375rem;
}

.site-footer .site-footer__top .site-footer__contact-items li .cta--link .icon {
  margin-right: 1rem;
  color: #fff;
  font-size: 150%;
  margin-top: 0;
}
.site-footer .site-footer__top .site-footer__contact-items li .cta--link .text {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .site-footer__top .site-footer__contact-items li .cta--link:hover .text {
  color: var(--color-primary);
}

.site-footer .site-footer__bottom {
  padding: 2.25rem 0;
}

.site-footer .site-footer__bottom ul {
  gap: 1rem;
}
.site-footer .site-footer__bottom ul li a {
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .site-footer .site-footer__top .newsletter-form button[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    display: inline-block;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .site-footer .site-footer__top .site-footer__nav ul li a,
  .site-footer .site-footer__top .site-footer__contact-items li .cta--link {
    font-size: 1rem;
  }

  .site-footer .site-footer__top .site-footer__nav ul li:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .site-footer .site-footer__top .site-footer__contact-items li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .site-footer .site-footer__top h6 {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1200px) {
  .site-footer .site-footer__top .newsletter-col {
    padding-left: 4rem;
  }
  .site-footer .site-footer__top h6 {
    font-size: 1.125rem;
  }
}

@media (min-width: 1400px) {
}

@media (min-width: 1700px) {
  .site-footer .site-footer__top .site-footer__contact-items li:not(:last-child) {
    margin-bottom: 2rem;
  }

  .site-footer .site-footer__top .newsletter-form .form__input {
    min-height: 3.75rem;
  }

  .site-footer .site-footer__bottom ul {
    margin-left: -1rem;
  }
}

/* ---- 8. Pages ---- */
/* ---- 8.1 Home ---- */
.hero-section {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url(../images/banner-bg.jpg);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(60deg, #f7fafe99, #f7fafe, #f7fafe);
}

.hero-section .content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-section .content-wrapper .content-cta {
  padding-top: 1.875rem;
}

.hero-section .col-img {
  margin-top: 1.875rem;
  max-width: 35rem;
  z-index: 1;
}

.hero-section .content-wrapper-outer .content-wrapper .content-cta {
  margin-top: 1.875rem;
}
.site-highlight-section .block-grid {
  margin: 0 -0.75rem;
}
.site-highlight-section .block-grid .block {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding: 0 0.75rem;
}
.site-highlight-section .block-grid .divider {
  display: none;
}
.site-highlight-section .block-grid .block .block__icon {
  width: 5rem;
  text-align: center;
}
.site-highlight-section .block-grid .block:not(:first-child) .block__icon img {
  max-width: 3rem;
}
.site-highlight-section .block-grid .block .block__body.content-box h6 {
  margin-bottom: 0;
}

.promo-section .promo-block {
  padding: 2.5rem 1.25rem;
}

.promo-section .promo-block .promo-block__body {
  padding-right: 25%;
  z-index: 3;
}
.promo-section .promo-block .promo-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.promo-section .promo-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#f7fafe), color-stop(#f7fafe95), to(#f7fafe10));
  background-image: linear-gradient(to right, #f7fafe, #f7fafe95, #f7fafe10);
  z-index: 2;
}
.promo-section .promo-block:hover .promo-block__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.categories-section .cat-block {
  padding: 1.25rem;
  background-color: var(--bg-color-body);
  border: 1px solid ;
}
.categories-section .cat-block,
.categories-section .cat-block img,
.categories-section .cat-block p {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.categories-section .cat-block:hover {
  background-color: var(--color-primary);
}
.categories-section .cat-block:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.categories-section .cat-block:hover p {
  color: #fff;
}

.clinic-registration-section .wrapper-block {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.clinic-registration-section .wrapper-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/clinic-registation-cta.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.quote-section {
  padding: 6rem 0;
  background-attachment: fixed;
}
.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 23, 44, 0.85);
}
.quote-section .quote-container {
  border: 2px solid #fff;
  padding: 4rem 1.25rem;
  border-radius: 0 6.25rem 0 6.25rem;
}

.testimonial-section .testimonial-item {
  padding: 1.875rem 1.25rem;
  border-bottom: 4px solid var(--color-primary);
}

.testimonial-section .testimonial-item .testimonial-item__header {
  margin-bottom: 1.875rem;
}

.testimonial-section .testimonial-item .testimonial-item__body .content-box {
  margin-bottom: 1.25rem;
}

.testimonial-section .testimonial-item .testimonial-item__header img {
  max-width: 2.625rem;
}

.testimonial-section .testimonial-item .testimonial-item__header .reviews {
  display: inline-block;
  color: #feaa19;
}

.testimonial-section .testimonial-item .testimonial-item__header .reviews i:not(:last-child) {
  margin-right: 0.5rem;
}

.testimonial-section .testimonial-item .testimonial-item__body .testimonial-item__author p {
  font-size: 0.875rem;
}
/*
.testimonial-section .testimonial-item .testimonial-item__header .google-logo {
  max-width: 2.5rem;
  display: inline-block;
} */
/* .testimonial-section .testimonial-item .testimonial-item__body img {
  margin-bottom: 0.625rem;
  width: 4rem;
  height: 4rem;
  object-fit: cover;
} */

.get-in-touch-section {
  padding: 4rem 0;
}

.get-in-touch-section .form-wrapper .form-wrapper__top {
  padding: 3.625rem 1.75rem;
}

.get-in-touch-section .form-wrapper .form-wrapper__bottom {
  padding: 1.25rem;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input {
  border-width: 0 0 1px 0;
  color: #fff;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input::-webkit-input-placeholder {
  color: #fff;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input::-moz-placeholder {
  color: #fff;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input:-ms-input-placeholder {
  color: #fff;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input::-ms-input-placeholder {
  color: #fff;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input::placeholder {
  color: #fff;
}

.get-in-touch-section .form-wrapper .form .form__field .form__input:focus {
  outline: none !important;
  border-width: 0 0 1px 0 !important;
}

.get-in-touch-section .form-wrapper .form .form__field i {
  position: absolute;
  top: 1rem;
  left: 0;
  color: #fff;
}

@media (min-width: 576px) {
  .hero-section .content-wrapper {
    padding: 0 2rem;
  }

  .site-highlight-section .block-grid .block {
    width: 33.3%;
  }

  .site-highlight-section .block-grid .block .block__icon {
    width: auto;
    text-align: left;
  }
  .site-highlight-section .block-grid .block:first-child .block__icon img {
    max-width: 3rem;
  }

  .promo-section .promo-block {
    padding: 2.5rem 1.875rem;
  }

  .clinic-registration-section .wrapper-block {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .quote-section .quote-container {
    padding: 5rem 3rem;
  }

  .testimonial-section .testimonial-item {
    padding: 1.875rem;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding-bottom: 0;
  }

  .hero-section .owl-carousel .item {
    height: 34rem;
  }

  .hero-section .content-wrapper {
    padding: 0;
  }

  .hero-section .col-img {
    position: absolute;
    right: 2%;
    bottom: 0;
    max-width: 30rem;
  }

  .site-highlight-section .block-grid .block:first-child .block__icon img {
    max-width: 4rem;
  }

  .promo-section .promo-block {
    padding: 2.5rem;
  }

  .cta-section .col-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .quote-section {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    padding-top: 3rem;
  }

  .hero-section .owl-carousel .item {
    height: 43.75rem;
  }

  .hero-section .col-img {
    max-width: 40rem;
  }

  .site-highlight-section .block-grid .block {
    width: auto;
  }

  .site-highlight-section .block-grid .divider {
    display: inline-block;
    height: 3.75rem;
    width: 0.125rem;
    border-left: 1px dashed var(--color-dark);
  }

  .clinic-registration-section .wrapper-block {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
  }

  .quote-section {
    padding: 10rem 0;
  }

  .testimonial-section::before {
    height: 30%;
  }

  .testimonial-section .owl-theme .owl-nav.disabled + .owl-dots {
    bottom: -2rem;
  }
}

@media (min-width: 1400px) {
  .hero-section .owl-carousel .item {
    height: 46rem;
  }
  .quote-section {
    padding: 12rem 0;
  }
}

@media (min-width: 1700px) {
  .hero-section .owl-carousel .item {
    height: 52.75rem;
  }

  .hero-section .col-img {
    max-width: 50rem;
    right: 6%;
  }

  .promo-section .promo-block {
    padding: 3rem 2.5rem;
  }

  .testimonial-section .col-img {
    max-width: 75%;
    bottom: -1.25rem;
  }
}
@media (max-width: 991.98px) {
  .site-highlight-section .block-grid .block .block__body.content-box h6 {
    font-size: 1rem;
  }
  .site-highlight-section .block-grid .block .block__body.content-box p {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.98px) {
  .hero-section .content-wrapper h1 {
    font-size: 2.25rem;
  }

  /* .hero-section .content-wrapper .content-cta a,
  .cta-section .cta-box .button {
    font-size: 0.75rem;
    padding: 0.875rem;
  } */
  .site-highlight-section .block-grid .block .block__body.content-box h6 {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .site-highlight-section .block-grid .block .block__body.content-box h6 {
    font-size: 1.0625rem;
  }
}

/* ---- 8.4 Contact Us Page ---- */

.contact-section .contact-info-wrapper .contact-items li {
  border: 1px solid var(--color-border);
  padding: 1.875rem 1.125rem;
}
.contact-section .contact-info-wrapper .contact-items li .content-box h5 {
  margin-bottom: 1rem;
}
.contact-section .form-wrapper {
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.map-container {
  height: 22.5rem;
  margin-bottom: 3.125rem;
}

@media (min-width: 992px) {
  .contact-section .form-wrapper {
    padding-top: 0;
    border-top: 0;
  }

  .map-container {
    height: 26.25rem;
  }
}

@media (min-width: 1400px) {
  .map-container {
    height: 30rem;
  }
}

@media (min-width: 1700px) {
  /* .contact-section .contact-info-wrapper .inner-wrapper .contact-items li {
    padding: 2.75rem 1.25rem;
  } */
  .map-container {
    height: 34.375rem;
  }
}

/* ---- 8.3 About Us Page ---- */
.vm-section .vm-block .content-box {
  padding: 1.875rem 1.25rem;
}

.vm-section .vm-block .content-box h4 {
  margin-bottom: 1.875rem;
}

.vm-section .vm-block .content-box ul li {
  color: var(--color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.why-choose-us-section .blocks .block:not(:last-child) {
  margin-bottom: 2.5rem;
}

.why-choose-us-section .blocks .block .block__icon {
  padding: 0.5rem;
  border: 4px solid #fff;
  max-height: 5.5rem;
  max-width: 5.5rem;
  margin-bottom: 1.25rem;
}

.why-choose-us-section .blocks .block .block__body .content-box h5 {
  margin-bottom: 0.625rem;
}

@media (min-width: 576px) {
  .why-choose-us-section .blocks .block .block__body {
    padding-left: 1.5rem;
  }
}

@media (min-width: 992px) {
  .vm-section .vm-block .content-box {
    padding: 1.875rem;
  }

  .why-choose-us-section .content-col {
    padding-left: 8.33%;
  }

  .why-choose-us-section .blocks .block:not(:last-child) {
    margin-bottom: 3.125rem;
  }

  .why-choose-us-section .blocks .block .block__icon {
    margin-bottom: 0;
  }
}

@media (min-width: 1400px) {
  .vm-section .vm-block .content-box {
    padding: 2.75rem 1.875rem;
  }
}

@media (min-width: 1700px) {
  .vm-section .vm-block .content-box {
    padding: 3.5rem 2.125rem;
  }

  .why-choose-us-section .blocks .block:not(:last-child) {
    margin-bottom: 3.75rem;
  }
}

/* ---- 8.4 - Doctors Page ---- */
/* ---- 8.5 - Doctors Single Page ---- */
.cpt-single-section .content-wrapper__header,
.cpt-single-section .content-wrapper__body {
  padding: 2.5rem 1.25rem;
}

.cpt-single-section .content-wrapper__header .block .block__thumbnail {
  width: 8rem;
  height: 8rem;
  border: 4px solid #fff;
  outline: 2px solid var(--color-primary);
}

.cpt-single-section .content-wrapper__header .block .block__body .button {
  padding: 0.75rem 1.875rem;
  font-size: 0.875rem;
}

.cpt-single-section .content-wrapper__header .block .block__body .social-connection li:not(:last-child) {
  margin-right: 1rem;
}

.cpt-single-section .content-wrapper__header .block .block__body .social-connection li a {
  font-size: 1.125rem;
  color: var(--color-dark);
}

.cpt-single-section .content-wrapper__header .block .block__body .social-connection li a:hover {
  color: var(--color-primary);
}

.cpt-single-section .content-wrapper__body .block:not(:last-child) {
  padding-bottom: 2rem;
}

.cpt-single-section .content-wrapper__body .block .block__heading {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cpt-single-section .table {
  margin-bottom: 0;
  color: var(--color-dark);
}

.cpt-single-section .table td {
  padding-left: 0;
}

.cpt-single-section .table thead td {
  color: var(--color-dark);
}

.cpt-single-section .table tr td p {
  font-size: 0.875rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
  font-weight: 500;
}

.cpt-single-section .content-wrapper__body .text--imp {
  font-size: 0.875rem;
}

.cpt-single-section .table a:hover {
  text-decoration: underline;
}

@media (min-width: 576px) {
  .cpt-single-section .content-wrapper__header,
  .cpt-single-section .content-wrapper__body {
    padding: 2.5rem 1.875rem;
  }

  .cpt-single-section .content-wrapper__header .block .block__body {
    padding-left: 1.875rem;
  }
}

@media (min-width: 768px) {
  .cpt-single-section .table .table tr:first-child td {
    padding-top: 0;
  }

  .cpt-single-section .table .table tr:last-child td {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .cpt-single-section .table .table tr td {
    width: 50%;
  }

  .cpt-single-section .table tr > td:first-child {
    padding-left: 0.5rem;
  }

  .cpt-single-section .table tr > td .table tr > td {
    padding-left: 0;
  }

  .cpt-single-section .table thead th:last-child {
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .cpt-single-section .content-wrapper__body .block:not(:last-child) {
    padding-bottom: 2.5rem;
  }

  .cpt-single-section .content-wrapper__header,
  .cpt-single-section .content-wrapper__body {
    padding: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .cpt-single-section .content-wrapper__header .block .block__thumbnail {
    width: 10rem;
    height: 10rem;
  }
}

/* ---- 8.6 - Clinics Page ---- */
.clinics-archive .form-wrapper {
  padding: 2.5rem 1.25rem;
  max-width: 25rem;
}
.clinics-archive .form-wrapper .form .form__field:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (min-width: 1200px) {
  .clinics-archive .form-wrapper {
    position: sticky;
    top: 11rem;
  }
}
/* ---- 8.7 - Clinic Single Page ---- */

/* ---- 8.8 Blog Single Page ---- */
.blog-single-section .post-wrapper .post__author {
  width: 2.5rem;
  height: 2.5rem;
}

.blog-single-section .post-related-wrapper .block {
  margin-bottom: 2rem;
}

.blog-single-section .post-related-wrapper .block ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.blog-single-section .post-related-wrapper .block ul li:not(:first-child) .blog-sm-item {
  padding-top: 1rem;
}

.blog-single-section .post-related-wrapper .block ul li:not(:last-child) .blog-sm-item {
  padding-bottom: 1rem;
}

.blog-single-section .post-related-wrapper .block ul li .blog-sm-item .blog-sm-item__date {
  line-height: 1;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
}

.blog-single-section .post-related-wrapper .block ul li .blog-sm-item a {
  font-size: 0.9375rem;
}

.blog-single-section .post-related-wrapper .block h5 span {
  padding-right: 1.25rem;
  position: relative;
  background-color: var(--bg-color-body);
  font-weight: 700;
}

.blog-single-section .post-related-wrapper .block h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 1px;
}

.blog-single-section .post-related-wrapper .block.block--categories ul li {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: none;
}

.blog-single-section .post-related-wrapper .block.block--categories ul li a {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  border-radius: 3.75rem;
}

.blog-single-section .post-related-wrapper .block.block--categories ul li a:hover {
  background-color: var(--color-primaryShade);
  color: #fff;
}

.blog-single-section .sidebar-col {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.blog-single-section .post-wrapper .post__content {
  margin: 2.5rem 0;
}

@media (min-width: 992px) {
  .blog-single-section .post-related-wrapper {
    position: sticky;
    top: 9rem;
  }

  .blog-single-section .sidebar-col {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
}

@media (min-width: 1200px) {
  .blog-single-section .post-related-wrapper {
    position: sticky;
    top: 10rem;
  }
}

@media (min-width: 1700px) {
  .blog-single-section .post-related-wrapper {
    position: sticky;
    top: 11.5rem;
  }
}

/* ---- 8.7 404 Not Found Page ---- */
.not-found-section .content-wrapper {
  min-height: 100vh;
}

.not-found-section .content-wrapper h1 {
  font-size: 12rem;
  line-height: 1;
  letter-spacing: -24px;
  z-index: 1;
  margin-bottom: 3rem;
  line-height: 1;
}

.not-found-section h1 span {
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 4px;
  z-index: 2;
  position: relative;
  font-weight: 700;
}

.not-found-section .content-wrapper h3,
.not-found-section .content-wrapper h4 {
  letter-spacing: 2px;
}

.not-found-section .content-wrapper h5 {
  margin-top: -1.5rem;
}

body.error404 .site-header,
body.error404 .site-footer {
  display: none;
}

body.error404 .site-content {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .not-found-section .content-wrapper h1 {
    font-size: 10rem;
  }
}

/* ---- 8.8 FAQs Page ---- */
.faqs-section .form .form__button--reset {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background-color: transparent;
  border: 0;
  color: var(--color-secondary);
  font-size: 1.25rem;
  display: none;
}

.faqs-section .qa-block {
  height: 100%;
}

.faqs-section .qa-block .qa-block__header {
  border-bottom: 1px solid var(--color-border);
}

.faqs-section .qa-block .qa-block__header h6 {
  font-weight: 700;
  margin-bottom: 0;
}

.faqs-section .qa-block .qa-block__header,
.faqs-section .qa-block .qa-block__body {
  padding: 1.25rem 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faqs-section .qa-block .qa-block__header .qa-block__prefix,
.faqs-section .qa-block .qa-block__body .qa-block__prefix {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.75rem;
  background-color: var(--color-primary);
  width: 1.875rem;
  height: 1.875rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 1400px) {
  .faqs-section .form .form__button--reset {
    top: 0.75rem;
  }
}

@media (min-width: 1700px) {
  .faqs-section .form .form__button--reset {
    top: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .faqs-section .qa-block .qa-block__header h6 {
    font-size: 1.0625rem;
  }
}
