/*[ General ] */
html {
    height: 100%;
}

body {
    font-family: var(--p_font_family);
    font-size: 18px;
    font-weight: 400;
    color: var(--darkgray-color) !important;
    background-color: var(--white) !important;
    min-height: 100%;
    overflow-x: hidden;
    background-color: var(--off-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--darkgray-color) !important;
    line-height: 1.4;
}

h1,
.h1 {
    font-size: 4rem;
}

h2,
.h2 {
    font-size: 3rem;
}

h3,
.h3 {
    font-size: 2rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.375rem;
}

h6,
.h6 {
    font-size: 1.125rem;
}

a {
    color: var(--primary-color) !important;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    color: var(--darkgray-color) !important;
}

hr {
    border-top: 1px solid var(--border-color) !important;
}

dl,
ol,
ul {
    margin-left: 0;
    padding: 0;
    list-style: none;
}

input,
button,
a {
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

input,
input:focus,
button,
button:focus {
    outline: none;
    box-shadow: none;
}

input[type="file"] {
    height: auto;
}

input[type="text"],
input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea.form-control {
    resize: vertical;
}

label.col-form-label {
    font-weight: 600;
    line-height: 1.2;
}

section {
    padding: 5rem 0;
}

body::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    background-color: var(--extralightgray-color) !important;
}

body::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
    width: 10px;
    background-color: var(--extralightgray-color) !important;
}

body::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color) !important;
}

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

img.alignright {
    margin: 0 0 1em 1em;
}

