 /*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 /* Fonts */
 :root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #042641;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0083ec;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --contrast-red-color: #e83035;
  --bg-dark-color: #042641;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #042641;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0083ec;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #042641;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0083ec;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.light-green-background {
  --background-color: #90f0ba;
  --surface-color: #90f0ba;
}

.light-pink-background {
  --background-color: #ffe8c8;
  --surface-color: #ffe8c8;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.text-red {
  color: var(--contrast-red-color);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 14px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

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

.form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  border-radius: 0px;
  /* padding: 3px 10px; */
  width: 100%;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

textarea.form-control {
  height: auto;
  min-height: auto;
  max-height: auto;
}

/* Pulsating Play Button
------------------------------*/
.btn-light {
  background: var(--accent-color);
  border: 0;
  padding: 10px 20px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-light:hover {
  background: #0a77cf;
  color: var(--bg-dark-color);
}
 
.btn-theme-light {
  background: var(--accent-color);
  border: 0;
  padding: 10px 20px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-theme-light:hover {
  background: var(--nav-color);
}

.btn-theme-light:hover * {
  color: #fff;
}

.btn-theme-light-outline {
  border: 2px solid var(--accent-color);
  padding: 7px 17px;
  color: var(--accent-color);
  transition: 0.4s;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-theme-light-outline:hover {
  background: var(--accent-color);
}

.btn-theme-light-outline:hover * {
  color: #fff;
}

.btn-theme-dark {
  background: var(--nav-color);
  border: 0;
  padding: 10px 20px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-theme-dark:hover {
  background: var(--accent-color);
}

.btn-theme-dark:hover * {
  color: #fff;
}

.btn-theme-dark-outline {
  border: 2px solid var(--nav-color);
  padding: 7px 17px;
  color: var(--nav-color);
  transition: 0.4s;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-theme-dark-outline:hover {
  background: var(--nav-color);
}

.btn-theme-dark-outline:hover * {
  color: #fff;
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
  position: fixed;
  width: 100%;
}


.header .topbar {
  background-color: var(--nav-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .top-menu-links a {
  color: var(--contrast-color);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .top-menu-links a:hover {
  text-decoration: underline;
}

.header .branding {
  min-height: 40px;
  padding: 0px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
}

.offcanvas-title img {
  max-height: 60px;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 0px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--nav-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    width: 100%;
  }

  .header .branding {
    height: auto;
    padding: 10px 0;
  }

  .header .logo img {
    max-height: 35px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 0 0;
    padding: 6px 15px;
    min-width: 160px;
    text-align: center;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: var(--background-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 30px 10px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--bg-dark-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    display: none;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color) !important;
  }

  .navmenu li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

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

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

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  } 
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

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

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .offcanvas {
    max-width: 360px !important;
    width: 80vw;
    z-index: 999999;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: relative;
    padding: 0px 0;
    margin: 0;
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 15px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background-color: var(--nav-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0%;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--contrast-color);
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links.footer-services ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover,.footer .footer-links ul a.active {
  color: var(--accent-color);
}
 
.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-contact a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.footer .footer-contact a:hover {
  color: var(--contrast-color);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight:500;
}

.page-title nav {
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
  font-weight: 300;
}

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

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffffab;
}

.overlay+.heading {
  position: relative;
  z-index: 99;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: none;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: none;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 0px;
}

.section-title p {
  margin-bottom: 0;
}

.section-title.text-start h2 {
  display: inline-block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 130px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ffffffb8;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.about .content ul li {
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 10px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-box {
  background-color: var(--surface-color);
  padding: 10px 30px;
  text-align: center;
  /* box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1); */
  border-radius: 0px;
  transition: 0.3s;
  border: 1px solid #EEE;
}

.stats .stats-box i {
  width: 54px;
  height: 54px;
  font-size: 34px;
  color: var(--accent-color);
  padding-right: 20px;
  border-right: 2px solid #EEE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-box .stats-item {
  background-color: var(--surface-color);
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-box .stats-item .state-count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 24px;
  padding-left: 5px;
}

.stats .stats-box .stats-item span {
  font-size: 32px;
  display: block;
  margin: 0px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-box .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}



/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
  color: var(--accent-color);
}

.departments .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.departments .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.departments .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }

  .departments .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 0px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.doctors .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.doctors .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .team-member:hover {
  transform: translateY(-10px);
}

.doctors .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .doctors .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.doctors .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.doctors .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .doctors .team-member span::after {
    left: calc(50% - 25px);
  }
}

.doctors .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .doctors .team-member .social {
    justify-content: center;
  }
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  width: 36px;
  height: 36px;
}

.doctors .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.doctors .team-member .social a:hover {
  background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
  color: var(--contrast-color);
}

.doctors .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 0px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 0px;
}

 .faq .faq-container .faq-item .faq-content ul {
  list-style: none;
  margin: 10px 0 0 0px; 
}  

/* .faq .faq-container .faq-item .faq-content ul li {
  position: relative;
  padding-left: 20px;
} */
/* 
.faq .faq-container .faq-item .faq-content ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
} */

.faq .faq-container .faq-item .faq-content * {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  height: auto;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Knowledge Section
--------------------------------------------------------------*/
.knowledge .knowledge-container .knowledge-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 0px;
  overflow: hidden;
}

.knowledge .knowledge-container .knowledge-item:last-child {
  margin-bottom: 0;
}

.knowledge .knowledge-container .knowledge-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin:10px 30px 10px 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center; 
} 
.knowledge .knowledge-container .knowledge-item h3 .num {
  color: var(--contrast-color);
  padding-right: 5px;
}
 
 
.knowledge .knowledge-container .knowledge-item .knowledge-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 0px;
}
.knowledge .knowledge-container .knowledge-item .knowledge-content *{
  color: #FFF;
}
.knowledge .knowledge-container .knowledge-item .knowledge-content h4{
  color: #FFF;
  margin: 15px 0;
  font-size: 16px;
}
.knowledge .knowledge-container .knowledge-item .knowledge-content ul {
  list-style: none;
  margin: 10px 0 0 10px;
  padding: 0 0 0 0px;
}

.knowledge .knowledge-container .knowledge-item .knowledge-content ul li {
  position: relative;
  padding-left: 20px;
}

.knowledge .knowledge-container .knowledge-item .knowledge-content ul li::before {
 
  color: #FFF;
}

.knowledge .knowledge-container .knowledge-item .knowledge-content * {
  margin-bottom: 0;
  overflow: hidden;
}

.knowledge .knowledge-container .knowledge-item .knowledge-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.knowledge .knowledge-container .knowledge-item .knowledge-toggle:hover {
  color: var(--accent-color);
}

.knowledge .knowledge-container .knowledge-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.knowledge .knowledge-container .knowledge-active h3,
.knowledge .knowledge-container .knowledge-active h3:hover {
  color: var(--contrast-color);
}

.knowledge .knowledge-container .knowledge-active .knowledge-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  height: auto;
  border-top: 1px solid #ffffff42;
}

.knowledge .knowledge-container .knowledge-active .knowledge-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 0px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 36px;
  transition: 0.4s;
  border-radius0px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Custom CSS Section
--------------------------------------------------------------*/
.sitename {
  font-weight: 600 !important;
  color: #0084ed;
}

.sitename span {
  font-weight: 300 !important;
  color: var(--heading-color);
}

.sitename small {
  font-weight: 400 !important;
  display: block;
  width: 100%;
  font-size: 16px;
  letter-spacing: 12px;
  color: #8d8f8f;
}

.form-appointment {
  padding: 20px 20px;
  background-color: #032641a3;
}

.form-appointment label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

.form-appointment-head {
  border-bottom:1px solid #ffffff24;
  margin-bottom: 15px;
}

.form-appointment-head h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 5px;
}

.form-appointment-head p {
  color: #e5e5e5;
  margin-bottom: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Treatments Section
--------------------------------------------------------------*/
.treatment .treatment-item {
  background-color: var(--surface-color);
  text-align: center;
  padding: 0px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

/* .treatment .treatment-item:hover {
  transform: translateY(-10px);
} */

.treatment .treatment-item:hover .treatment-img img {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s;
}

.treatment .treatment-item .treatment-img {
  margin: 0 auto;
  overflow: hidden;
}

.treatment .treatment-item .treatment-img img {
  width: auto;
  max-width: 100%;
  transition: all ease-in-out 0.3s;
}

.treatment .treatment-item-content h3 {
  font-weight: 500;
  padding: 12px 0;
  margin: 0;
  display: block;
  font-size: 18px;
}

.treatment .treatment-item-content p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background-color: var(--bg-dark-color);
  padding: 60px 0 !important;
}




/*--------------------------------------------------------------
# Hospitals Section
--------------------------------------------------------------*/
.hospital-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hospital-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.hospital-posts .post-box .post-img img {
  transition: 0.5s;
}

.hospital-posts .post-box .meta {
  margin-top: 15px;
}

.hospital-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.hospital-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hospital-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.hospital-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hospital-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.hospital-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.hospital-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.hospital-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

@media (max-width:991px) {
  .header .logo {
    width: 100%;
  }

  .header .branding {
    height: auto;
    padding: 10px 0;
  }

  .header .logo img {
    max-height: 35px;
  }
}

.parallax {
  background-size: cover;
}

.inner-page-banner .heading {
  padding: 150px 0 30px;
}

iframe .rc-anchor.rc-anchor-normal.rc-anchor-light {
  border: 0px !important;
  border-radius: 0px !important;
}

#hero{
  padding: 130px 0 50px;
  background-image: url(../img/world_map.png);
  background-repeat: no-repeat;
  background-position: 10%  0%;
  background-size: cover;
}
.banner-box{
  position: relative;
  width: 100%; 
  background-color: transparent; 
}
.banner-img{
  position: relative;
  perspective: 1000px;
  width: 100%; 
}
.banner-box .banner-img img{ 
    width: 100%; 
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: all 0.5s ease;
}
.banner-box:hover .banner-img img {
  transform: rotateY(-10deg) rotateX(3deg);
}
.banner-box .card{
  position: absolute;
  padding:5px 10px;
  background: #ffffffd6;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 0px;
}
.banner-box .card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.banner-box .one-card{
  top: 20%;
  left: 25%; 
}
.banner-box .two-card{
  bottom: 10%;
  left: 6%;
}
.banner-box .three-card{
  bottom:30%;
  right:2%;
}

.banner-box .card-inner{
  display: flex;
  align-items: center;
  gap:10px;
}
.banner-box .card .card-icon {
  font-size:28px; 
  border-right: 1px solid #0000003b;
  padding-right: 10px;
}
.banner-box .card .card-content h4 {
  font-size:14px; 
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.banner-box .card .card-content p {
  font-size:14px; 
  margin: 0;
}
.banner-content-box h1{
  font-weight: 400 !important;
}
/* ==== Blog Area ===== */

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; 
}

.blog-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-meta li a:hover {
  color: var(--tekprof-primary-color);
}

.blog-meta li:first-child a {
  font-weight: 600;
  color: var(--tekprof-primary-color);
}

.blog-meta li:not(:last-child):after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 20px;
  margin-right: 20px;
  background: var(--tekprof-border-color);
}

