@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --heading-1: 6rem;
    --heading-2: 5rem;
    --heading-3: 4.5rem;
    --heading-4: 3.8rem;
    --heading-5: 2.8rem;
    --heading-6: 2rem;
    --body-font-medium: 2rem;
    --text-paragraph: 1.8rem;
    --text-sm: 1.4rem;
    --default-font-family: "Plus Jakarta Sans", sans-serif;
    --theme-color-light: #0C90D1;
    --theme-color-dark: #0E0059;
    --theme-gradiant-bg: transparent linear-gradient(180deg, #0C90D1 0%, #0B6EC3 100%) 0% 0% no-repeat padding-box;
}

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

html {
    scroll-behavior: smooth;
    /* font-size: 62.5%; */
    font-size: 10px;
}

body {
    font-family: var(--default-font-family);
    font-weight: 500;
    font-size: var(--body-font-medium);
    font-style: normal;
    line-height: normal;
    color: #515151;
    background: #fff;
}


h1 {

    font-size: var(--heading-1);
    color: #fff;
}

h2 {
    font-size: var(--heading-2);
}

h3 {
    font-size: var(--heading-3);
    font-weight: 600;
}

h4 {

    font-size: var(--heading-4);
}

h5 {

    font-size: var(--heading-5);
}



h6 {
    font-size: var(--heading-6);
}

p, li {
    font-size: var(--text-paragraph);
    color: #131313;
    line-height: 150%;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
    cursor: pointer;
}


.text-underline {
    text-decoration: underline;
}

.text-sm {
    font-size: var(--text-sm);
}

button {
    border: none;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}

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

.text-red {
    color: #f00;
}

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

.theme-color-dark {
    color: var(--theme-color-dark);
}


.theme-color-light {
    color: var(--theme-color-light);
}

.default-btn {
    padding: 2.2rem 2.8rem;
    color: #FFF;
    font-size: var(--body-font-medium);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    border-radius: 0.8rem;
    display: inline-block;
    border: none;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    overflow: hidden;

}


.theme-bg-btn {
    background: var(--theme-gradiant-bg);
    /* border: 1px solid #0000; */
    border: none;
}

.white-bg-btn {
    background: #FFF;
    color: var(--theme-color-dark);
}


.default-btn:hover {
    color: #FFF;
    /* border: 1px solid #0000; */
}

.blury-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #FFF;
}

.theme-bg-btn:hover {
    /* background: transparent linear-gradient(180deg, #67afd3 0%, #01325d 100%) 0% 0% no-repeat padding-box;
    border: 1px solid #0000; */
}


.default-btn:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 110%;
    width: 0;
    background: transparent linear-gradient(180deg, #67afd3 0%, #01325d 100%) 0% 0% no-repeat padding-box;
    top: 0;
    margin: auto;
    transform: scaleX(0) skewX(-35deg);
    transition: 0.5s;
    z-index: -1;
}

.default-btn:hover:after {
    transform: scaleX(1.5) skewX(-35deg);
    width: 100%;
}



.header-btn .default-btn {
    padding: 2.2rem;
}