img.alignleft {
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

p.med-text {
    font-size: 1.1rem;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.primary-font {
    font-family: var(--head1_font_family);
}

.secondary-font {
    font-family: var(--p_font_family);
}

#single-blogs h2,
#single-blogs h3,
#single-blogs h4,
#single-blogs h5,
#single-blogs h6 {
    font-family: var(--head1_font_family);
}

/*[ Brand Text Color ]*/
.text-black {
    color: var(--black);
}

.text-white {
    color: var(--white) !important;
}

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

.text-warm-brown {
    color: var(--warm-brown);
}

.text-soft-green {
    color: var(--soft-green);
}

.text-medium-gray {
    color: var(--medium-gray);
}

.text-earthy-brown {
    color: var(--earthy-brown);
}

.text-muted-green {
    color: var(--muted-green);
}

.text-light-grayish {
    color: var(--light-grayish),
}

.text-grayish-green {
    color: var(--grayish-green);
}

.text-soft-gray {
    color: var(--border-color) !important;
}

.text-off-white {
    color: var(--off-white);
}


/*[ Brand BG Color ]*/

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

.bg-white {
    background-color: var(--white) !important;
}

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

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

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

.bg-soft-green-20 {
    background-color: var(--soft-green-20);
}

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

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

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

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

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

.bg-soft-gray {
    background-color: var(--border-color) !important;
}

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

.bg-extra-lightgray {
    background-color: var(--extra-lightgray-color) !important;
}

.border-soft-gray {
    border-color: var(--border-color) !important;
}

.btn {
    font-size: 1rem;
    padding: 16px 24px 16px 24px;
    border-radius: 15px;
    font-weight: 400;
    position: relative;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    text-transform: uppercase;
}

.btn:hover,
.btn:focus,
.btn:active {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-white {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: 1px solid var(--primary-color) !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary-color-bordered {
    background-color: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: 1px solid var(--primary-color) !important;
}

.btn-primary-color-bordered:hover,
.btn-primary-color-bordered:focus,
.btn-primary-color-bordered:active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

/*[ Helper Classes ]*/
.box-shadow {
    box-shadow: 0 5px 16px rgb(0 22 84 / 15%);
    -webkit-box-shadow: 0 5px 16px rgb(0 22 84 / 15%);
}

.entry-content ul,
.entry-content ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 40px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 0.8rem;
}

.entry-content ul.lg-text li,
.entry-content ol.lg-text li {
    font-size: 1.2rem;
    font-weight: 600;
}

.link {
    color: var(--darkgray-color) !important;
    text-transform: uppercase;
    font-size: .875rem;
    border-bottom: 1px solid currentColor;
}

.link:hover {
    color: var(--primary-color) !important;
    border-bottom: 1px solid currentColor;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-title h2,
.title {
    margin-bottom: 1rem;
    font-family: var(--head1_font_family);
}

.section-title h2 b,
.title b {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-style: italic;
}

.section-title .subheading {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.section-title .subheading.text-left {
    padding-right: 120px;
}

.section-title .subheading.text-center {
    padding-left: 120px;
    padding-right: 120px;
}

.section-title .subheading.text-left:after,
.section-title .subheading.text-center:after,
.section-title .subheading.text-center:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -1px;
    height: .5px;
    background-color: var(--border-color) !important;
    width: 100px
}

.section-title .subheading.text-center:before {
    right: auto;
    left: 0;
}

.section-title .subheading.text-white:before,
.section-title .subheading.text-white:after {
    background-color: var(--white) !important;
}

.radius-0 {
    border-radius: 0 !important;
}

.radius-25 {
    border-radius: .25rem !important;
}

.radius-50 {
    border-radius: .5rem !important;
}

.radius-10 {
    border-radius: 1rem !important;
}

.letter-spacing-0 {
    letter-spacing: 0;
}

.font-weight-100 {
    font-weight: 100 !important;
}

.font-weight-200 {
    font-weight: 200 !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.form-control {
    border-color: var(--border-color) !important;
    box-shadow: none;
    font-size: 15px;
    height: 48px;
    border-radius: 4px;
}

textarea.form-control {
    min-height: 120px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color) !important;
}

.auto-height {
    height: auto !important;
    min-height: auto !important;
}

/*Social Icons*/
.social-icons a {
    margin: 0 .6rem;
}

.social-icons a .fab {
    color: var(--lightgray-color) !important;
    font-size: 1.4rem;
}

.header .social-icons a .fab {
    color: var(--white) !important;
}

.social-icons a:hover {
    opacity: 0.8;
    border-bottom: 0;
}

/*[ Header ]*/
.header {
    transition: all 0.5s;
    background-color: var(--white) !important;
    min-height: 100px;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 5px 30px rgb(0 22 84 / 10%);
    -webkit-box-shadow: 0 5px 30px rgb(0 22 84 / 10%);
}

.tophead {
    padding: .625rem 0;
    font-size: 0.875rem;
}

.tophead a {
    color: var(--white) !important;
    border-color: var(--white) !important;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid currentColor;
}

.tophead a:hover {
    /* opacity: 0.6; */
}

.tophead .appointment-text a {
    color: var(--white) !important;
    border-color: var(--white) !important;
    padding: .125rem .8rem;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-block;
}

.tophead .appointment-text a:hover {
    color: var(--primary-color) !important;
    background-color: var(--white) !important;
}

.header .navbar {
    padding: 1.25rem 0;
}

.header .logo img {
    padding: 0;
    margin: 0;
    transition: all 0.5s;
    max-height: 30px;
}

.mobile_btn,
.mobile_btn:hover,
.mobile_btn:active,
.mobile_btn:focus {
    color: var(--gray-color) !important;
    font-size: 2.2rem;
}

.mobile_btn span {
    height: 2px;
    background-color: var(--gray-color) !important;
    margin: 8px 0;
    display: block;
    width: 24px;
}

/*[ Navigation Menu ]*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul.menu>li {
    position: relative;
    white-space: nowrap;
    display: inline-block;
    margin: 0 .8rem;
}

/*.nav-menu ul>li:last-child {
      margin-right: 0;
  }
  */
.nav-menu a {
    display: block;
    position: relative;
    color: var(--darkgray-color) !important;
    padding: .3rem 0;
    margin: 0;
    transition: 0.3s;
}

.nav-menu li a {
    color: var(--darkgray-color) !important;
    font-size: 1rem;
    text-decoration: none;
}

.nav-menu li a:hover {
    color: var(--primary-color) !important;
}

.nav-menu li a.btn {
    padding: 10px 24px 10px 24px !important;
    color: var(--white) !important;
}

.nav-menu li a.btn:hover,
.nav-menu li a.btn:focus,
.nav-menu li a.btn:active {
    padding: 10px 24px 10px 24px !important;
    color: var(--primary-color) !important;
}

.nav-menu ul.menu>li.current-menu-item>a {
    color: var(--darkgray-color) !important;
    font-weight: 600;
}

.nav-menu .menu-item-has-children>a {
    padding-right: 12px;
}

.nav-menu .menu-item-has-children ul {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: var(--primary-color) !important;
    -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    transition: ease all 0.3s;
    border-radius: .25rem;
    /*border: 2px solid #585858;*/
}

.nav-menu .menu-item-has-children ul:before {
    background-color: var(--primary-color) !important;
    content: "";
    width: 18px;
    height: 18px;
    left: 18px;
    top: -8px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -o-transition: all .2s ease 0;
    transition: all .2s ease 0;
    -webkit-transition: all .2s ease 0;
    -moz-transition: all .2s ease 0;
}

.nav-menu .menu-item-has-children ul li ul.sub-menu {
    left: 100%;
    top: 0;
}

.nav-menu .menu-item-has-children ul li ul.sub-menu:before {
    display: none;
}

.nav-menu .menu-item-has-children:hover>ul {
    opacity: 1;
    visibility: visible;
}

.nav-menu .menu-item-has-children li {
    min-width: 250px;
    position: relative;
    max-width: 250px;
}

.nav-menu .menu-item-has-children ul a {
    padding: 8px 20px;
    text-transform: none;
    color: var(--white) !important;
    margin: 0;
    text-align: left;
    white-space: break-spaces;
}

/*.nav-menu .menu-item-has-children ul .current-menu-item a {
      font-weight: 600;
  }*/

.nav-menu .menu-item-has-children ul a:hover,
.nav-menu .menu-item-has-children ul .current-menu-item>a,
.nav-menu .menu-item-has-children ul li:hover>a {
    color: var(--white) !important;
    opacity: .6;
}

.nav-menu .menu-item-has-children>a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: transparent var(--darkgray-color) var(--darkgray-color) transparent;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: border .3s;
}

.nav-menu ul.menu>li.current-menu-item.menu-item-has-children>a:after,
.nav-menu .menu-item-has-children:hover>a:after {
    border-color: transparent var(--primary-color) var(--primary-color) transparent;
}

.nav-menu .menu-item-has-children ul.sub-menu .menu-item-has-children>a:after {
    margin-top: -2px;
    right: 15px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: transparent var(--darkgray-color) var(--darkgray-color) transparent;
}

/*Mobile Menu*/
.mobmenu {
    background-color: var(--white) !important;
    bottom: 0;
    left: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    margin-left: -100%;
    width: 350px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1041;
}

.mobmenu.opened {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mobmenu-inner {
    height: 100%;
    transition: all 0.2s ease-in-out 0s;
}

.mobmenu-menu {
    padding: 1rem 0;
    padding-top: 60px;
}

.mobmenu-menu a.close_mobmenu {
    position: absolute;
    right: 24px;
    top: 24px;
}

.mobmenu-menu a.close_mobmenu i {
    font-size: .8rem;
    color: var(--darkgray-color) !important;
}

.mobmenu-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.mobmenu-menu ul ul {
    display: none;
}

.mobmenu-menu li a {
    color: var(--darkgray-color) !important;
    display: block;
    font-size: 18px;
    height: auto;
    padding: .8rem 1.5rem;
    position: relative;
}

.mobmenu-menu li a.btn {
    padding-left: 0;
    padding-right: 0;
}

.mobmenu-menu li>a {
    border-bottom: 1px dashed var(--border-color) !important;
}

.mobmenu-menu li a:hover,
.mobmenu-menu li.active a {
    color: var(--primary-color) !important;
}

.mobmenu-menu li.menu-item-has-children>a:after {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    margin-top: -5px;
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: transparent var(--lightgray-color) var(--lightgray-color) transparent;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: border .3s;
}

.mobmenu-menu ul ul a:before {
    content: '-';
    position: absolute;
    left: 1.5rem;
    padding-right: .8rem;
}

.mobmenu-menu ul ul a {
    padding-left: 2.5rem;
}

.mobmenu-menu a {
    line-height: 1.3;
    transition: unset;
    -moz-transition: unset;
    -o-transition: unset;
    -ms-transition: unset;
    -webkit-transition: unset;
}

.mobmenu-menu li a.btn {
    color: var(--white) !important;
    border-bottom-style: solid;
}

.mobmenu-menu li a.btn:hover,
.mobmenu-menu li a.btn:active,
.mobmenu-menu li a.btn:focus {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.slide-nav .mobmenu {
    margin-left: 0;
}

.mobmenu-overlay {
    display: none;
    position: fixed;
    z-index: 90;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.6);
}

.mobmenu-overlay.opened {
    display: block;
}

.mobmenu-menu.opened {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    margin-left: 0;
}

html.menu-opened {
    overflow: hidden;
}

html.menu-opened body {
    overflow: hidden;
}

/*Hero Banner*/
#herobanner {
    width: 100%;
    min-height: 650px;
    height: auto;
    position: relative;
}

#innerbanner {
    min-height: 300px;
    height: auto;
    position: relative;
}

#innerbanner.no-bg {
    height: auto;
}