.blog-meta-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap:15px;
}

.blog-meta-two li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap:5px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px !important;
}
.blog-meta-two li:before {
    display: none;
}
.blog-meta-two li i {
  margin-right:4px;
  color: var(--accent-color);
}

.blog-meta-two li a:hover {
  color: var(--tekprof-primary-color);
}

.blog-meta-two li:not(:last-child) {
  margin-right:  0px;
}

.blog-item {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 130px;
}

@media only screen and (max-width: 375px) {
  .blog-item {
    padding-bottom: 155px;
  }
}

.blog-item .image img {
  width: 100%;
}

.blog-item .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 28px;
  background: white;
}

.blog-item .content .blog-meta {
  margin-bottom: 5px;
}

.blog-item .content .title {
  margin-bottom: 0;
}

@media only screen and (max-width: 375px) {
  .blog-item .content .title {
    font-size: 22px;
  }
}

.blog-item .content p {
  margin-top: 15px;
  margin-bottom: 26px;
}

/* Blog Item Two */
.blog-item-two {
  margin-bottom: 30px;
}

.blog-item-two .image img {
  width: 100%;
}

.blog-item-two .content {
  padding: 20px 26px 32px;
  -webkit-box-shadow: 10px 4px 60px rgba(173, 173, 173, 0.2);
  box-shadow: 10px 4px 60px rgba(173, 173, 173, 0.2);
}

