:root {
    --bs-primary: #0A3C83;
    /* Primary BG */
    --bs-secondary: #45CEDB;
    /* Secondary BG */
    --bs-brand-dark: #092141;
    --bs-brand-dark-mid: hsl(209, 68%, 18%);
    --bs-brand-light-mid: #FEF9F6;
    --bs-brand-dark-scondary: #015158;
    --bs-brand-mild: #00BED0;
    --bs-text-primary: #1D1D1D;
    --bs-text-secondary: #A4A4A4;
    --bs-text-ternary: #0A3C83;
    --bs-text-white: #FFF;
    --bs-border: #F3F3F3;
    --bs-bg-light: #F6FAFF;
    --bs-text-red: #FF4D4D;

    --bs-color-SJMC: #F14842;
    --scrollbar-thumb: #0A3C83;
    --scrollbar-thumb-hover: #00BED0;
    --scrollbar-track: #f1f1f1;
    --scrollbar-width: 4px;
}

/* Firefox and modern browsers */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* WebKit browsers */
*::-webkit-scrollbar {
    width: var(--scrollbar-width);
    height: var(--scrollbar-width);
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 4px;
    border: 2px solid var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Roboto";
    font-optical-sizing: auto;
    font-size: 14px;
    scrollbar-width: thin;
    overflow-x: hidden;
    /* background: #F6FAFF; */
    padding-bottom: 80px;
    color: var(--bs-text-primary);
}

.bg-primary {
    background: var(--bs-primary) !important;
}


.style-text {
    font-family: "Nanum Pen Script", serif;
    font-size: 86px;
    line-height: 56px;
}

.topic-title {
    color: var(--bs-primary);
    font-size: 18px;
}

.footer-menu-header {
    font-size: 16px;
    border-bottom: 2px solid var(--Sub-Color, #45CEDB);
    width: 150px;
    padding: 8px 0px;
}

.fs-14px {
    font-size: 14px !important;
}

.fs-16px {
    font-size: 16px !important;
}

.fs-16-18px {
    font-size: 16px !important;
}

.fs-18-20px {
    font-size: 18px !important;
}

.fs-title {
    font-size: 20px;
}

.fs-subtitle {
    font-size: 16px !important;
}

.sticky {
    width: 100%;
    max-height: 300px;
    position: fixed !important;
    bottom: 0px;
    z-index: 1000;
    left: 0px;
    padding: 0px;
    transition: all 500ms ease-in-out;
}

.sticky .bg-white {
    width: 100%;
    background: #FFF;
    box-shadow: 82px 56px 28px 0px rgba(120, 120, 120, 0.00), 53px 36px 26px 0px rgba(120, 120, 120, 0.01), 30px 20px 22px 0px rgba(120, 120, 120, 0.05), 13px 9px 16px 0px rgba(120, 120, 120, 0.09), 3px 2px 9px 0px rgba(120, 120, 120, 0.10);
}

.sticky span {
    font-size: 10px !important;
    text-align: center !important;
    line-height: 10px;
}

.sticky svg {
    height: 20px !important;
    width: auto;
}

.sticky .item {
    min-height: 80px;
}

.sticky .item:hover {
    transform: scale(1.05);
}

.bg-dark {
    background-color: var(--bs-brand-dark) !important;
}

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

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

.bg-dark .navbar-nav {
    font-weight: 500;
}

.bg-dark .navbar-nav .nav-link {
    color: var(--bs-text-white);
}

.bg-dark .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
}

.bg-secondary {
    background: var(--bs-secondary) !important;
}

.bg-secondary-dark {
    background: var(--bs-brand-dark-scondary) !important;
}

.bg-white .navbar-nav {
    font-weight: 500;
    font-size: 16px;
}

.bg-white .navbar-nav .nav-link {
    color: var(--bs-text-primary);
}

.bg-white .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
}

#navbar .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
}

.submenu {
    background: var(--bs-text-white);
    color: var(--bs-brand-dark);
}

.submenu li,
.submenu a {
    color: var(--bs-brand-dark);
    font-size: 16px;
}

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

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

.social-icon {
    height: 70px;
    width: auto;
    transition: transform .1s linear;
}

.social-icon:hover {
    transform: scale(1.1);
}

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

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

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

.text-SJMC {
    color: var(--bs-color-SJMC);
}

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

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

.btn-social {
    background-color: #0C2D56;
    height: 50px;
    width: 50px;
}

