@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap');

body {
    font-family: "Manrope", sans-serif;
}

html {
    scroll-behavior: smooth;
}
*{box-sizing: border-box;}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter Tight", sans-serif;
}

/********** Global Styles **********/
.bg-yellow {
    background-color: #FF9C00;
}

.btn-blue {
    background-color: #0099FF;
    padding: 10px 20px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-blue:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #E0DEDE;
    transform: translateY(-10px);

}

.btn-orange {
    background-color: #FF6A00;
    padding: 10px 20px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-orange:hover {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    transform: translateY(-10px);

}

.btn-transparent {
    background-color: transparent;
    color: #fff;
    border: 1px solid #E0DEDE;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-transparent:hover {
    background-color: #0099FF;
    color: #fff;
    transform: translateY(-10px);
}

.section-title {
    font-size: 20px;
    color: #969696;
    text-align: center;
    margin-bottom: 0;

}


/********** Navigation bar ************/
header.main-header {
    position: fixed;
    top: 10px;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
}

header.main-header .container {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 1420px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-logo {
    max-width: 210px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #ddd !important;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 8px 15px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 50px;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}


.login-btn {
    background: #0099ff;
    color: #fff !important;
    font-weight: 500;
}

.login-btn:hover {
    background: #0b5ed7;
}

/*****Carousel Slider*****/

#carouselSFIEDU .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 15rem;
    max-width: 600px;
    text-align: left;
    padding: 1.25rem;
    color: #fff;
    z-index: 5;
}

#carouselSFIEDU .carousel-caption h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

#carouselSFIEDU .carousel-caption .banner-title {
    font-size: 18px;
    color: #fff;
}

#carouselSFIEDU .carousel-caption p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;

}

#carouselSFIEDU .carousel-caption p span {
    color: #FFEA00;
    font-weight: 600;
}

#carouselSFIEDU .banner-btngroup {
    display: flex;
    justify-content: start;
    gap: 10px;
}

#carouselSFIEDU .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #363636;
}

#carouselSFIEDU .carousel-indicators .active {
    background-color: #fff;
}

.banner-star img {
    height: 23px;
    width: 23px !important;
}

/* **Trusted by dentists,
healthcare teams,
and professionals worldwide** */

.trusted-section .subtitle-wrapper {
    position: relative;
    text-align: center;
}

.trusted-section .subtitle-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C7C7C7;
    z-index: 0;
}

.trusted-section .subtitle {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #C7C7C7;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.95rem;
    color: #000;
    z-index: 1;
    font-size: 24px;
}

.trusted-section {
    background-color: #fff;
}

.trusted-text hr {
    z-index: 0;
    border-color: #ddd;
}

.trusted-text span {
    font-size: 0.95rem;
    color: #555;
}

.trusted-section h2 {
    font-size: 72px;
    color: #000;
}

.text-highlight {
    color: #FFAD72;
}

.trusted-section small {
    display: block;
    margin-top: 0.25rem;
    font-size: 16px;
    color: #000;
}

@media (min-width: 768px) {
    .trusted-item:not(:last-child) {
        border-right: 1px solid #e5e5e5;
    }
}

/* About us */

.about-us .bg-lightblue {
    background: linear-gradient(106.25deg, #0F1238 49.61%, #0099FF 139.29%);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 8px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.about-us img {
    object-fit: cover;
    height: 100%;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.about-us .about-content .section-title {
    text-align: left;
    font-size: 20px;
    color: #fff;
    position: relative;
    padding-left: 10px;
}

.about-us .about-content .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background-color: #FF6A00;
    border-radius: 2px;
}

.about-us .about-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 10px 0;
    color: #fff;
}

.about-us .about-content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    color: #fff;
}

/* **Our Courses** */

.our-courses .section-subtitle {
    text-align: center;
    font-size: 18px;
    background-color: #f5f5f5;
    border: 1px solid #E2E2E2;
    max-width: fit-content;
    margin: 0 auto 10px;
    padding: 10px 20px;
    border-radius: 50px;
}

.our-courses h2 {
    font-size: 42px;
    color: #020653;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.our-courses .course-card .credit-hours {
    background-color: #3FC073;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    position: absolute;
    top: -5px;
    right: 15px;
    z-index: 1;
}

.our-courses .course-card .credit-hours p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.our-courses .course-card .credit-hours p span {
    font-weight: 700;
    color: #FFEA00;
}

.our-courses .course-card {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
    padding-bottom: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
}

.our-courses .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.our-courses .course-card .course-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 10px 10px;
    color: #020653;
}

.our-courses .course-card .course-description {
    font-size: 16px;
    color: #333333;
    margin: 0 10px 15px;
    padding: 7px 10px;
    line-height: 1.5;
    background-color: #EFF8FF;
    max-width: fit-content;
    width: 100%;
    border-radius: 5px;
}