@media only screen and (max-width: 375px) {
  .blog-item-two .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.blog-item-two .content .blog-meta {
  margin-bottom: 8px;
}

.blog-item-two .content .title a:hover {
  color: var(--tekprof-heading-color);
  text-decoration: underline;
}

.blog-item-two .content .read-more:hover {
  color: var(--tekprof-heading-color);
}

.admin-info {
  margin-top: 16px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.admin-info .image {
  margin-right: 10px;
}

.admin-info .image img {
  border-radius: 50%;
}

.admin-info .name a {
  font-weight: 600;
  color: var(--tekprof-heading-color);
}

/* Blog Item Three */
.blog-three-left-content {
  max-width: 360px;
}

.blog-item-three {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .blog-item-three .image {
    margin-bottom: 20px;
  }
}

.blog-item-three .image img {
  width: 100%;
}

.blog-item-three .title {
  margin-bottom: 15px;
}

.blog-item-three .theme-btn {
  margin-top: 15px;
  color: var(--tekprof-base-color);
  background: transparent;
  border: 1px solid var(--tekprof-border-color);
}

.blog-item-three .theme-btn.btn-small {
  padding: 5px 27px;
}

.blog-item-three .theme-btn:hover {
  color: white;
  background: var(--tekprof-primary-color);
  border-color: transparent;
}

.blog-standard-item:not(:last-child) {
  margin-bottom: 50px;
}

.blog-standard-item .blog-meta-two {
  padding-top: 27px;
  padding-bottom: 13px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--tekprof-border-color);
}

.blog-standard-item h3 {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1199px) {
  .blog-standard-item h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .blog-standard-item h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .blog-standard-item h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 375px) {
  .blog-standard-item h3 {
    font-size: 18px;
  }
}

.blog-standard-item .blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--tekprof-base-color);
  padding: 4px 26px;
  margin-top: 14px;
  display: inline-block;
  border: 1px solid var(--tekprof-border-color);
}

