:root {
    /* color codes */
    --primary-color: #2A2E6D;
    --secondary-color: #8E8E8E;
    --white-color: #fff;
    --black-color: #000000;

    /* Padding & margin */
    --p-20: 20px;
    --m-20: 20px;
    --p-10: 10px;
    --m-10: 10px;
    --g-10: 10px;
    --g-20: 20px;
}

/* scroll site css */
body::-webkit-scrollbar-thumb {
    background-color: #2a3158;
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #2c3e70;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px transparent;
    border-radius: 8px;
    background-color: transparent;
}

body::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #2c3e70;
    border: 1px solid transparent;
    border-radius: 30px;
}

*::-webkit-scrollbar-thumb {
    background-color: #2a3158;
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #2c3e70;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px transparent;
    border-radius: 8px;
    background-color: transparent;
}

*::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #18aaca;
    border: 1px solid transparent;
    border-radius: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* scroll site css */

body {
    max-width: 1660px;
    margin: 0 auto;
    background-color: #F5F5F7;
    /* padding: 20px; */
}

/* colors ends */

/* container */

.container {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 160px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

a {
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 540px;
        margin: auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        width: calc(100% - 60px);
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .container {
        width: calc(100% - 4em);
    }
}

.navbar {
    height: 90px;
}

.burger {
    display: none;
}

/* sthohns chevron down icon css */
.sthohns-chevron-dropdown {
    box-sizing: border-box;
    position: relative;
    display: block;
    visibility: hidden;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
}

.sthohns-chevron-dropdown::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px;
}

/* sthohns chevron down icon css */
/* sthohns Search icon css */
.header-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1660px;
}

.navbar {
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    margin: 0 auto;
    padding: 4px 4em;
    border: none;
    outline: 0;
    background: linear-gradient(180deg, #2A3158 0%, #293056d1, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    z-index: 30;
}

.header-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 1440px;
    position: relative;
    z-index: 20;
}

.navbar .sthohnsmenu-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
}

.sthohnsmenu-inner a {
    text-decoration: none;
}

.sthohns-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 300px;
}

.sthohnsmenu-item {
    position: relative;
}

.sthohnsmenu-list-item a {
    width: fit-content;
    padding-inline: 10px 10px;
}

.sthohnsmenu-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.sthohnsmenu-item.accordian-main .sthohnsmenu-list-item {
    padding-block: 10px;
}

.service-inner.dropdown2 .sthohnsmenu-list-item {
    padding-block: 0px;
}

.service-inner.dropdown2 .sthohnsmenu-list-item {
    padding-block: 0px;
}

.service-inner.dropdown2 .sthohnsmenu-list-item:hover .sthohnsmenu-dropdown-links,
.service-inner.dropdown2 .sthohnsmenu-list-item:hover {
    background: #f5f5f5;
}

.service-inner.dropdown2 .sthohnsmenu-list-item:hover .sthohnsmenu-dropdown-links::before {
    background: #2c3e70;
}

.sthohnsmenu-item:hover .sthohnsmenu-list-text {
    color: #fff;
    transition: all 0.3s ease;
}

.sthohnsmenu-item:hover .sthohns-chevron-dropdown {
    transform: rotate(180deg);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.sthohnsmenu-dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0%);
    z-index: 10;
}

.sthohnsmenu-item:hover .sthohnsmenu-dropdown {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
    width: max-content;
    border-radius: 6px;
}

.sthohnsmenu-dropdown-links {
    font-size: 16px;
    background: #fff;
    color: #000;
    padding-inline: 10px 20px;
    padding-block: 8px;
    line-height: 25px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
}

.sthohnsmenu-dropdown-links:hover {
    background: #f5f5f5;
}

.sthohnsmenu-dropdown .sthohnsmenu-dropdown-links::before {
    content: "";
    height: 100%;
    width: 3px;
    display: block;
    background: 0 0;
    position: absolute;
    top: 0;
    left: 0px;
}

.sthohnsmenu-dropdown .sthohnsmenu-dropdown-links:hover::before {
    background: #2c3e70;
}

.sthohnsmenu-list-text {
    color: #fff;
    font-size: 16px;
    position: relative;
    margin: 0 !important;
}

.active-link {
    border-bottom: 2px solid #000;
    /* Highlight color */
    padding-bottom: 22px;
    transition: border-bottom 0.3s ease-in-out;
}

#services_dropdown {
    width: 240px;
}

#aboutus_dropdown {
    width: 180px;
}

#insights_dropdown {
    width: 160px;
}

#careers_dropdown {
    width: 210px;
}