.our-courses .course-card .btn-group {
    list-style: none;
    padding: 0 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.our-courses .course-card .btn-group li {
    margin: 0;
}

.our-courses .course-card .btn-group li .btn {
    font-size: 16px;
    padding: 10px 20px;
    min-width: 185px;
    width: 100%;
}

.our-courses .course-card .btn-group li:last-child .btn {
    color: #000;
}

.our-courses .btn-explore-courses {
    border: 1px solid #E0DEDE;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    display: flex;
    margin: 0 auto;
    max-width: fit-content;
    width: 100%;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
}

.our-courses .btn-explore-courses:hover {
    background-color: #0099FF;
    color: #fff;
}

/*Owl Carousel Nav*/
.our-courses .owl-carousel .owl-nav.disabled {
    display: block !important;
}
.our-courses .owl-nav {
    position: absolute;
    top: 42%;
    width: 100%;
    transform: translateY(-50%);
    display: block !important;
}

.our-courses .owl-nav .owl-prev,
.our-courses .owl-nav .owl-next {
    background: transparent !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
    position: absolute;
    font-size: 20px !important;
    color: var(--white-color) !important;
    border: 1px solid var(--white-color) !important;
}

.our-courses .owl-nav .owl-prev:hover,
.our-courses .owl-nav .owl-next:hover {
    background-color: var(--primary-color) !important;
    color: var(--black-color) !important;
    border: none !important;
}

.our-courses .owl-nav .owl-prev {
    left: -50px;
}

.our-courses .owl-nav .owl-next {
    right: -50px;
}




/* **Carousel Training Workshops** */

#carouselTrainingworkshops .carousel-caption {
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-32%, -50%);
    text-align: left;
    color: #fff;
    max-width: 600px;
}

#carouselTrainingworkshops .carousel-caption .banner-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    padding-left: 10px;

}

#carouselTrainingworkshops .carousel-caption .banner-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background-color: #FF6A00;
    border-radius: 2px;
}

#carouselTrainingworkshops .carousel-caption h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
    text-align: left;
}

#carouselTrainingworkshops .carousel-caption p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* **featured-programs** */

.featured-programs {
    background-image: url(../images/featured-programs.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.featured-programs .section-subtitle {
    text-align: center;
    font-size: 18px;
    background-color: #f5f5f5;
    border: 1px solid #E2E2E2;
    max-width: fit-content;
    margin: 0 auto 10px;
    padding: 10px 20px;
    border-radius: 50px;
    color: #000;
}

.featured-programs h2 {
    font-size: 42px;
    color: #020653;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.featured-programs .card {
    background-color: #F9F9F9;
    border: 1px solid #DFDFDF;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    padding: 30px 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;

}

.featured-programs .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background-color: #D9F0FF;
    border: 1px solid #DFDFDF;
}

.featured-programs .card img {
    width: 100%;
    height: auto;
    max-width: 85px;
    max-height: 85px;
    margin: 0 auto;
}

.featured-programs .card .card-title {
    font-size: 24px;
    font-weight: 500;
    color: #020653;
    margin: 0;
    line-height: 1.7;
}

.featured-programs .card .card-text {
    color: #000;
    font-size: 16px;
    margin: 10px 0;
}

.featured-programs .card .btn {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    border: 1px solid #E0DEDE;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
}

.featured-programs .card:hover .btn {
    background-color: #0099FF;
    color: #fff;
}

.featured-programs .row {
    justify-content: center;
}

.featured-programs .row-two>.col-lg-4:nth-last-child(-n+2) {
    margin-left: 0rem;
    margin-right: 0rem;
}

/* **Course Speaker** */

.course-speaker {
    padding: 50px 0;
}

.course-speaker .container {
    background-image: url(../images/course-speaker.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 30px 0 0;
    overflow: hidden;
}

.course-speaker .course-speaker-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 600px;
}

.course-speaker .course-speaker-content p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-bottom: 15px;
}

.course-speaker .course-speaker-content h6 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}


.course-speaker-line .line {
    height: 1px;
    background-color: #FF6A00;
    margin-top: 5px;
    max-width: 90px;
}

.course-speaker-line p {
    font-weight: 500;
    color: #FF6A00 !important;

}


/* *** Testimonials *** */
.testimonials .section-subtitle {
    text-align: center;
    font-size: 18px;
    background-color: #f5f5f5;
    border: 1px solid #E2E2E2;
    max-width: fit-content;
    margin: 0 auto 10px;
    padding: 10px 20px;
    border-radius: 50px;
    color: #000;
}

.testimonials h2 {
    font-size: 42px;
    color: #020653;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-card .card {
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
}