.blog-standard-item .blog-read-more:hover {
  color: white;
  background: var(--tekprof-primary-color);
  border-color: var(--tekprof-primary-color);
}

.blog-sidebar {
  max-width: 350px;
}

/* Blog Details */
.blog-details-image img {
  width: 100%;
}

.blog-details-content h3 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
  .blog-details-content h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-details-content h3 {
    font-size: 26px;
  }
}

.blog-details-content h4 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.blog-details-content h5 {
  margin-top: 22px;
  margin-bottom: 12px;
}

blockquote {
  line-height: 1.48;
  letter-spacing: -0.02em;
  background: #FAF8F6;
  padding: 35px 70px 30px;
}

@media only screen and (min-width: 1200px) {
  blockquote {
    font-size: 27px;
  }
}

@media only screen and (max-width: 767px) {
  blockquote {
    font-size: 22px;
    padding-right: 20px;
    padding-left: 35px;
  }
}

@media only screen and (max-width: 575px) {
  blockquote {
    font-size: 20px;
  }
}

@media only screen and (max-width: 479px) {
  blockquote {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

blockquote .blockquote-footer {
  margin-bottom: 0;
  margin-top: 25px;
  font-size: 0.75em;
  color: var(--tekprof-base-color);
}

blockquote .blockquote-footer:before {
  content: '————';
  margin-right: 18px;
  letter-spacing: -4px;
}

.tag-share {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tag-share .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.tag-share .item h6 {
  font-size: 18px;
  margin-right: 20px;
}

/* Next Prev Blog */
.next-prev-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.next-prev-blog .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 330px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.next-prev-blog .item .image {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 100px;
  margin-right: 30px;
}

@media only screen and (max-width: 375px) {
  .next-prev-blog .item .image {
    max-width: 75px;
    margin-right: 20px;
  }
}

.next-prev-blog .item h5 {
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 2px;
}

@media only screen and (max-width: 375px) {
  .next-prev-blog .item h5 {
    font-size: 16px;
  }
}

.next-prev-blog .item .date {
  display: block;
}


/* ==== Hospitals Area ===== */

.hospital-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hospital-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hospital-meta li a:hover {
  color: var(--tekprof-primary-color);
}

.hospital-meta li:first-child a {
  font-weight: 600;
  color: var(--tekprof-primary-color);
}

.hospital-meta li:not(:last-child):after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 20px;
  margin-right: 20px;
  background: var(--tekprof-border-color);
}

.hospital-meta-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.hospital-meta-two li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
  padding:0px;
  gap:5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hospital-meta-two li:before {
  display: none;
}
.hospital-meta-two li i {
  color: var(--accent-color);
  margin-right:3px;
}

.hospital-meta-two li a:hover {
  color: var(--tekprof-primary-color);
}

.hospital-meta-two li:not(:last-child) {
  margin-right:5px;
}

.hospital-item {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 130px;
}

@media only screen and (max-width: 375px) {
  .hospital-item {
    padding-bottom: 155px;
  }
}

.hospital-item .image img {
  width: 100%;
}

.hospital-item .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 28px;
  background: white;
}

.hospital-item .content .hospital-meta {
  margin-bottom: 5px;
}

.hospital-item .content .title {
  margin-bottom: 0;
}

@media only screen and (max-width: 375px) {
  .hospital-item .content .title {
    font-size: 22px;
  }
}

.hospital-item .content p {
  margin-top: 15px;
  margin-bottom: 26px;
}

/* hospital Item Two */
.hospital-item-two {
  margin-bottom: 30px;
}

.hospital-item-two .image img {
  width: 100%;
}

.hospital-item-two .content {
  padding: 20px 26px 32px;
  -webkit-box-shadow: 10px 4px 60px rgba(173, 173, 173, 0.2);
  box-shadow: 10px 4px 60px rgba(173, 173, 173, 0.2);
}

@media only screen and (max-width: 375px) {
  .hospital-item-two .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hospital-item-two .content .hospital-meta {
  margin-bottom: 8px;
}

.hospital-item-two .content .title a:hover {
  color: var(--tekprof-heading-color);
  text-decoration: underline;
}

.hospital-item-two .content .read-more:hover {
  color: var(--tekprof-heading-color);
}

.admin-info {
  margin-top: 16px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.admin-info .image {
  margin-right: 10px;
}

.admin-info .image img {
  border-radius: 50%;
}

.admin-info .name a {
  font-weight: 600;
  color: var(--tekprof-heading-color);
}

/* hospital Item Three */
.hospital-three-left-content {
  max-width: 360px;
}

.hospital-item-three {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .hospital-item-three .image {
    margin-bottom: 20px;
  }
}

.hospital-item-three .image img {
  width: 100%;
}

.hospital-item-three .title {
  margin-bottom: 15px;
}

.hospital-item-three .theme-btn {
  margin-top: 15px;
  color: var(--tekprof-base-color);
  background: transparent;
  border: 1px solid var(--tekprof-border-color);
}

.hospital-item-three .theme-btn.btn-small {
  padding: 5px 27px;
}

.hospital-item-three .theme-btn:hover {
  color: white;
  background: var(--tekprof-primary-color);
  border-color: transparent;
}

.hospital-standard-item:not(:last-child) {
  margin-bottom: 50px;
}

.hospital-standard-item .hospital-meta-two {
  padding-top: 27px;
  padding-bottom: 13px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--tekprof-border-color);
}

.hospital-standard-item h3 {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1199px) {
  .hospital-standard-item h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .hospital-standard-item h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .hospital-standard-item h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 375px) {
  .hospital-standard-item h3 {
    font-size: 18px;
  }
}

.hospital-standard-item .hospital-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--tekprof-base-color);
  padding: 4px 26px;
  margin-top: 14px;
  display: inline-block;
  border: 1px solid var(--tekprof-border-color);
}