.sthohnsmenu-list-text.contactWithUs {
    background: #d0bb6800;
    color: #fff;
    border: solid 1px #fff;
    padding: 8px 30px;
    font-size: 14px;
    margin: 0 4px;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
}
.sthohnsmenu-list-text.contactWithUs:hover {
    background: #fff;
    color: #2A2E6D;
    border: solid 1px #d0bb6800;
}

.sthohnsmenu-list-text.partner-with-us {
    background: #D0BB68;
    color: #2A2E6D;
    padding: 8px 10px;
    font-size: 14px;
    margin: 0 4px;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #d0bb68;
}
.sthohnsmenu-list-text.partner-with-us:hover {
    background: #2A2E6D;
    color: #D0BB68;
    border: solid 1px #D0BB68;
}
.learninghub-sub {
    display: none;
}

/* burger menu css */
.navbar .burger {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: 0;
    opacity: 0;
    visibility: hidden;
    background: 0 0;
    transform: rotate(0);
    transition: 0.35s ease-in-out;
}

.navbar .burger-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    border: none;
    outline: 0;
    opacity: 1;
    border-radius: 0.25rem;
    background: #fff;
    transform: rotate(0);
    transition: 0.25s ease-in-out;
}

.navbar .burger-line:nth-child(1) {
    top: 0;
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
    top: 0.5rem;
}

.navbar .burger-line:nth-child(4) {
    top: 1rem;
}

.navbar .burger.is-active .burger-line:nth-child(1),
.navbar .burger.is-active .burger-line:nth-child(4) {
    top: 1.25rem;
    width: 0%;
    left: 50%;
}

.navbar .burger.is-active .burger-line:nth-child(2) {
    transform: rotate(45deg);
}

.navbar .burger.is-active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
}

.-hidden {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: top 0.3s;
    position: fixed !important;
}

.navbar-fixed-top {
    position: fixed !important;
    height: 70px;
    top: 0;
    width: 100%;
    position: fixed;
    background: #ffffff;
    z-index: 9999;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
    box-shadow: 0 0 10px #ccc;
}

/* burger menu css */

@media only screen and (min-width: 1200px) and (max-width: 1350px) {}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .navbar .sthohnsmenu-inner {
        gap: 15px;
    }

    .sthohnsmenu-list-text {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 2em;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .navbar .sthohnsmenu-inner {
        gap: 10px;
    }

    .sthohnsmenu-list-text {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 2em;
    }

    .email-input {
        font-size: 12px !important;
    }

    .email-container {
        padding: 12px 8px !important;
    }

    .send-icon {
        height: 20px !important;
        width: 20px !important;
    }
}



@media only screen and (min-width: 1100px) and (max-width: 1300px) {
    .navbar .sthohnsmenu-inner {
        gap: 20px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .navbar {
        padding: 15px 2em;
    }

    .header-main {
        flex-wrap: wrap;
        transition: 0.5s ease all;
    }

    .navbar-fixed-top {
        height: auto;
    }

    .navbar .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .navbar .sthohns-menubar {
        width: 100%;
        max-height: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        position: relative;
        z-index: 20;
    }

    .navbar .sthohns-menubar.is-active {
        opacity: 1;
        display: block;
        max-height: auto;
        height: auto;
        visibility: visible;
        transition: all 0.35s ease;
    }

    .sthohnsmenu-dropdown {
        left: 40px;
        z-index: 10;
    }
}

@media only screen and (max-width: 768px) {
    .navbar {
        padding: 15px 2em;
    }

    .header-main {
        flex-wrap: wrap;
        transition: 0.5s ease all;
    }

    .navbar-fixed-top {
        height: auto;
    }

    .navbar .sthohns-menubar {
        width: 100%;
        max-height: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        position: relative;
        z-index: 20;
    }

    .navbar .sthohns-menubar.is-active {
        opacity: 1;
        display: block;
        max-height: auto;
        height: auto;
        visibility: visible;
        transition: all 0.35s ease;
    }

    .sthohnsmenu-dropdown {
        left: 40px;
        z-index: 10;
    }

    .sthohnsmenu-item {
        padding-inline: 8px !important;
    }
}

@media only screen and (max-width: 767px) {
    .service-inner.dropdown2:hover .speciality-dropdown {
        left: 40px;
        top: 40px;
    }
}

@media only screen and (max-width: 550px) {
    .navbar {
        padding: 15px 1em;
    }

    .sthohnsmenu-dropdown-links {
        font-size: 14px;
    }

    #services_dropdown {
        width: 180px;
    }

    #aboutus_dropdown {
        width: 180px;
    }

    #insights_dropdown {
        width: 160px;
    }

    #careers_dropdown {
        width: 180px;
    }

    .dropdown2 .speciality-dropdown {
        width: 180px;
    }

    .sthohns-logo {
        max-width: 210px;
    }
}