.btn-default {
    border: 1px solid #E7E7E7;
    background: #FFF;
}

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

.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-text-white);
}

.text-orange {
    color: #9C611C;
}

.sm-left a,
.sm-content a,
.sm-right a {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.sm-left {
    min-width: 250px;
    border-right: 0px;
}

.sm-left .list-group-item,
.mob-submenu-off .list-group-item {
    display: flex;
    align-items: center;
}

.sm-left .list-group-item.has-submenu::after {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    position: absolute;
    right: 4px;
}

.mob-submenu-off .list-group-item.has-submenu::after {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    position: absolute;
    right: 12px;
}

.mob-submenu-off .list-group-item a {
    text-decoration: none;
    color: var(--bs-brand-dark);
}

.sm-right li {
    border-radius: 12px;
    border: 1px solid var(--bs-border);
    background: #FFF;
    min-width: 280px;
    position: relative;
    display: flex;
    align-items: center;
}

.sm-right li:after {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    position: absolute;
    right: 16px;
}

.navbar {
    max-width: 100vw;
}

.navbar .dropdown-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: none;
    visibility: hidden;
    pointer-events: none;
}

.navbar .dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
}

.profile-accordion::after {
    border: none !important;
    font-family: "Font Awesome 6 Free";
    content: "\f106" !important;
    vertical-align: 0;
    font-size: 18px;
    float: right;
}

.profile-accordion.collapsed::after {
    transform: rotate(180deg)
}

.dropdown-toggle::after {
    border: none !important;
    font-family: "Font Awesome 6 Free";
    content: "\f107" !important;
    vertical-align: 0;
    font-size: 13px;
}

.btn-search-action.dropdown-toggle::after {
    font-size: 14px !important;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg)
}

.call-drop .dropdown-toggle::after {
    display: none !important;
}

.call-drop .dropdown-menu {
    min-width: 200px;
    border: 1px solid var(--bs-border);
    background: #FFF;
    box-shadow: -33px 114px 33px 0px rgba(64, 64, 64, 0.00), -21px 73px 30px 0px rgba(64, 64, 64, 0.01), -12px 41px 26px 0px rgba(64, 64, 64, 0.05), -5px 18px 19px 0px rgba(64, 64, 64, 0.09), -1px 5px 10px 0px rgba(64, 64, 64, 0.10);
}

.main {
    width: 100%;
    overflow-x: hidden;
    min-height: 500px;
}