.bannerbg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-fixed {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-top {
    background-position: top center;
}

.banner-center {
    background-position: center center;
}

.auto-height {
    height: auto !important;
    min-height: auto !important;
}

.hero-text {
    position: relative;
    width: 100%;
    min-height: inherit;
    height: auto;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#herobanner .hero-text {
    min-height: 650px;
    padding: 60px 0;
    box-sizing: border-box;
}

#herobanner .hero-text>.container {
    width: 100%;
}

.hero-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.10);
}

#innerbanner .hero-text:before {
    background-color: var(--primary-color) !important;
    opacity: .6;
}

.hero-text.no-overlay:before {
    display: none;
}

.hero-text>div {
    position: relative;
}

#herobanner h1 {
    font-size: 4.5rem;
}

#herobanner h1 strong {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-style: italic;
}

/*About*/
#educational-logos img {
    max-height: 50px;
}

/*Clinical Focus*/
#clinical-focus {
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--soft-green-20) 50%, var(--off-white) 50%) !important;
}

.single-clinical-focus .focus-img:hover img {
    opacity: .8;
}

.single-clinical-focus .focus-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    /* max-height: 220px;
    min-height: 220px; */
}

.single-clinical-focus .focus-info h4 a {
    color: var(--dark-gray);
}

.single-clinical-focus .focus-info h4 a:hover {
    color: var(--primary-color) !important;
}