.testimonial-card .card img {
    object-fit: cover;
    height: 100%;
    filter: brightness(85%);
    margin-bottom: 20px;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 35px;
}

.testimonial-card .card .card-img-overlay img {
    width: 54px;
    height: 47px;

}

.testimonial-card .card .text-highlight {
    color: #FF6A00;
    font-weight: 500;
}

.testimonial-card .card p {
    font-size: 16px;
    color: #D9D9D9;
    line-height: 1.6;
}

.testimonial-line .line {
    height: 1px;
    background-color: #999;
    margin-top: 5px;
    max-width: 90px;
}

.testimonial-line p {
    font-weight: 500;
    color: #FFf !important;

}

/* Get-in-touch */
.get-in-touch .container {
    background-image: url(../images/get-in-touch.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    overflow: hidden;
    padding: 30px;
}

.bg-darkblue {
    background: #020653;
}

.get-in-touch .get-touch-content small {
    font-size: 16px;
    color: #fff !important;
}

.get-in-touch .get-touch-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 20px;
    color: #fff;
}

.get-in-touch .get-touch-content h4 span {
    color: #FF6A00;
}

/* Form Styling */
.get-in-touch .form-control {
    border: 1px solid #B4B4B4;
    background-color: rgb(255, 255, 255);
    color: #7D7D7D;
}

.get-in-touch .form-control::placeholder {
    color: #7D7D7D;
    font-size: 14px;
}

.get-in-touch .form-control:focus {
    border-color: #ffc107;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: #fff;
}

/* FAQ Section  */

.faqs .faq-header .section-subtitle {
    text-align: center;
    font-size: 18px;
    background-color: #f5f5f5;
    border: 1px solid #E2E2E2;
    max-width: fit-content;
    margin: 0 auto 10px;
    padding: 10px 20px;
    border-radius: 50px;
    color: #000;
}

.faqs .faq-header h2 {
    font-size: 42px;
    color: #020653;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.faqs .faq-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #606060;
    margin-bottom: 20px;
}

.faqs .accordion-button:not(.collapsed),
.faqs .accordion-button:focus {
    background-color: transparent;
    color: 00;
    box-shadow: none;
}

.faqs .accordion-header span {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.faqs .faq-number {
    font-weight: bold;
    font-size: 1.5rem;
    color: gray;
    width: 50px;
}

.faqs .faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faqs .faq-icon {
    font-size: 1.5rem;
    width: 1.5rem;
    text-align: center;
}

.faqs .faq-section {
    max-width: 1000px;
    margin: 2rem auto;
}

.faqs .faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* .faqs .accordion-button::after {
    display: none;
} */

.faqs hr {
    border-top: 1px solid #000;
}

.faqs .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    background-color: #FF6A00;
    border-radius: 50%;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-image: none;
    transition: all 0.3s ease;
}

.faqs .accordion-button:not(.collapsed)::after {
    content: "\f077";
    background-color: #FF6A00;
}

.faqs .btn {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.faqs .btn:hover {
    background-color: #0099FF;
    color: #000;
}

/********Footer *******/
.footer {
    background-color: #0d0d0d;
    color: #fff;
    font-size: 14px;
}
.footer a {
    text-decoration: none;
}

.footer-box {
    background-color: #0D0C0C;
    border: 1px solid #434343;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-box i {
    font-size: 16px;
    color: #fff;
    background-color: #0D0C0C;
    border: 1px solid #434343;
    border-radius: 8px;
    padding: 10px;
    margin-right: 10px;
}

.footer-box span {
    color: #fff;
}

.footer-box:hover {
    background-color: #1f1f1f;
    border-color: #333;
}

.footer-bottom {
    border-color: #222 !important;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}


/* Breadcrumb hero / banner */
.breadcrumb-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 4rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5));
    z-index: 0;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5) !important;
}

.breadcrumb-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
}

.breadcrumb-hero .hero-title {
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.breadcrumb-hero .breadcrumb {
    background: transparent;
    padding: 0;
    justify-content: center;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .breadcrumb-hero {
        padding: 2rem 0;
        min-height: 160px;
    }

    .breadcrumb-hero .hero-title {
        font-size: 1.25rem;
    }
}

/* end Breadcrumb hero / banner */

.dental_area_list li a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
}

.dental_area_list li {

    list-style: none;

}