@media only screen and (max-width: 375px) {
    .navbar {
        padding: 15px 1em;
    }

    .dropdown2 .speciality-dropdown {
        width: 180px;
    }
}

/* footer call icon css */
.footer {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-color: #000;
    padding-block: 40px 0px;
    overflow: hidden;
}

.footer-grid-holder {
    position: relative;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2em;
    padding-block: 32px;
    border-bottom: 1px solid #fff;
}

.footer-item.list-links {
    position: relative;
    box-sizing: border-box;
}

.list-links-items {
    gap: 4px;
    position: relative;
    box-sizing: border-box;
}

.footer-grid-holder a {
    text-decoration: none;
}

.footer-logo {
    display: block;
    position: relative;
    text-decoration: none;
}

.sthohns-footer-logo {
    width: 100%;
    height: 100%;
    max-width: 139px;
    object-fit: contain;
    object-position: center;
}


.ft-address-link {
    display: block;
    color: #000;
    padding-block: 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    word-break: break-all;
}

.ft-location-text,
.ft-location-flex span {
    display: block;
    color: #ffffff;
    margin-block: 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.footerflag-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 35px;
}

.footer-address-item2 {
    position: relative;
    box-sizing: border-box;
}

.footer-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-block: 15px;
}

.footer-item:first-child {
    padding-block: 0px;
}

.footer-links,
.footer-links-address {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    padding: 4px 0;
    display: inline-flex;
}

.copyright-holder {
    position: relative;
    padding-block: 10px;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #000;
}

.copyright-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    display: block;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.copyright-text.privacy {
    text-align: end;
}

.footer-social-content-holder a:hover {
    color: #074fa4;
    transform: translatey(-2px);
    transition: all 0.4s ease-in-out;
}

.footer-links:hover {
    padding-left: 10px;
    transition: all 0.4s ease;
}

.copyright-text.privacy:hover {
    color: #134d92;
    transition: all 0.4s ease;
}

.g-recaptcha {
    transform: scale(0.8) !important;
    transform-origin: 0 0 !important;
}

.social-icon-fixed {
    position: fixed;
    top: 80%;
    left: 10px;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 72px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fixed-social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px 5px;
    color: #134d92;
    padding: 3px 5px;
    display: block;
}