/*FAQ*/
.faq-accordion .card {
    border-color: var(--border-color) !important;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.single-clinical-focus {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}


.focus-img img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.clinical-focus-list.clinic-4 .focus-img img {
    height: 260px;
}

.clinical-focus-list.clinic-4 .col-lg-9 .col-lg-4:first-child {
    margin-bottom: 20px !important;
}

.clinical-focus-list.clinic-4 .col-lg-9 .col-lg-4:nth-child(2) {
    margin-bottom: 20px !important;
}

.clinical-focus-list.clinic-4 .col-lg-9 .col-lg-4 {
    width: 50%;
}

.faq-accordion .card .card-header {
    border-bottom: 0;
    position: relative;
    background-color: transparent;
}

.faq-accordion .card .card-header h4 {
    font-weight: 400;
}

.faq-accordion .card .card-header h4 a {
    display: block;
    color: #666;
    font-size: 1.2rem;
    padding-right: 3rem;
}

.faq-accordion .card .card-header h4 a:not(.collapsed) {
    color: var(--primary-color) !important;
    padding-block: 0;
}

/*.faq-accordion .card .card-body {
  border-top: 1px solid var(--border-color) !important;
}*/
.faq-accordion .card .card-header .fa {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 20px;
    text-align: center;
    line-height: 24px;
    width: auto;
    font-size: 22px;
    transition: transform .3s ease;
    color: var(--primary-color) !important;
}

.faq-accordion .card .card-header a::after {
    display: none;
    /* Remove default Bootstrap caret */
}

.faq-accordion .card .card-header a .fa {
    margin-left: auto;
    /* Position the icon to the right */
    transition: transform 0.3s ease;
}

.faq-accordion .card .card-header a:not(.collapsed) .fa-plus {
    display: none;
    /* Hide the plus icon when expanded */
}

.faq-accordion .card .card-header a:not(.collapsed) .fa-minus {
    display: inline;
    /* Show the minus icon when expanded */
}

.faq-accordion .card .card-header a.collapsed .fa-minus {
    display: none;
    /* Hide the minus icon when collapsed */
}

/*Appointment Block*/
.appointment-block {
    height: 500px;
}

.appointment-block .hero-text:before {
    background-color: var(--lightgray-color) !important;
    opacity: .5;
}

/*Service*/
.single-service .service-info {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    height: 100%;
    justify-content: space-between;
    max-height: 200px;
}

.checkmark-list {
    list-style: none !important;
}

.checkmark-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.checkmark-list li {
    padding: 8px 0px 8px 32px !important;
    position: relative;
}

.services-container {
    position: relative;
}

.services-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary-color) !important;
    z-index: -1;
    display: none;
}