footer {
    background: linear-gradient(180deg, #0A2240 0%, #000F22 100%);
    width: 100%;
}

.copyright {
    font-size: 18px;
}

.logo-white1 {
    max-height: 50px;
    width: auto;
}

.logo-white2 {
    max-height: 45px;
    width: auto;
}

.footer-menu a:not(:first-child) {
    border-left: 1px solid var(--Sub-Color, #45CEDB);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 100%;
}

.pb-8 {
    padding-bottom: 40px;
}

.mt-lg {
    margin-top: 24px;
}

.mt-md {
    margin-top: 36px;
}

.mt-60px {
    margin-top: 60px;
}

.gap-8 {
    gap: 56px;
}

.gap-4 {
    gap: 20px;
}

a.btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px;
}

.slide-card {
    border: 1px solid #F4F4F4;
    background: #FFF;
    height: 200px;
    width: 320px;
    box-shadow: 75px 107px 37px 0px rgba(163, 163, 163, 0.00), 48px 68px 33px 0px rgba(163, 163, 163, 0.01), 27px 38px 28px 0px rgba(163, 163, 163, 0.05), 12px 17px 21px 0px rgba(163, 163, 163, 0.09), 3px 4px 11px 0px rgba(163, 163, 163, 0.10);
}

.section-4 .swiper-slide {
    padding-bottom: 100px;
}

.section-4 .s4-card {
    border: 1px solid rgba(244, 244, 244, 0.96);
    background: #FFF;
    box-shadow: 0px 336px 94px 0px rgba(194, 194, 194, 0.00), 0px 214px 86px 0px rgba(194, 194, 194, 0.01), 0px 121px 73px 0px rgba(194, 194, 194, 0.05), 0px 54px 54px 0px rgba(194, 194, 194, 0.09), 0px 13px 30px 0px rgba(194, 194, 194, 0.10);
}


.swiper-pagination .swiper-pagination-bullet {
    border: 2px solid #19242F !important;
    height: 12px;
    width: 12px;
    opacity: 1;
    background: white;
}

.carousel-title {
    bottom: 60%;
}

.label-box {
    height: 50px;
    position: absolute;
    bottom: calc(60% - 50px);
}

.promo .carousel-title {
    bottom: 35% !important;
}

.promo .label-box {
    height: 50px;
    position: absolute;
    bottom: calc(35% - 50px) !important;
}

.label-box .triangle {
    width: calc(100% - 40px);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 50px;
    background: linear-gradient(90deg, rgba(69, 206, 219, 1) 9%, rgba(36, 136, 145, 1) 34%, rgba(10, 60, 131, 1) 100%);
}

.label-box .box-fill {
    width: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    padding-right: 5px;
    border-top: 50px solid #0A3C83;
    border-right: 40px solid transparent;
}

.label-box .box-fill span {
    font-size: 20px;
}

.bg-md-F6FAFF {
    background: transparent;
}

.bg-F6FAFF {
    background: #F6FAFF;
}

.bg-F2FEFF {
    background: #F2FEFF;
}

.bg-FFF7EF {
    background: #FFF7EF;
}

.bg-F6F6FF {
    background: #F6F6FF;
}

.bg-transparent {
    background: transparent !important;
}

.search-border {
    border: 1px solid var(--bs-border);
    background: #FFF;
}

.label-box .label {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: right;
    top: 0px;
    left: 0px;
    padding-right: 50px;
    font-size: 24px;
    color: var(--bs-text-white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #19242F;
}

.section-1 .s-block {
    position: absolute;
    top: 10%;
    background: #FFF;
    box-shadow: 0px 506px 142px 0px rgba(0, 0, 0, 0.00), 0px 324px 129px 0px rgba(0, 0, 0, 0.01), 0px 182px 109px 0px rgba(0, 0, 0, 0.05), 0px 81px 81px 0px rgba(0, 0, 0, 0.09), 0px 20px 45px 0px rgba(0, 0, 0, 0.10);
}

.section-1 svg {
    height: 20px;
}

.section-1 .s-block .col-3 {
    padding-left: 4px;
    padding-right: 4px;
}

.s-block .s-block-item {
    color: #1D1D1D;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.swiper2 .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-button-prev::after {
    content: none !important;
}

.swiper-button-next::after {
    content: none !important;
}

.swiper-button-prev {
    position: absolute;
    left: 30px;
    top: 45%;
    background: var(--bs-text-white);
    width: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 30px !important;
}

.swiper-button-next {
    position: absolute;
    right: 30px;
    top: 45%;
    background: var(--bs-text-white);
    width: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabets {
    background: #FEF9F6;
}

.alphabets .item {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    aspect-ratio: 1/1;
    border: 1.5px solid var(--bs-primary);
    background: #FEF9F6;
}

.alphabets .item:hover {
    background: var(--bs-primary);
    color: var(--bs-text-white);
    cursor: pointer;
}

.alphabets-small {
    margin: auto;
}

.alphabets-small .item {
    display: flex;
    width: 12%;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border: 1.5px solid #E2EFFF;
    background: #E2EFFF;
    border-radius: 4px;
    color: #000;
}

.alphabets-small .item:hover,
.alphabets-small .item.active {
    background: var(--bs-primary);
    color: var(--bs-text-white);
    cursor: pointer;
}


.search-box {
    width: 100%;
}

.search-box .search-input {
    border-radius: 9999px;
    border: 1px solid var(--bs-border);
    background: rgba(255, 255, 255, 0.38);
    height: 54px;
    padding: 8px 12px;
}

.search-box .lens {
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 10;
    border-radius: 9999px;
    background: var(--bs-primary);
    ;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.search-box .lens:hover {
    background: var(--bs-secondary);
    border: var(--bs-secondary);
}

.sl-slide {
    width: 100%;
    padding: 12px;
}

.sl-card {
    width: 100%;
    border: 1px solid rgba(244, 244, 244, 0.96);
    background: #FFF;
    box-shadow: 75px 107px 37px 0px rgba(163, 163, 163, 0.00), 48px 68px 33px 0px rgba(163, 163, 163, 0.01), 27px 38px 28px 0px rgba(163, 163, 163, 0.05), 12px 17px 21px 0px rgba(163, 163, 163, 0.09), 3px 4px 11px 0px rgba(163, 163, 163, 0.10);
}

.border-card {
    border-radius: 6px;
    border: 1px solid #F4F4F4;
    background: #FFF;
}

.w-120 {
    width: 110%;
    margin-left: -5%;
}

.img-block {
    width: 200px;
    position: relative;
    height: 163px;
    overflow: hidden;
}

.block-divider {
    width: 16px;
}

.details-block {
    width: calc(100% - 200px);
    padding: 4px 8px;
    gap: 2px;
    font-size: 14px;
    text-align: left !important;
}

.details-block .block-title {
    font-size: 16px;
}

.img-block img {
    height: 100%;
    width: auto;
    object-fit: cover;
    aspect-ratio: 350/286 !important;
}

.bg-odd {
    background-color: #00747F;
    color: #FFF;
}

.bg-odd2 {
    background-color: #0A3C83;
    color: #FFF;
}

.bg-even {
    background-color: #FFECDD;
    color: #592700;
}

.search-bar-wrapper {
    position: absolute;
    bottom: -64px;
}

.search-input-bar {
    padding: 16px 16px;
    background: #FFF;
    border: none;
    font-size: 16px;
    box-shadow: 0px 510px 143px 0px rgba(0, 0, 0, 0.00), 0px 326px 131px 0px rgba(0, 0, 0, 0.01), 0px 184px 110px 0px rgba(0, 0, 0, 0.05), 0px 82px 82px 0px rgba(0, 0, 0, 0.09), 0px 20px 45px 0px rgba(0, 0, 0, 0.10);
}

.search-bar-wrapper .search-bar-btn,
.search-bar-wrapper-common .search-bar-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 18px;
}

.mobile-head-top {
    background: #FFF;
    box-shadow: 0px 103px 29px 0px rgba(125, 125, 125, 0.00), 0px 66px 26px 0px rgba(125, 125, 125, 0.01), 0px 37px 22px 0px rgba(125, 125, 125, 0.05), 0px 16px 16px 0px rgba(125, 125, 125, 0.09), 0px 4px 9px 0px rgba(125, 125, 125, 0.10);
}

.search-btn {
    border-radius: 9999px;
    background: var(--bs-secondary);
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.carousel .swiper-slide {
    aspect-ratio: 220/203;
}

.carousel .overlay {
    background: linear-gradient(to bottom, #FFF 0%, transparent 80%);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.carousel .promo-img {
    height: 100% !important;
    aspect-ratio: 380/200;
    width: auto;
    object-fit: cover;
    object-position: bottom right;
}

.carousel .top-slide-img {
    height: 100% !important;
    aspect-ratio: 220/203;
    width: auto;
    object-fit: cover;
    object-position: bottom right;
}

.footer-menu {
    font-size: 14px;
}

.fixed-top {
    border-bottom: 1px solid rgba(26, 37, 81, 0.098);
    top: -40px;
    transform: translateY(40px);
    transition: transform .5s;
}

.border-bottom-blue {
    border-bottom: 1px solid #C2DBFF !important;
}

.up-arrow {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    z-index: 1001;
    bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Brand-Color, #0A3C83);
    box-shadow: 0px 51px 14px 0px rgba(0, 0, 0, 0.00), 0px 32px 13px 0px rgba(0, 0, 0, 0.01), 0px 18px 11px 0px rgba(0, 0, 0, 0.05), 0px 8px 8px 0px rgba(0, 0, 0, 0.09), 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
    transition: all 100ms linear;
}

.up-arrow:hover {
    transform: scale(1.1);
    background-color: var(--bs-secondary);
}

.banner-bg {
    width: 100%;
    background: linear-gradient(90deg, #0A3C83 0%, rgba(219, 231, 248, 0.6) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
}

.object-fit-cover {
    object-fit: cover;
}

.banner-overlay {
    background: linear-gradient(90deg, #0A3C83 0%, transparent 100%);
    width: 100%;
    height: 100%;
    position: absolute;
}

.border-primary {
    border-color: #0A3C83 !important;
}

.banner {
    background: url('../images/banner-bg.webp') top center no-repeat;
    height: 300px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.banner-2-bg {
    width: 100%;
    background: linear-gradient(90deg, #0A3C83 0%, rgba(237, 243, 252, 0.6) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
}

.banner-2 {
    background: url('../images/banner-2-bg.webp') top center no-repeat;
    height: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.banner-img {
    height: 90%;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.col-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(244, 244, 244, 0.96);
    background: #FFF;
    box-shadow: 0px 336px 94px 0px rgba(194, 194, 194, 0.00), 0px 214px 86px 0px rgba(194, 194, 194, 0.01), 0px 121px 73px 0px rgba(194, 194, 194, 0.05), 0px 54px 54px 0px rgba(194, 194, 194, 0.09), 0px 13px 30px 0px rgba(194, 194, 194, 0.10);
}

.news-card .date,
.col-card .date {
    color: #1AB3C2;
}

.col-card .title {
    font-size: 20px;
}

.bg-gradiant {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #E0EDFF 56.5%, rgba(255, 255, 255, 0.00) 100%);
}

.pb-lg {
    padding-bottom: 24px;
}

.w-max-content {
    width: max-content;
}

.card-border {
    border: 1px solid var(--bs-border);
    background: #FFF;
}

.img-border {
    border: 1px solid rgba(244, 244, 244, 0.96);
    background: #FFF;
    box-shadow: 0px 336px 94px 0px rgba(194, 194, 194, 0.00), 0px 215px 86px 0px rgba(194, 194, 194, 0.01), 0px 121px 73px 0px rgba(194, 194, 194, 0.05), 0px 54px 54px 0px rgba(194, 194, 194, 0.09), 0px 13px 30px 0px rgba(194, 194, 194, 0.10);
}

.doctor-profile {
    border: 1px solid var(--bs-border);
    background: #FFF;
    padding: 8px;
}

.doctor-card .action-icon,
.doctor-profile .action-icon {
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card .btn,
.doctor-profile .btn,
.doctor-card .btn,
.doctor-profile .btn span {
    font-size: 14px;
    line-height: 14px;
}

.check-list {
    list-style-type: none;
    padding-left: 0px;
}

.check-list li {
    padding-left: 32px;
    position: relative;
}

.check-list li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f058" !important;
    position: absolute;
    top: 0px;
    left: 0px;
}

.doctor-card .btn.btn-default,
.doctor-profile .btn.btn-default {
    border: 1.5px solid #0A3C83;
}

.doctor-profile .doctor-profile-img {
    background: #F3F8FF;
    width: auto;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-profile .doctor-profile-img img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top center;
    margin: auto;
}

.doctor-card .doctor-profile-img {
    background: #F3F8FF;
    width: 130px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card .doctor-profile-img2 {
    background: #F3F8FF;
    width: 130px;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card .doctor-profile-img img,
.doctor-card .doctor-profile-img2 img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top center;
    margin: auto;
}

.doctor-card .doctor-profile-details .title,
.doctor-profile .doctor-profile-details .title {
    font-size: 20px;
}

.doctor-card .doctor-profile-details span,
.doctor-profile .doctor-profile-details span {
    font-size: 14px;
}

.news-card {
    border: 1px solid #F4F4F4;
    background: #FFF;
}

.news-card .title {
    font-size: 22px;
}

.news-card .img-fluid {
    width: 100%;
    aspect-ratio: 435/270;
    object-fit: cover;
}

.sjmc-pagination .page-item .page-link {
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-primary);
}

.sjmc-pagination .page-item.active .page-link {
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-text-white);
}

.sjmc-pagination .page-item .page-link i {
    color: #000 !important;
}

.sjmc-pagination .page-item.active .page-link {
    background: var(--bs-primary) !important;
}

.sjmc-pagination .page-item:first-child .page-link {
    border: none !important;
    background: transparent !important;
    color: #000 !important;
}

.sjmc-pagination .page-item:last-child .page-link {
    border: none !important;
    background: transparent !important;
    color: #000 !important;
}

h1 {
    font-size: 24px;
}

.style-text {
    font-family: "Nanum Pen Script", serif;
    font-size: 56px;
    line-height: 40px;
}

h1.location-title {
    font-size: 24px;
}

.breadcrumb .home-link {
    width: 48px;
    height: 48px;
    background: #FFF;
    border-radius: 50%;
    color: var(--bs-brand-dark);
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.breadcrumb ul {
    list-style-type: none;
    padding-left: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.breadcrumb ul li {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--bs-text-primary);
    font-weight: 600;
}

.make-appointment {
    font-size: 18px;
}

.submenu.dropdown-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.testimonial .swiper-slide {
    min-width: 600px;
}

div.hospital-color {
    width: 22px;
    height: 22px;
    border-radius: 4px;
}

input.checkbox,
input.radio {
    height: 19px;
    width: 19px;
    min-width: 19px;
}

input[type="checkbox"].red-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: red;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"].red-checkbox:checked::after {
    content: '✓';
    color: white;
    font-size: 18px;
    position: absolute;
    top: -2px;
    left: 3px;
}

.btn-search-action {
    border: 1px solid #F3F3F3;
    background: #FFF !important;
    font-size: 14px;
}

.doctor-profile-details-card {
    border: none;
    background: transparent;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.form-control,
.form-select {
    border: 1px solid #F4F4F4;
    padding: 14px 20px;
    border-radius: 0px;
}

.iti {
    width: 100%;
}

.form-step-1 {
    transition: transform 200ms ease-in-out;
}

.form-step-2 {
    transition: transform 200ms ease-in-out;
}

.hidden-left {
    transform: translateX(-120%);
}

.hidden-right {
    transform: translateX(120%);
}

.stepper .icon-wrapper {
    background: #FFF;
    color: var(--bs-brand-dark);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stepper .icon-wrapper.active {
    background: var(--bs-primary);
    color: var(--bs-text-white);
}

.stepper .icon-wrapper.active svg {
    display: none;
}

.stepper .icon-wrapper.completed {
    background: #10C2D3;
    color: var(--bs-text-white);
}

.stepper .icon-wrapper.completed span {
    display: none;
}

.stepper .h-devider {
    height: 3px;
    background: var(--bs-primary);
    width: 25px;
    margin-top: 20px;
}

.form-label.required::after {
    content: "*";
    color: var(--bs-text-red);
}

.address-icon {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #FFDFDF;
}

.message-title {
    font-size: 24px;
}

.btn-lg {
    font-size: 16px;
}

.custom-position-relative {
    position: static;
}

.custom-position-relative a {
    text-decoration: none;
}

.special-pad-card {
    border: 1px solid #BACFDD;
    background: #FAFDFF;
    min-height: 80px;
}

.special-card {
    min-height: 80px;
    border: 1px solid #E4E4E4;
    background: #FFF;
}

.alpha-result {
    border-bottom: 1px solid #F3F3F3;
}

.hr-devider {
    border-bottom: 1px solid #F3F3F3;
}

.alpha-result ul {
    list-style-type: none;
    list-style: none;
    padding-left: 0px;
    margin-left: 0px;
}

.alpha-result ul li {
    color: #858585;
}

.alpha-result ul li a {
    color: var(--bs-text-primary) !important;
}

.btn-default:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-bg-light) !important;
}

.btn-default:hover span {
    color: var(--bs-bg-light) !important;
}

.btn-default:hover svg {
    filter: invert(100%) !important;
}

.offcanvas {
    position: relative;
}

.offcanvas .submenu {
    position: absolute;
    top: 0px;
    left: 0%;
    z-index: 0;
    transition: linear left .2s;
}

.offcanvas .ssubmenu {
    position: absolute;
    top: 0px;
    left: 100%;
    z-index: 1;
    transition: linear left .2s;
}

#navbar.bg-dark a:hover {
    color: var(--bs-secondary);
}

,
#navbar.bg-dark a.active {
    color: var(--bs-secondary);
}

#navbar .submenu a:hover {
    color: var(--bs-primary) !important;
}

#navbar .submenu a.active {
    color: var(--bs-primary) !important;
}

@media (min-width: 576px) {
    #navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    #navbar .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }

    .fs-16-18px {
        font-size: 18px !important;
    }

    .fs-18-20px {
        font-size: 20px !important;
    }

    .doctor-card .btn,
    .doctor-profile .btn {
        font-size: 16px;
    }

    .make-appointment {
        font-size: 20px;
    }

    .sl-slide {
        width: 50%;
    }

    .section-1 .s-block .col-3 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-menu {
        font-size: 16px;
    }

    .doctor-card .doctor-profile-img {
        background: #F3F8FF;
        width: 264px;
        height: 285px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .doctor-card .doctor-profile-img2 {
        background: #F3F8FF;
        width: 264px;
        height: 250px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .topic-title {
        font-size: 20px;
    }
}

@media (min-width: 720px) {
    .sm-left .submenu-wrapper {
        border-right: 1px solid whitesmoke;
    }

    .submenu-wrapper {
        max-height: 400px;
        min-width: 250px !important;
        height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 20px;
    }

    #navbar .nav-link {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .topic-title {
        font-size: 22px;
    }

    .fs-18-20px.extra {
        font-size: 22px !important;
    }

    .carousel-title {
        bottom: 40%;
    }

    .label-box {
        bottom: calc(40% - 60px);
    }

    .special-pad-card {
        min-height: 100px;
    }

    .special-card {
        min-height: 100px;
    }

    .custom-position-relative {
        position: relative;
    }

    .custom-position-relative a {
        text-decoration: none;
        white-space: nowrap;
    }

    .btn-lg {
        font-size: 20px;
    }

    .btn-search-action.dropdown-toggle::after {
        font-size: 16px !important;
    }

    body {
        padding-bottom: 0px !important;
    }

    .stepper .h-devider {
        width: 100px;
    }

    .doctor-profile {
        border: 0px;
        background: transparent;
        padding: 8px;
    }

    .bg-md-F6FAFF {
        background: #F6FAFF;
    }

    .card-md-border {
        border: 1px solid var(--bs-border);
        background: #FFF;
    }

    .appointment-form-card,
    .enquiry-form-card {
        max-width: 920px;
    }

    .doctor-profile-details-wrapper {
        max-width: 1000px;
    }

    .doctor-profile-details-card {
        border: 1px solid var(--bs-border);
        background: #FFF;
        padding: 40px 60px !important;
        margin-left: auto;
        margin-right: auto;
        margin-top: 60px;
    }

    .doctor-profile .doctor-profile-img {
        background: #FFF;
        width: 100%;
        height: 100%;
        aspect-ratio: 1.3/1;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .doctor-card .action-icon,
    .doctor-profile .action-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .doctor-card .doctor-profile-details .title,
    .doctor-profile .doctor-profile-details .title {
        font-size: 24px;
    }

    .doctor-card .doctor-profile-details span,
    .doctor-profile .doctor-profile-details span {
        font-size: 18px;
    }

    .btn-search-action {
        border: 0px;
        background: transparent;
        font-size: 16px;
    }

    .carousel .overlay {
        opacity: 0.7;
        background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    }

    .details-block .block-title {
        font-size: 20px;
    }

    .footer-menu-header {
        font-size: 20px;
        width: 200px;
        padding: 8px 0px;
    }

    .search-box {
        width: 90%;
    }

    .search-bar-wrapper {
        position: absolute;
        bottom: -38px;
    }

    .search-bar-wrapper .search-bar-btn,
    .search-bar-wrapper-common .search-bar-btn {
        position: absolute;
        right: 16px;
        top: 20px !important;
        font-size: 20px;
    }

    .search-input-bar {
        padding: 24px 24px;
        background: #FFF;
        border: none;
        font-size: 20px;
        box-shadow: 0px 510px 143px 0px rgba(0, 0, 0, 0.00), 0px 326px 131px 0px rgba(0, 0, 0, 0.01), 0px 184px 110px 0px rgba(0, 0, 0, 0.05), 0px 82px 82px 0px rgba(0, 0, 0, 0.09), 0px 20px 45px 0px rgba(0, 0, 0, 0.10);
    }

    h1 {
        font-size: 28px;
    }

    h1.location-title {
        font-size: 36px;
    }

    h1.about-title {
        font-size: 32px !important;
    }

    .sjmc-pagination {
        gap: 12px;
    }

    .sm-left {
        border-right: 1.5px solid #E7E7E7;
    }

    .submenu {
        box-shadow: 0px 829px 232px 0px rgba(0, 0, 0, 0.00), 0px 530px 212px 0px rgba(0, 0, 0, 0.01), 0px 298px 179px 0px rgba(0, 0, 0, 0.05), 0px 133px 133px 0px rgba(0, 0, 0, 0.09), 0px 33px 73px 0px rgba(0, 0, 0, 0.10);
    }

    .pb-lg {
        padding-bottom: 80px !important;
    }

    .banner,
    .banner-2 {
        height: 400px;
        min-height: 400px;
    }


    .fs-title {
        font-size: 50px;
    }

    .fs-subtitle {
        font-size: 18px !important;
    }

    .navbar .dropdown-menu {
        display: block;
    }

    .navbar .sm-btn.active {
        color: var(--bs-primary);
        font-weight: 500 !important;
    }

    .sticky {
        width: 120px !important;
        left: 0%;
        bottom: 35%;
        padding: 2px;
    }

    .sticky .bg-white {
        width: calc(100% - 4px);
        background: #FFF;
        box-shadow: 82px 56px 28px 0px rgba(120, 120, 120, 0.00), 53px 36px 26px 0px rgba(120, 120, 120, 0.01), 30px 20px 22px 0px rgba(120, 120, 120, 0.05), 13px 9px 16px 0px rgba(120, 120, 120, 0.09), 3px 2px 9px 0px rgba(120, 120, 120, 0.10);
    }

    .sticky span {
        font-size: 14px !important;
        text-align: center !important;
        line-height: 14px;
    }

    .sticky svg {
        height: 30px !important;
        width: auto;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .alphabets-small .item {
        display: flex;
        width: 55px;
        height: 55px;
        padding: 8px;
    }


    .alphabets .item {
        width: 50px;
        height: 50px;
        padding: 12px;
        gap: 10px;
    }

    .section-1 .s-block {
        position: relative;
    }

    .mt-lg {
        margin-top: 120px !important;
    }

    .mt-md {
        margin-top: 80px !important;
    }

    .s-block .s-block-item {
        font-size: 20px;
        text-align: left;
    }

    .section-1 svg {
        height: 40px;
    }

    .sl-slide {
        width: 33.3%;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .details-block {
        font-size: 17px;
        width: calc(100% - 350px);
        min-height: 280px;
        padding: 12px 12px;
        gap: 8px;
    }

    .block-divider {
        width: 32px;
    }

    .img-block {
        width: 350px;
        height: 280px;
        max-height: 350px;
        min-height: 280px;
        min-width: 340px;
        aspect-ratio: 350/286 !important;
    }

    .label-box {
        height: 50px;
        position: absolute;
        left: 0;
    }

    .carousel .swiper-slide {
        aspect-ratio: 828/400;
        width: 100%;
    }

    .carousel .top-slide-img {
        height: 100% !important;
        aspect-ratio: 828/400;
        width: auto;
        object-fit: cover;
        object-position: bottom right;
    }

    .carousel .promo-img {
        height: 100% !important;
        aspect-ratio: 828/400;
        width: auto;
        object-fit: cover;
        object-position: bottom right;
    }

    .doctor-card button.btn-text {
        font-size: 15px !important;
    }
}

@media (min-width: 992px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 40px;
    }

    .style-text {
        font-size: 86px;
        line-height: 46px;
    }

    .carousel .swiper-slide {
        aspect-ratio: 1728/400;
        width: 100%;
    }

    .carousel .top-slide-img {
        height: 100% !important;
        min-width: 100% !important;
        object-fit: cover;
        aspect-ratio: 1728/400;
        object-position: top right;
    }

    .carousel .promo-img {
        height: 100% !important;
        min-width: 100% !important;
        object-fit: cover;
        aspect-ratio: 1728/400;
        object-position: top right;
    }

    .bg-dark .navbar-nav,
    .bg-white .navbar-nav,
    .submenu li,
    .submenu a {
        font-size: 17px;
    }

    .doctor-card .btn,
    .doctor-profile .btn,
    .doctor-card .btn,
    .doctor-profile .btn span {
        font-size: 14px !important;
    }

    .sticky {
        width: 120px !important;
        left: 1%;
        bottom: 35%;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

@media (min-width: 1369px) {
    .max-width {
        max-width: 2000px;
    }
}

@media (min-width: 1800px) {
    .w-120 {
        width: 100%;
        margin-left: 0px !important;
    }
}

@media (max-width: 719px) {
    .doctor-profile-details-wrapper h4 {
        font-size: 18px;
    }

    .social-icon {
        height: 50px;
        width: auto;
    }

    .doctor-profile-details-card .title {
        font-size: 17px !important;
    }

    #navbar {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        max-width: 100vw !important;
        overflow-x: hidden;
    }

    .nav-link.dropdown-toggle::after {
        position: absolute;
        right: 20px;
    }

    .navbar-collapse {
        padding-left: 8px;
        padding-right: 8px;
        overflow-x: hidden;
        max-width: 100%;
    }

    .nav-link {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .news-card .title,
    .col-card .title {
        font-size: 18px !important;
    }

    .search-bar-wrapper.inside {
        position: absolute;
        bottom: -28px;
    }

    .btn-responsive {
        width: 100%;
    }

    .banner {
        height: 180px;
        min-height: 180px;
    }

    .banner-overlay {
        background: linear-gradient(90deg, #0A3C83 0%, rgba(99, 106, 116, 0.6) 100%);
    }
}