.hospital-standard-item .hospital-read-more:hover {
  color: white;
  background: var(--tekprof-primary-color);
  border-color: var(--tekprof-primary-color);
}

.hospital-sidebar {
  max-width: 350px;
}

/* hospital Details */
.hospital-details-image img {
  width: 100%;
}

.hospital-details-content h3 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
  .hospital-details-content h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .hospital-details-content h3 {
    font-size: 26px;
  }
}

.hospital-details-content h4 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.hospital-details-content h5 {
  margin-top: 22px;
  margin-bottom: 12px;
}

blockquote {
  line-height: 1.48;
  letter-spacing: -0.02em;
  background: #FAF8F6;
  padding: 35px 70px 30px;
}

@media only screen and (min-width: 1200px) {
  blockquote {
    font-size: 27px;
  }
}

@media only screen and (max-width: 767px) {
  blockquote {
    font-size: 22px;
    padding-right: 20px;
    padding-left: 35px;
  }
}

@media only screen and (max-width: 575px) {
  blockquote {
    font-size: 20px;
  }
}

@media only screen and (max-width: 479px) {
  blockquote {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

blockquote .blockquote-footer {
  margin-bottom: 0;
  margin-top: 25px;
  font-size: 0.75em;
  color: var(--tekprof-base-color);
}

blockquote .blockquote-footer:before {
  content: '————';
  margin-right: 18px;
  letter-spacing: -4px;
}

.tag-share {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tag-share .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.tag-share .item h6 {
  font-size: 18px;
  margin-right: 20px;
}

/* Next Prev hospital */
.next-prev-hospital {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.next-prev-hospital .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 330px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.next-prev-hospital .item .image {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 100px;
  margin-right: 30px;
}

@media only screen and (max-width: 375px) {
  .next-prev-hospital .item .image {
    max-width: 75px;
    margin-right: 20px;
  }
}

.next-prev-hospital .item h5 {
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 2px;
}

@media only screen and (max-width: 375px) {
  .next-prev-hospital .item h5 {
    font-size: 16px;
  }
}

.next-prev-hospital .item .date {
  display: block;
}

/*******************************************************/
/***************** ## Sidebar Widgets *****************/
/*******************************************************/
.main-sidebar {
  background: white;
  padding: 50px 40px;
  -webkit-box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 1400px) {
  .main-sidebar {
    margin-left: -35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-sidebar {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (max-width: 479px) {
  .main-sidebar {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.main-sidebar .widget-cta {
  padding: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-sidebar .widget-cta {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (max-width: 375px) {
  .main-sidebar .widget-cta {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-sidebar .widget-cta h4 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 375px) {
  .main-sidebar .widget-cta h4 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-sidebar .widget-cta .theme-btn {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.widget:not(:last-child) {
  margin-bottom: 50px;
}

.widget-title {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 50px;
  height: 2px;
  background: #020626;
}

.widget-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--tekprof-border-color);
}

.widget-search form input {
  padding: 0;
  border: none;
  font-weight: 400;
  background: transparent;
}

.widget-search form button {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background: transparent;
}

.widget-category li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--tekprof-heading-font);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.widget-category li:not(:last-child) {
  margin-bottom: 8px;
}

.widget-category li a:hover {
  text-decoration: underline;
}

.widget-news li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-news li:not(:last-child) {
  margin-bottom: 20px;
}

.widget-news li .image {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 100px;
  margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-news li .image {
    max-width: 80px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 375px) {
  .widget-news li .image {
    max-width: 80px;
    margin-right: 15px;
  }
}

.widget-news li .content h5 {
  margin-bottom: 0;
  line-height: 1.3;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-news li .content h5 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 479px) {
  .widget-news li .content h5 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 375px) {
  .widget-news li .content h5 {
    font-size: 16px;
  }
}

.widget-news li .content .date {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.tag-clouds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
}

.tag-clouds a {
  font-size: 14px;
  padding: 0 14px;
  margin: 10px 10px 0 0;
  border: 1px solid var(--tekprof-border-color);
}

.tag-clouds a:hover {
  color: white;
  background: var(--tekprof-primary-color);
  border-color: var(--tekprof-primary-color);
}

.widget-cta {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 390px;
  padding: 35px 35px 30px;
  background-size: cover;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 375px) {
  .widget-cta {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.widget-cta::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 6, 38, 0)), to(#020626));
  background: -webkit-linear-gradient(top, rgba(2, 6, 38, 0) 0%, #020626 100%);
  background: -o-linear-gradient(top, rgba(2, 6, 38, 0) 0%, #020626 100%);
  background: linear-gradient(180deg, rgba(2, 6, 38, 0) 0%, #020626 100%);
}

.widget-cta h3 {
  color: white;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 22px;
}

@media only screen and (max-width: 479px) {
  .widget-cta h3 {
    font-size: 26px;
  }
}


body.treatment-page section ul{ 
   margin-left: 30px;
   margin-bottom: 20px;
}

body.treatment-page section ul li{
   list-style: circle !important; 
   margin-bottom:3px;
}

body.treatment-page section ul li::marker {
  font-size:24px;
}

section ul {
  --icon-space: 1.3em;
  list-style: none; 
  margin-bottom: 20px;
}

section ul li {
  padding-left: var(--icon-space);
  padding: 0 0 0 20px;
  line-height: 2;
}

section ul li:before {
  content: "\f00c";  
  color: var(--accent-color);
  font-family: 'Font Awesome 6 Pro';
  display: inline-block;
  margin-left: calc( var(--icon-space) * -1 );
  width: var(--icon-space); 
  font-weight: 600;
}
  
section.about ul li:before {
  content: "\f2f7" !important;   
  font-weight: unset !important;
}
section.faq  ul li:before {
  content: "\f00c" !important;   
  font-weight: unset !important;
  color: var(--contrast-color) !important;
}

.cta.section.bg-light .btn-theme-light-outline{
    color:var(--accent-color) !important;
}
.cta.section.bg-light .btn-light:hover{
  color:var(--contrast-color) !important;
}