.services-container .services-image img {
    min-height: 500px;
}

.services-tab .nav-link {
    background-color: transparent;
    text-align: left;
    font-size: 22px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    opacity: .7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 2px;
    font-family: "Playfair Display", serif;
    padding: 1.5rem 0;
}

.services-tab .nav-link i {
    font-size: 1.2rem;
}

.services-tab .nav-link:last-child {
    border: none;
}

.services-tab .nav-link.active {
    opacity: 1;
    background-color: transparent;
}

.services-accordion .card {
    border-color: var(--border-color) !important;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0;
}

.services-accordion .card .card-header {
    border-bottom: 0;
    position: relative;
    background-color: var(--primary-color) !important;
    padding: 1rem;
    border-radius: 0;
}

.services-accordion .card .card-header h4 {
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.services-accordion .card .card-header h4 a {
    display: flex;
    color: var(--white) !important;
    justify-content: space-between;
    align-items: center;
}

.services-accordion .card .card-header h4 a:not(.collapsed) {
    color: var(--white) !important;
    padding-block: 0;
}

.services-accordion .card .card-header h4 a:not(.collapsed) .fa-arrow-down {
    rotate: 180deg;
}

.services-accordion .card .card-body .services-image img {
    min-height: auto;
}

/*Blog*/
.single-blog {
    border: 1px solid var(--border-color) !important;
    border-radius: 4px;
}

.single-blog .post-details {
    padding: 1.5rem;
}

.single-blog .post-details a {
    color: var(--darkgray-color) !important;
}

.single-blog .post-details a:hover {
    color: var(--primary-color) !important;
}

.single-blog .post-thumbnail {
    position: relative;
}

.single-blog .post-thumbnail img {
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

/* .single-blog:hover .post-thumbnail img {
  transform: scale(1.025);
} */
.single-blog .post-thumbnail .blog-date {
    position: absolute;
    right: 1rem;
    bottom: -1rem;
    color: #fff;
    background-color: var(--primary-color) !important;
    min-width: 70px;
    max-width: 70px;
    text-align: center;
    padding: .5rem;
    font-size: .875rem;
    font-weight: 400;
    text-transform: uppercase;
}

.single-blog .post-thumbnail .blog-date span {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    display: block
}

#single-blogs .tags b {
    background-color: var(--extra-lightgray-color) !important;
    color: var(--dark-gray);
    border-radius: 4px;
    font-size: 90%;
    padding: 0 .25rem;
    font-weight: 400;
}

/*Clinical Focus*/
.clinical-focus-block:nth-child(even) .clinical-focus-img {
    order: 2;
}

/*Blog*/
.blog-sidebar {
    position: sticky;
    top: 190px;
}

.blog-widget {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color) !important;
}

.blog-widget:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.blog-widget:last-child {
    margin-bottom: 0;
}

.blog-widget-form input {
    min-height: 58px;
}

.blog-widget .latest-posts h6 a {
    color: var(--dark-gray);
}

.blog-widget .latest-posts h6 a:hover {
    color: var(--primary-color) !important;
}

.blog-widget .latest-posts .post-name p {
    margin-bottom: 0;
}

.blog-widget .latest-posts li {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color) !important;
}

.blog-widget .latest-posts li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

/*Footer*/
.footer {
    background-color: var(--extra-lightgray-color) !important;
}

.footer a {
    color: var(--darkgray-color) !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
    /* border-bottom: 1px solid currentColor; */
}

.footer-contact-info a,
.copyright a {
    border-bottom: 1px solid currentColor;
}