.fixedsocial-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .footer-grid-holder {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1em;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .footer-grid-holder {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1em;
    }

    .send-icon {
        margin-left: 12px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .navbar {
        padding: 4px 1em !important;
    }

    .sthohnsmenu-list-text {
        font-size: 13px;
    }

    .navbar .sthohnsmenu-inner {
        gap: 14px;
    }
    .sthohnsmenu-list-text.contactWithUs {
        padding: 8px 20px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .footer-grid-holder {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1em;
        padding-inline: 2em;
    }

    .footer-item:first-child {
        grid-column: 1/3;
    }

    .footer-item {
        padding-block: 0px;
    }

    .footer-item:nth-child(2),
    .footer-item:last-child {
        padding-block: 0 15px;
    }

    .social-icon-fixed {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .footer-grid-holder {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3em;
    }

    .footer-item:first-child {
        grid-column: 1/3;
    }

    .footer-item {
        padding-block: 0px;
    }

    .footer-item:nth-child(2),
    .footer-item:last-child {
        padding-block: 0 15px;
    }

    .copyright-flex {
        padding-inline: 2em;
    }

    .social-icon-fixed {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .footer-item:first-child {
        grid-column: auto;
    }

    .footer-grid-holder {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1em;
    }

    .footer-para {
        margin-block: 24px !important;
    }

    .footer-header {
        margin-bottom: 24px !important;
    }
}

@media only screen and (max-width: 550px) {
    .footer-grid-holder {
        padding-inline: 0.5em;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .copyright-text.privacy,
    .ft-location-text,
    .ft-location-flex span,
    .footer-links {
        font-size: 14px;
    }

    .list-links-items {
        padding-inline: 0em 0;
    }
}

@media only screen and (max-width: 375px) {
    .list-links-items {
        padding-inline: 0em 0;
    }

    .footer-item:nth-child(2),
    .footer-item:last-child {
        padding-inline: 0em;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {}

.top-header {
    background-color: #2c3e70;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
    gap: 10px;
    font-size: 12px;
}

.top-header .emergency-contact {
    margin-right: 20px;
}

.top-header .accessibility-language {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Main Navigation Styles */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e70;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e70;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Active link styling */
.nav-links a.active {
    color: #3498db;
    font-weight: bold;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
    animation: underline 0.3s ease forwards;
}

@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-courses {
    background-color: #2c3e70;
    color: white;
}

.btn-appointments {
    background-color: #f1c40f;
    color: #2c3e70;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    z-index: 1000;
    max-width: 1660px;
}

/* Placeholder content to demonstrate scrolling */
.content {
    padding-top: 200px;
    text-align: center;
}

.nav-link.active {
    color: #f00;
    /* Example: change the color of the active link to red */
    font-weight: bold;
}

.top-header {
    display: flex;
    align-items: center;
    background-color: #2A3158;
    padding: 0px 66px;
}

/* Button styles */
.top-header button {
    margin-right: 0;
    padding: 0px 12px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
}

/* Accessibility and Language buttons */
.accessibility-btn,
.language-btn {
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
}

/* Emergency Button */
.emergency-btn {
    background-color: white;
    color: #b81d13;
    font-weight: bold;
    animation: emergencyPulse 3s infinite alternate;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #b81d13;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

/* Emergency Button Icon */
.phone-icon {
    font-size: 20px;
}

/* Phone Number */
.phone-number {
    margin-left: 5px;
    font-weight: normal;
    animation: phonePulse 3s infinite alternate;
}

/* Button Animation */
@keyframes emergencyPulse {
    0% {
        background-color: white;
        color: #b81d13;
    }

    100% {
        background-color: #b81d13;
        color: white;
    }
}

.phone-icon {
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        color: #b81d13;
    }

    100% {
        color: white;
    }
}

/* Phone Number Animation (Subtle Change) */
@keyframes phonePulse {
    0% {
        color: #b81d13;
    }

    100% {
        color: white;
    }
}

.font-indicator {
    margin: 0 5px;
}

/* Format each dropdown item as a row with space between */
.sthohnsmenu-dropdown-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}

.appointment svg {
    width: 18px;
    height: 18px;
    padding-right: 5px;
}

.appointment {
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 25px;
    border: none;
    color: #fff;
    margin: 0;
    cursor: pointer;
    transition: .5s ease-in-out;
    font-size: 14px;
    padding: 0;
}

.appointment svg path {
    fill: #fff;
}

.phone-icon {
    font-size: 20px;
    animation: iconPulse 3s infinite alternate;
}

.emergency-btn svg path {
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        fill: #b81d13;
    }

    100% {
        fill: white;
    }
}

.footer-para {
    color: #fff;
    text-align: left;
    margin: 0;
    display: block;
    margin-top: 16px;
    padding-right: 16px;
}

.footer-header {
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 36px;
    color: #fff;
}

.email-container {
    display: flex;
    align-items: center;
    background-color: #C2D4F8;
    border-radius: 4px;
    padding: 12px 16px;
    margin-top: 8px;
    width: -webkit-fill-available;
}

.email-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #1D1D4F;
    flex: 1;
}

.send-icon {
    width: 24px;
    height: 24px;
    fill: #1D1D4F;
    cursor: pointer;
    transform: rotate(-45deg);
    margin-left: 30px;
}

/* Footer Container */
.footer-container {
    width: 100%;
    border-top: 1px solid #000;
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Copyright Text */
.copyright-text {
    font-size: 14px;
    color: #fff;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 24px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    background-color: #2A2E6D;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.search-input {
    position: absolute;
    right: 0;
    top: 40px;
    width: 0;
    padding: 14px 16px;
    border: 0;
    border-radius: 8px;
    outline: none;
    transition: width 0.3s ease-in-out;
    opacity: 0;
}

.search-container.active .search-input {
    width: 346px;
    opacity: 1;
}

.gg-search {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 100%;
    margin-left: -4px;
    margin-top: -4px;
    color: #fff;
}

.gg-search::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-radius: 3px;
    width: 2px;
    height: 8px;
    background: currentColor;
    transform: rotate(-45deg);
    top: 10px;
    left: 12px;
}

@media screen and (max-width: 991px) {
    .navbar .sthohns-menubar {
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #f5f5f5 !important;
    }

    .sthohnsmenu-inner {
        padding: 32px 32px !important;
    }

    .disable-scroll {
        overflow: hidden;
    }

    .sthohns-menubar.show-detail {
        display: block;
        transform: translateY(0);
    }

    .sthohns-menubar {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .active-link {
        padding-bottom: 10px !important;
    }

    .footer-copyright {
        display: grid !important;
        gap: 16px;
    }

    .copyright-text {
        margin: 0;
    }

    .search-input {
        position: relative;
        bottom: 0px;
    }
}

.section-title {
    font-size: 32px;
    line-height: 35px;
    color: #2a2e6d;
}

.no-scroll {
    overflow: hidden;
}
.mobile-design {
    display: none;
}
@media screen and (max-width:992px) {
    
    .navbar .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .top-header {
        display: none !important;
    }

    .navbar .sthohnsmenu-inner {
        display: block;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0px;
        padding: 1rem 0;
        background-color: #03020282;
    }

    .sthohnsmenu-item.single-item {
        padding-block: 12px;
        margin: 0;
        border-bottom: 1px solid #fff;
    }
    .mobile-design {
        display: block !important;
        position: relative !important;
        display: flex !important;
        flex-direction: row !important;
        position: relative !important;
        justify-content: flex-start !important;
        gap: 25px !important;
        align-items: center !important;
        margin-bottom: 10px;
    }
}

.sthohnsmenu-list-text-new svg {
    font-size: 16px;
}

.top-header.hidden {
    display: none !important;
}

.hidden {
    display: none;
}

.dropdown {
    border: 1px solid #ccc;
    width: 150px;
    position: absolute;
    border-radius: 6px;
    transition: opacity 0.3s ease-in-out;
}



.accessibility-menu {
    width: 320px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-label {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
.font-controls {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.font-btn {
    background-color: transparent;
    border: none;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 0 !important;
}

.font-indicator {
    font-size: 24px;
    font-weight: bold;
    color: #344275;
    margin: 0 8px;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    height: 20px;
    width: 32px;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    border:2px solid #262D5E;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: -4px;
    bottom: 4px;
    background-color: #ccc;
    transition: .4s;
    border-radius: 50%;
    top:2px;
}

input:checked + .slider {
    background-color: #344275;
}

input:checked + .slider:before {
    transform: translateX(20px);
}
.grey-scale svg {
    font-size: 16px;
}

/* floating btn  */
.stjohns-floating-btn {
    position: fixed;
    top: 50%;
    right: 12px;
  }

  .stjohns-floating-btn .stjohns-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background:linear-gradient(180deg,rgba(208, 187, 104, 1) 0%, rgb(255, 255, 255) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 300ms ease;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 0px 10px 6px rgb(208 187 104 / 71%);
  }

  .stjohns-floating-btn.stjohns-active .stjohns-main-btn {
    background: #2A2E6D;
    box-shadow:   0px 0px 10px 6px #2A2E6D;
  }

  .stjohns-floating-btn .stjohns-main-btn svg {
    width: 30px;
    display: flex;
    transition: all 300ms ease;
  }
  
  .stjohns-floating-btn.stjohns-active .stjohns-main-btn svg {
    filter: brightness(0) invert(1);
  }
  
  .stjohns-main-btn p {
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: white;
    text-align: center;
    transition: all 300ms ease;
    color: #000;
  }
  
  .stjohns-floating-btn.stjohns-active .stjohns-main-btn p {
    color: white;
  }

  .stjohns-floating-btn .stjohns-options {
    position: absolute;
    transform: translate(30px, 30px) scale(0);
    opacity: 0;
    transition: all 300ms ease;
    right: 10px;
    top: 0;
  }

  .stjohns-floating-btn.stjohns-active .stjohns-options {
    transform: translate(5px, 5px) scale(1);
    opacity: 1;
  }

  .stjohns-floating-btn .stjohns-option {
    background: white;
    padding: 8px 12px;
    border-radius: 8px 0px 0px 8px;
    box-shadow: 0 6px 4px -2px #2A2E6D;
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 160px;
    height: 41px;
    align-items: center;
    transition: all 300ms ease;
  }

  .stjohns-floating-btn .stjohns-option a {
    text-decoration: none;
    color: #000;
    user-select: none;
    font-weight: 300;
    font-size: 12px;
  }

  .stjohns-floating-btn .stjohns-option:nth-child(1) {
    transform: translate(-200px, -70px) rotate(0);
  }

  .stjohns-floating-btn .stjohns-option:nth-child(2) {
    transform: translate(-232px, 0px) rotate(0);
  }

  .stjohns-floating-btn .stjohns-option:nth-child(3) {
    transform: translate(-200px, 70px) rotate(0);
  }
  
  .stjohns-option svg {
    height: 18px;
  }
  
  .stjohns-option svg path {
    fill: #2A2E6D;
  }