/* ****Responsive css */
@media screen and (max-width: 1699px) and (min-width: 1400px) {
    #carouselSFIEDU .carousel-caption {
        bottom: 9rem;
        left: 5%;
    }

}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .navbar-nav .nav-link {
        color: #000 !important;
        font-weight: 500;
        margin-right: 0;
        font-size: 14px;
    }

    .top-bar span {
        font-size: 14px;
    }

    .buried-treasure-content h2 {
        font-size: 1.5rem;
    }

    .collection-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 50px;
    }

    #carouselSFIEDU .carousel-caption {
        bottom: 3rem;
        left: 5%;
    }
    .our-courses .course-card .btn-group li .btn {
      min-width: 150px;
    width: 100%;
}
.custom-logo {
    max-width: 190px;
    object-fit: contain;
}
header.main-header{top: 0;}
nav.navbar{padding: 0px}
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .top-bar span {
        font-size: 13px;
    }

    .icon-box {
        padding: 0 8px;
    }
    .custom-logo {
    max-width: 190px;
    object-fit: contain;}
#carouselSFIEDU .carousel-caption h2{font-size: 32px;}
#carouselSFIEDU .carousel-caption{bottom: 1rem;}
header.main-header{top: 0;}
nav.navbar{padding: 0px}
#carouselTrainingworkshops .carousel-caption {
    position: absolute;
    top: 43%;
    left: 32%;
    transform: translate(-32%, -43%);}
    .our-courses .owl-nav .owl-prev {
    left: -30px;
}
.our-courses .owl-nav .owl-next {
    right: -30px;
}

}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 5px 10px;
        text-align: center;
    }

    .top-bar>.d-flex {
        flex-direction: column;
        align-items: center;
    }

    .icon-box {
        border-left: none;
        padding: 5px;
    }
#carouselSFIEDU .carousel-caption h2, .trusted-section .subtitle{font-size: 18px; margin-bottom: 0px}
#carouselSFIEDU .carousel-caption{bottom: 1rem; max-width:100%; left: 5%; right: 5%;}
#carouselSFIEDU .carousel-caption p{margin-bottom: 10px}
.trusted-section h2 {font-size: 38px; color: #000;}
.our-courses .course-card .btn-group li .btn {
    min-width: auto;}
    .about-us .about-content h2 {
    font-size: 26px;}

#carouselTrainingworkshops .carousel-caption {
    position: absolute;
    top: 23%;
    left: 32%;
    transform: translate(-32%, -23%);}

#carouselTrainingworkshops .carousel-caption h2 {
    font-size: 30px;   
    margin-bottom: 0rem;}  

}

@media screen and (max-width: 991px) {
header.main-header{top: 0;}
nav.navbar{padding: 0px}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    position: absolute;
    top: 120px;
    background: #fff;
    width: 100%;
    left: 0;
    padding-left: 10px;
}

}

@media screen and (max-width: 767px) {
.top-bar {flex-direction: column; height: auto; padding: 5px;  text-align: center; }
.top-bar>.d-flex {flex-direction: column; align-items: center;   gap: 5px; }
.top-bar span { font-size: 12px; line-height: 1.4; }
.icon-box { border-left: none; padding: 5px;}
.lang-select {font-size: 12px; height: auto; }
#carouselSFIEDU .carousel-caption h2{font-size: 18px; margin-bottom: 0;}
#carouselSFIEDU .carousel-caption{bottom: 1rem; left: 5%; right: 5%; max-width: 100%;}
.our-courses .owl-nav .owl-prev { left: 0;}
.our-courses .owl-nav .owl-next { right: 0px;}
.our-courses .course-card .btn-group li .btn { min-width: auto;}
.about-us .about-content h2 { font-size: 26px;}
#carouselTrainingworkshops .carousel-caption {
    position: absolute;
    top: 35%;
    left: 15%;
    transform: translate(-15%, -35%);
    width: 100%;
}

#carouselTrainingworkshops .carousel-caption h2 { font-size: 30px; margin-bottom: 0rem;}
#carouselSFIEDU .carousel-item { height: 450px;   position: relative; }
#carouselSFIEDU .carousel-item img {height: 100%; width: 100%; object-fit: cover; object-position: center; }
#carouselSFIEDU .carousel-caption { bottom: 40px; padding: 0;}
    header.main-header {position: sticky;}
.our-courses .course-card .btn-group { justify-content: start;}
  #carouselTrainingworkshops .carousel-item img {
        height: 450px;     
        object-fit: cover; 
    }

    #carouselTrainingworkshops .carousel-caption {
        bottom: 20px;
        padding: 0 10px;
    }
    .our-courses h2, .featured-programs h2, .testimonials h2, .faqs .faq-header h2 {
    font-size: 32px;}

}

@media screen and (max-width: 479px) {
 .our-courses h2, .featured-programs h2, .testimonials h2, .faqs .faq-header h2 {
    font-size: 26px;}
}

/*About us page*/
.title-about-us .page-body p, .title-dentistry .page-body p, .title-massage-therapist .page-body p {
    line-height: 1.7;
    color: #000;
}
.page-template-default h2{
    font-size: 32px;
    color: #020653;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;}

    .title-contact .page-content a {
    color: #020653;
}

.title-live-seminars .page-body a {
    color: #020653;
}