.footer-links h4 {
    font-family: var(--head1_font_family);
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.footer-links a {
    font-size: 1rem;
}

.footer-logo img {
    max-height: 30px;
}

.footer-logo a {
    color: var(--primary-color) !important;
    font-size: 24px;
    font-weight: bold;
}

.footer-logo a:hover {
    text-decoration: none;
    border-bottom: 0;
}

.footer-links li {
    margin-bottom: .8rem;
}


/**********************************************************/


/*[ Brand Text Color ]*/
.text-darkgray {
    color: var(--darkgray-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.text-lightgray {
    color: var(--lightgray-color) !important;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

/*[ Brand BG Color ]*/
.bg-darkgray {
    background-color: var(--darkgray-color) !important;
}

.bg-gray {
    background-color: var(--gray-color) !important;
}

.bg-lightgray {
    background-color: var(--lightgray-color) !important;
}

.bg-extra-lightgray {
    background-color: var(--extra-lightgray-color) !important;
}

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

.bg-primary-color-20 {
    background-color: color-mix(in srgb, var(--primary-color) 15%, white 20%);
}

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

.bg-white {
    background-color: var(--white) !important;
}

.top-section1 {
    clear: both;
    display: block;
    background: var(--white) !important;
    text-align: center;
    padding: 7px;
    color: var(--darkgray-color) !important;
    font-size: 18px;
    font-weight: 500;
}

.top-section1 a {
    text-decoration: underline;
    color: var(--darkgray-color) !important;
    font-weight: 700;
}

img.about-image {
    width: 100%;
}

.mobmenu-inner.slimscroll {
    overflow-y: auto;
}

.full-address:first-child {
    /* border-bottom: 1px solid #eee; */
    padding-bottom: 25px;
}

.mobmenu-menu li.menu-item-has-children {
    position: relative;
}

.mobmenu-menu li.menu-item-has-children span.arrow {
    position: absolute;
    right: 10px;
    top: 8px;
    z-index: 9;
    background: #fff;
    cursor: pointer;
    width: 34px;
    height: 23px;
}

.mobmenu-menu li.menu-item-has-children span.arrow:after {
    content: "";
    position: absolute;
    right: 14px;
    top: 7px;
    margin-top: 0;
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: transparent var(--lightgray-color) var(--lightgray-color) transparent;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: border .3s;
}

/***************************************/

.how-it-works-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 85%;
    margin: 20px auto 0;
    gap: 10px;
}

.how-it-works-container .how-it-works-step {
    display: flex;
    align-items: center;
    width: 33.33333333%;
}

.how-it-works-container .how-it-works-step .step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color) !important;
    border-radius: 50%;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    border-style: double;
    border-width: 5px;
}

.how-it-works-container .how-it-works-step p {
    font-family: var(--p_font_family) !important;
    font-size: 18px !important;
    flex: 1;
    text-align: left;
    padding-left: 10px;
    text-transform: none;
}

@media (max-width:767px) {
    .how-it-works-container {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .how-it-works-container .how-it-works-step {
        width: 100%;
    }

}

/*************************************/

#educational-logos {
    gap: 10px !important;
    flex-wrap: wrap;
    padding-left: 12px;
}

div#educational-logos .ed-logo {
    border: 1px solid #e2e2e2 !important;
    text-align: center !important;
    padding: 5px;
    flex-basis: 23.24%;
}



.clinical-focus-list.clinic-1 .first-clinical-banner {
    width: 50%;
}

.clinical-focus-list.clinic-1 .col-lg-9 {
    width: 50%;
}

.clinical-focus-list.clinic-2 .first-clinical-banner {
    width: 50%;
}

.clinical-focus-list.clinic-2 .col-lg-9 {
    width: 50%;
}

.clinical-focus-list.clinic-4 .first-clinical-banner {
    width: 50%;
}

.clinical-focus-list.clinic-4 .col-lg-9 {
    width: 50%;
}

.services-tab-list {
    display: flex;
    background-color: var(--primary-color) !important;
}

.services-tab-list .nav-pills {
    justify-content: center;
    width: 100%;
}

/*************************************/

@media (max-width:767px) {
    #educational-logos .ed-logo {
        border: 0px !important;
    }

    #herobanner h1 {
        font-size: 32px;
        margin-bottom: 7px;
        color: var(--white) !important;
    }

    #herobanner p {
        font-size: 18px !important;
        margin-bottom: 17px !important;
        color: var(--white) !important;
    }

    #herobanner h4 {
        color: var(--white) !important;
    }

    #herobanner .hero-text {
        align-items: end !important;
        padding-top: 25px;
    }

    #herobanner {
        min-height: 610px;
        height: auto;
    }

    #herobanner .hero-text {
        min-height: 610px;
        height: auto;
        padding-top: 25px;
    }

    #herobanner .hero-text .container {
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 100%);
        padding-bottom: 30px;
        padding-top: 60px;
    }

    .checkmark-list p {
        max-width: 100%;
    }

    /*********************/

    .clinical-focus-list.clinic-1 .col-lg-9 {
        width: 100%;
    }

    .clinical-focus-list.clinic-2 .col-lg-9 {
        width: 100%;
    }

    .clinical-focus-list.clinic-4 .col-lg-9 {
        width: 100%;
    }

    .clinical-focus-list.clinic-4 .col-lg-9 .col-lg-4 {
        width: 100%;
    }

}