.text-gradiant-theme-title {
    background: linear-gradient(90deg, #7F5838 0%, #D3B468 12.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradiant-theme {
    background: linear-gradient(90deg, #7F5838 0%, #D3B468 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pt-10 {
    padding-top: 1rem;
}

.pt-20 {
    padding-top: 2rem;
}

.pt-30 {
    padding-top: 3rem;
}

.pt-40 {
    padding-top: 4rem;
}

.pt-50 {
    padding-top: 5rem;
}

.pt-60 {
    padding-top: 6rem;
}

.pt-70 {
    padding-top: 7rem;
}

.pt-80 {
    padding-top: 8rem;
}

.pt-90 {
    padding-top: 9rem;
}

.pt-100 {
    padding-top: 10rem;
}

.pt-110 {
    padding-top: 11rem;
}

.pb-10 {
    padding-bottom: 1rem;
}

.pb-20 {
    padding-bottom: 2rem;
}

.pb-30 {
    padding-bottom: 3rem;
}

.pb-40 {
    padding-bottom: 4rem;
}

.pb-50 {
    padding-bottom: 5rem;
}

.pb-60 {
    padding-bottom: 6rem;
}

.pb-70 {
    padding-bottom: 7rem;
}

.pb-80 {
    padding-bottom: 8rem;
}

.pb-90 {
    padding-bottom: 9rem;
}

.pb-100 {
    padding-bottom: 10rem;
}

.pb-110 {
    padding-bottom: 11rem;
}

.ptb-10 {
    padding: 10px 0;
}

.ptb-20 {
    padding: 20px 0;
}

.ptb-30 {
    padding: 30px 0;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-60 {
    padding: 60px 0;
}

.ptb-70 {
    padding: 7rem 0;
}

.ptb-80 {
    padding: 8rem 0;
}

.ptb-90 {
    padding: 9rem 0;
}

.ptb-100 {
    padding: 10rem 0;
}

.ptb-110 {
    padding: 11rem 0;
}



.mt-10 {
    margin-top: 1rem;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-30 {
    margin-top: 3rem;
}

.mt-40 {
    margin-top: 4rem;
}

.mt-50 {
    margin-top: 5rem;
}

.mt-60 {
    margin-top: 6rem;
}

.mb-10 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mb-30 {
    margin-bottom: 3rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.mb-50 {
    margin-bottom: 5rem;
}

.mb-60 {
    margin-bottom: 6rem;
}

.mtb-10 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mtb-20 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mtb-30 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mtb-40 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.mtb-50 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mtb-60 {
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.tagline {
    border-radius: 0.8rem;
    border: 1px solid #FFF;
    padding: 1.1rem;
    display: inline-block;
}


.tagline-theme {
    color: var(--theme-color-light);
    border: 1px solid var(--theme-color-light);
    padding: 0.3rem 2.7rem;
    border-radius: 4.2rem;
    display: inline-block;
}


.bg-black,
.bg-dark,
.bg-black p,
.bg-dark p {
    color: #fff;
}

.w-80 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.title-w-50 {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.padding-right-5 {
    padding-right: 5rem;
}

.padding-left-5 {
    padding-left: 5rem;
}

.relative {
    position: relative;
}

.theme-bg-gradiant {
    background: var(--theme-gradiant-bg);
}

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

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

.bg-grey {
    background: linear-gradient(0deg, #F1F3F3 0%, #F1F3F3 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}

/*=== Header =====  */
.navbar-brand {
    max-width: 13rem;
}

.header-inner.site-header .navbar-nav {
    margin: 0 auto;
}

.header-inner.site-header .navbar-nav .nav-item .nav-link {
    font-size: var(--body-font-medium);
    padding: 1rem;
    color: #000;
    letter-spacing: 0.4px;
}

.header-inner.site-header .navbar-nav .nav-item:not(:last-child) {
    margin-right: 2.1rem;
}

.site-header nav.navbar {
    padding: .8rem 0;
}

.main-header {
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
}


/*=== Header =====  */

/* ====Banner=== */
.baner-section {
    max-width: 852px;
    padding: 8rem 0;
}

.home-banner-sec {
    /* height: 100vh; */
}

.inner-banner-section {
    background-size: cover;
    background-position: center center;
    height: 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.inner-banner-section:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008f;
    z-index: -1;
}

.inner-banner-section .container {
    display: flex;
    height: 100%;
    align-items: center;
}

.banner-btn-group {
    display: flex;
    gap: 1.1rem;
}

.baner-section h5 {
    margin-bottom: 5.6rem;
    margin-top: 1.9rem;
}

/* ====Banner=== */

/* ====Video section =====*/

.videoplaceholder {
    /* height: 84rem; */
    border-radius: 1.7rem;
    padding: 2.6rem 2.8rem;
    background: rgba(255, 255, 255, 0.10);
    margin-top: -2.8rem;
}

.videoplaceholder video {
    width: 100%;
    height: 100%;
}



/* ====Video section =====*/


/* contact form  */
.contact-form {
    padding: 10rem 0;
}

.contact-form-block {
    padding: 11rem 8.7rem;
    border-radius: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: rgba(255, 255, 255, 0.10);
}

.contact-form-content h2 {
    font-size: 10rem;
    font-weight: normal;
    line-height: 101%;
    display: inline-block;
    border-bottom: 7px solid #fff;
    padding-bottom: 1.4rem;
    margin-bottom: 3rem;
    color: #fff;
}

.contact-form-content h5 {
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 4.3rem;
    max-width: 445px;
    text-transform: none;
    color: #fff;
}

.form-layout .form-control {
    padding: 2rem 0;
    background: #0000;
    border: none;
    outline: none;
    box-shadow: none;
    color: #fff;
    font-size: var(--body-font-medium);
    border-bottom: 1px solid rgb(255 255 255 / 80%);
    border-radius: 0;
    font-weight: 500;
}

.form-layout .form-control::placeholder {
    color: #fff;
    font-weight: 500;
}

.form-layout .form-group {
    margin-bottom: 2.4rem;
}

.form-layout textarea.form-control {
    min-height: 13rem;
    max-height: 20rem;
}

/* contact form  */

/* newsletter sec  */
.newsletter-sec {
    padding-top: 4.6rem;
    padding-bottom: 5.9rem;
}

.newsletter-sec-content h5 {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1.3rem;
    color: #fff;
}

.newsletter-sec-content h3 {
    max-width: 60rem;
    font-weight: normal;
    color: #fff;
}

.newsletter-form-group {
    display: flex;
    padding: 0.7rem 0.9rem 0.7rem 1.9rem;
    border-radius: 1.2rem;
    background: #FFF;
}

.newsletter-form-group .form-control {
    font-size: var(--body-font-medium);
    border: none;
    box-shadow: none;
    outline: none;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #7D7D7D;
}

/* newsletter sec  */

/* Footer section  */
.footer {

    background-size: cover;

    background-repeat: no-repeat;
}

.upper-footer {
    padding: 8rem 0;
    background-size: contain;
    font-size: var(--text-paragraph);
    color: #131313;
}

.footer-bottom {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 2px solid rgb(0 0 0 / 32%);
}

.footer-bottom p {
    margin: 0;
    font-size: var(--body-font-medium);
    font-weight: 300;
    letter-spacing: 0.4px;
}


.footer-title h5 {
    margin-bottom: 3.5rem;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.footer-links li {
    padding: 1rem 0;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.4px;
}

.footer li a:hover {
    color: var(--theme-color-light);
}

.footer-address li:last-child {
    margin-bottom: 0;
}

.footer-address li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.4px;
    font-size: var(--body-font-medium);
    margin-bottom: 1.1rem;
}

.footer-logo {
    max-width: 25rem;
    filter: invert(1);
}

.footer-address li p {
    line-height: 150%;
    letter-spacing: 0.4px;
    /* font-size: var(--body-font-medium); */
    font-weight: 300;
    /* color: #fff;  */
}

.social-icon {
    display: flex;
    gap: 0.8rem;
    max-width: 258px;
    margin-top: 2.2rem;
}

/* Footer section  */

/* About section */
.about-sec-content {
    padding: 4rem;
    border: 0.8rem solid var(--theme-color-dark);
    border-radius: 0.6rem;
    background: #f9fbfc5e;
}

.about-sec-content p:first-child {
    margin-bottom: 3rem;
}

.abt-ul p {
    margin-bottom: 0;
}

.abt-ul li {
    margin-bottom: 1.5rem;
}

.color-grey p {
    color: #626262;
}

.footer-about p {
    margin-top: 1.1rem;
    font-weight: 500;
}

ul.social-icon li {
    max-width: 4rem;
    height: 4rem;
}

ul.social-icon li img {
    height: 100%;
    width: 100%;
}

.why-choose-us {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    background-attachment: fixed;
    color: #fff;
}

.why-choose-us::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008f;
    z-index: -1;
}

.why-choose-content p {
    color: #fff;
}

.why-choose-content .abt-ul {
    margin: 2rem;
    margin-right: 0;
}

.dental-scheme-block-header {
    background: linear-gradient(90deg, #0160ac 0%, #21aaef 100%);
    text-align: center;
    padding: 1.4rem 1rem;
    border-radius: 1.5rem 1.5rem 0 0;
    margin-bottom: 1.6rem;
    color: #fff;
}

.dental-scheme-block {
    padding: 0.7rem 0.7rem 3.9rem 0.7rem;
    border-radius: 2rem;
    background: rgb(234 248 255);
    margin-bottom: 2.1rem;
}

.dental-scheme-block-content li {
    padding: 0 2rem;
    margin-bottom: 1.6rem;
}

.dental-scheme-block-content li:last-child {
    margin-bottom: 0;
}

.msg-box {
    padding: 2rem;
    background: #f6f6f6;
    padding-left: 2.5rem;
    border-left: 1rem solid #000;
}

.orange-border {
    border-color: #eda004;
}

.light-blue-border {
    border-color: var(--theme-color-light);
}

.document-required .card {
    padding: 2.6rem 2rem;
    box-shadow: 0 0 69px 0 #00000014;
}

.list-disc {
    list-style: disc;
    padding-left: 3rem;
}

/* About section */

/* =====Faq Section Start===== */

.faq-section .accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #ebebeb;
}

.faq-section .accordion-button {
    font-size: inherit;
    box-shadow: none;
    background: var(--theme-color-dark);
    color: #fff;
    border-radius: 8px;
    gap: 2rem;
    border-radius: 0.4rem;
}

.faq-section .accordion-button:not(.collapsed) {
    border-radius: 0.4rem 0.4rem 0 0;
}

.faq-section .accordion-item .accordion-header {
    font-size: var(--body-font-medium);
}

.faq-section .accordion-button::after {
    background-color: var(--theme-color-light);
    height: 25px;
    width: 25px;
    background-position: center;
    border-radius: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M7 7V.5h2V7h6.5v2H9v6.5H7V9H.5V7z'/%3E%3C/svg%3E");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M15 9H1V7h14z'/%3E%3C/svg%3E");
}

.check-square-list li:not(:last-child) {
    margin-bottom: 15px;
}

.check-square-list li {
    display: flex;
    /* gap: .5rem; */
    align-items: flex-start;
}

.check-square-list li i {
    line-height: 1.5;
}

.check-color-orange i {
    color: var(--theme-color);
    margin-right: 1rem;
}

/* =====Faq Section End======= */