/* Theme 2: Clinical Focus + Services layout corrections */
@media (min-width: 992px) {
    .clinical-focus-list.clinic-4 .first-clinical-banner {
        width: 25%;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 {
        width: 75%;
    }

    .clinical-focus-list.clinic-4>.col-lg-9>.row {
        row-gap: 20px;
    }

    .clinical-focus-list.clinic-4>.col-lg-9>.row>.col-lg-4 {
        width: 50%;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 768px) {
    #services .services-tab>.col-md-8 {
        display: block !important;
        min-width: 0;
        padding-left: 0;
        padding-right: 0;
    }

    #services .services-tab .tab-content {
        width: 100%;
        height: 100%;
    }

    #services .services-tab .tab-content>.tab-pane {
        width: 100%;
        height: 100%;
    }

    #services .services-tab .tab-content>.tab-pane.active {
        display: block !important;
    }

    #services .services-tab .tab-content>.tab-pane>.row {
        width: 100%;
        height: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    #services .services-tab .services-image {
        height: 100%;
        min-height: 500px;
    }

    #services .services-tab .services-image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
    }
}

/* Theme 2: Clinical Focus + Services layout corrections */

@media (min-width: 1200px) {
    .clinical-focus-list.clinic-4 .first-clinical-banner {
        width: 25%;
        height: 560px;
        align-self: flex-start;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 {
        width: 75%;
    }

    .clinical-focus-list.clinic-4>.col-lg-9>.row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        margin: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .clinical-focus-list.clinic-4 .first-clinical-banner {
        width: 25%;
        height: 560px;
        align-self: flex-start;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 {
        width: 75%;
    }

    .clinical-focus-list.clinic-4>.col-lg-9>.row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .clinical-focus-list.clinic-4 .first-clinical-banner {
        width: 33.333333%;
        height: 520px;
        align-self: flex-start;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 {
        width: 66.666667%;
    }

    .clinical-focus-list.clinic-4>.col-lg-9>.row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .clinical-focus-list.clinic-4 {
        align-items: flex-start;
    }

    .clinical-focus-list.clinic-4 .first-clinical-banner .single-clinical-focus {
        height: 100% !important;
        min-height: 100%;
    }

    .clinical-focus-list.clinic-4>.col-lg-9>.row>.col-lg-4,
    .clinical-focus-list.clinic-4>.col-lg-9>.row>.col-md-6 {
        width: auto;
        max-width: none;
        padding: 0;
        margin-bottom: 0 !important;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 .single-clinical-focus {
        height: 100%;
        justify-content: flex-start;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 .focus-img img {
        height: 230px;
        object-fit: cover;
    }

    .clinical-focus-list.clinic-4>.col-lg-9 .focus-info {
        height: auto;
        flex: 1 1 auto;
    }

    #services .services-container {
        overflow: hidden;
    }

    #services .services-tab {
        height: 540px;
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
    }

    #services .services-tab-list {
        height: 540px;
        overflow: hidden;
        padding-left: 12px;
        padding-right: 12px;
    }

    #services .services-tab-list .nav-pills {
        width: 100%;
        height: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-right: 6px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
    }

    #services .services-tab-list .nav-pills::-webkit-scrollbar {
        width: 5px;
    }

    #services .services-tab-list .nav-pills::-webkit-scrollbar-track {
        background: transparent;
    }

    #services .services-tab-list .nav-pills::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.55);
        border-radius: 20px;
    }

    #services .services-tab .nav-link {
        flex: 0 0 auto;
        width: 100%;
        padding: 14px 0;
        font-size: 18px;
        line-height: 1.35;
    }

    #services .services-tab>.col-md-8 {
        display: block !important;
        height: 540px;
        min-width: 0;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    #services .services-tab .tab-content {
        width: 100%;
        height: 100%;
    }

    #services .services-tab .tab-content>.tab-pane {
        width: 100%;
        height: 100%;
    }

    #services .services-tab .tab-content>.tab-pane.active {
        display: block !important;
    }

    #services .services-tab .tab-content>.tab-pane>.row {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    #services .services-tab .tab-content>.tab-pane>.row>[class*="col-"] {
        height: 100%;
    }

    #services .services-tab .services-image {
        width: 100%;
        height: 100%;
        min-height: 0;
        overflow: hidden;
    }

    #services .services-tab .services-image a {
        display: block;
        width: 100%;
        height: 100%;
    }

    #services .services-tab .services-image img {
        display: block;
        width: 100%;
        height: 100% !important;
        min-height: 0;
        object-fit: cover;
    }
}

/* Desktop submenu spacing fix */
@media (min-width: 992px) {

    .nav-menu .menu-item-has-children>ul.sub-menu {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 10px 0 !important;
        gap: 0 !important;
    }

    .nav-menu .menu-item-has-children>ul.sub-menu>li {
        display: block !important;
        position: relative;
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-menu .menu-item-has-children>ul.sub-menu>li>a {
        display: block !important;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 11px 20px !important;

        line-height: 1.4 !important;
        white-space: normal;
    }
}

/* FAQs Styling */
.faq-accordion .card {
    border-color: var(--border-color);
    border-radius: 10px;
    box-shadow: none;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.faq-accordion .card .card-header {
    border-bottom: 0;
    position: relative;
    background-color: #fff0;
}

.faq-accordion .card .card-header h4 a {
    display: block;
    color: #666;
    font-size: 1.2rem;
    padding-right: 2rem;
    border: none;
    background: #fff0;
    font-family: inherit;
    text-align: left;
}

.faq-accordion .card .card-header h4 a::first-letter {
    text-transform: uppercase;
}

.faq-accordion .card .card-header h4 a:not(.collapsed) {
    color: var(--primary-color);
    padding-block: 0.5rem;
}

.faq-accordion .card .card-header h4 button {
    display: block;
    color: #666;
    font-size: 1.2rem;
    padding-right: 2rem;
    border: none;
    background: #fff0;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.faq-accordion .card .card-header h4 button::first-letter {
    text-transform: uppercase;
}

.faq-accordion .card .card-header h4 button:not(.collapsed) {
    color: var(--primary-color);
    padding-block: 0.5rem;
}

.faq-accordion .card .card-body {
    border-top: 1px solid var(--border-color);
}

.faq-accordion .card .card-header .fa {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 20px;
    text-align: center;
    line-height: 24px;
    width: auto;
    font-size: 22px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-accordion .card .card-header a::after {
    display: none;
}

.faq-accordion .card .card-header a .fa {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-accordion .card .card-header a:not(.collapsed) .fa-plus {
    display: none;
}

.faq-accordion .card .card-header a:not(.collapsed) .fa-minus {
    display: inline;
}

.faq-accordion .card .card-header a.collapsed .fa-minus {
    display: none;
}

.editable-cancel-button,
.add-step {
    font-size: .875rem;
    padding: 10px 24px 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    position: relative !important;
    background-color: #ffffff !important;
    color: #E07A5F !important;
    border: 1px solid #E07A5F !important;
    margin-right: 20px !important;
    font-family: Montserrat, sans-serif;
}

.editable-cancel-button:hover,
.add-step:hover {
    font-size: .875rem;
    padding: 10px 24px 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    position: relative !important;
    color: #ffffff !important;
    background-color: #E07A5F !important;
    border: 1px solid #E07A5F !important;
    margin-right: 20px !important;
    font-family: Montserrat, sans-serif;
}

.editable-save-button {
    font-size: .875rem;
    padding: 10px 24px 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    position: relative !important;
    margin-right: 20px !important;
    font-family: Montserrat, sans-serif;
}

.remove-step {
    color: #ffffff !important;
    background-color: #E07A5F !important;
    padding: 10px !important;
    border: 1px solid #E07A5F !important;
}

.remove-step:hover {
    background-color: #ffffff !important;
    color: #E07A5F !important;
    padding: 10px !important;
    border: 1px solid #E07A5F !important;
}