* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    overflow-x: hidden;
}

@font-face {
    font-family: normal-para;
    src: url(../fonts/SFPRODISPLAYREGULAR.OTF);
}

@font-face {
    font-family: sfitalic-para;
    src: url(../fonts/SFPRODISPLAYHEAVYITALIC.OTF);
}

@font-face {
    font-family: med-para;
    src: url(../fonts/SFPRODISPLAYMEDIUM.OTF);
}

@font-face {
    font-family: sf-bold;
    src: url(../fonts/SFPRODISPLAYBOLD.OTF);
}

@font-face {
    font-family: headingtwo;
    src: url(../fonts/GalanoGrotesqueHeavy.otf);
}

@font-face {
    font-family: inter-regular;
    src: url(../fonts/Inter-Regular.ttf);
}

@font-face {
    font-family: golano-semi;
    src: url(../fonts/GalanoGrotesqueSemiBold.otf);
}

@font-face {
    font-family: golano-norm;
    src: url(../fonts/GalanoGrotesqueRegular.otf);
}

@font-face {
    font-family: norm-para-it;
    src: url(../fonts/GalanoGrotesqueAltMediumItalic.otf);
}

:root {
    --heading-one: 64px;
    --heading-two: 36px;
    --heading-approach: 56px;
    --heading-three: 22px;
    --heading-four: 20px;
    --norm-para: 18px;
    --navbar-anchor: 16px;
    --heading-five: 16px;
    --small-font: 14px;
}

@media all and (max-width:767px) {
    :root {
        --heading-one: 32px;
        --heading-two: 24px;
        /* --heading-three: 22px; */
        --heading-four: 16px;
        --heading-approach: 32px;
        /* --norm-para: 18px;
        --navbar-anchor: 16px; */
    }
}

body {
    font-family: normal-para;
    overflow-x: hidden;
}

h5 {
    font-size: var(--heading-five);
    font-family: med-para;
}

h2 {
    font-family: golano-semi;
    font-size: var(--heading-two);
}

h1 {
    font-family: golano-semi;
    font-size: var(--heading-one);
}

h3 {
    font-size: var(--heading-three);
    font-family: golano-semi;
}

h4 {
    font-family: sf-bold;
    font-size: var(--heading-four);
}

img {
    width: 100%;
    height: auto;
}

.wrap {
    max-width: 1200px;
    margin: auto;
}

.book-btn {
    background-color: rgba(183, 118, 65, 1);
    color: white;
    padding: 12px 24px;
    border-radius: 42px;
    font-size: var(--navbar-anchor);
    border: none;
    font-family: med-para;
    position: relative;
}

.book-btn:hover {
    color: white;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar-toggler span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 3px auto;
    background: black;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler:hover span,
.navbar-toggler:focus span {
    background: black;
}

/* rotate first span */
.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.navbar-toggler .navbar-toggler span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 6px auto;
    background: black;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

/* rotate first span */
.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(3px, 3px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(4.2px, -4px);
}

.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

@media all and (max-width:991px) {
    .main-nav a.nav-link {
        text-align: center;
    }
}

@media all and (max-width:767px) {
    .main-nav .navbar-collapse {
        padding-top: 10px;
    }

    .main-nav .container-fluid {
        justify-content: center;
    }

    .main-nav .navbar-brand img {
        width: 100px;
        height: 70px;
        object-fit: contain;
        /* margin-bottom: 10px; */
    }

    .main-nav .navbar-toggler {
        position: absolute;
        top: 20px;
        right: 15px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.main-nav.is-sticky {
    background: white;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.main-nav.is-sticky {
    width: 100%;
    position: fixed;
    /* padding: 8px 0; */
    /* backdrop-filter: blur(10px); */
    animation: slideDown 0.35s ease-out;
    /* background: #F5F2EC; */
    z-index: 100;
}

.main-nav .navbar-brand .sticky-logo {
    display: none;
}

.main-nav.is-sticky .navbar-brand .simple-logo {
    display: none;
}

.main-nav.is-sticky .navbar-brand .sticky-logo {
    display: block;
}

.main-nav.is-sticky .navbar-brand {
    padding: 0;
    background-color: inherit;
    padding: 10px 0;
}

@media all and (min-width:992px) {

    .main-nav.is-sticky .navbar-brand {
        padding: 0;
        background-color: inherit;
        padding: 10px 0;
    }

    .main-nav.is-sticky .navbar-brand .sticky-logo {
        width: 100px;
    }

}

.main-nav .navbar-brand {
    display: block;
    padding: 20px 50px 50px 50px;
    background-color: rgba(253, 244, 208, 1);
    border-radius: 0 0 100px 100px;
}



@media all and (max-width:767px) {
    .main-nav .navbar-brand {
        background: inherit;
        padding: 0;
    }
}

.main-nav .navbar-brand img {
    width: 148px;
}

.main-nav .navbar-nav a.nav-link {
    font-size: var(--navbar-anchor);
    font-family: normal-para;
    padding-right: 20px;
    padding-left: 25px;
    border-radius: 25px;
}

.main-nav .navbar-nav a.nav-link.active {
    background-color: #b77641;
    color: white;
}

.main-nav .btn-div .refer-btn {
    border: none;
    border: 1px solid rgba(183, 118, 65, 1);
    padding: 12px 28px;
    font-family: med-para;
    background: inherit;
    border-radius: 40px;
    font-size: var(--navbar-anchor);
    margin-right: 8px;
    color: black;
}

@media all and (max-width:991px) {
    .main-nav .btn-div .refer-btn {
        width: 200px;
    }

    .main-nav .btn-div .getin-btn {
        width: 200px;
    }
}

.main-nav .btn-div .getin-btn {
    border: none;
    background-color: #b77641;
    padding: 12px 28px;
    color: white;
    font-family: med-para;
    border-radius: 42px;
    font-size: var(--navbar-anchor);
}

@media all and (max-width:1360px) and (min-width:1169px) {
    .main-nav .navbar-nav a.nav-link {
        padding: 8px 20px;
    }
}

@media all and (max-width:1168px) and (min-width:991px) {
    .main-nav .navbar-nav a.nav-link {
        padding: 3px 16px;
    }
}

@media all and (min-width:992px) {

    .main-nav .btn-div,
    .main-nav .navbar-collapse {
        width: 33.3%;
    }

    .main-nav .btn-div {
        justify-content: end;
    }

    .main-nav .logo-div {
        margin-right: 0;
        width: 33.3%;
        display: flex;
        justify-content: center;
    }

    .main-nav .logo-div a.navbar-brand {
        margin-left: 0;
    }
}

@media all and (min-width:992px) {

    .dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        position: relative;
        /* font-size: 18px; */
        perspective: 1000px;
        z-index: 100;
    }

    .dropdown:hover {
        /* background: #2980b9; */
        cursor: pointer;
    }

    .dropdown:hover .dropdown_menu li {
        display: block;
        background: white;
        background-position: start;
    }

    .dropdown_menu {
        padding: 0;
        position: absolute;
        min-width: fit-content;
        top: 100%;
        left: 0;
        width: 100%;
        perspective: 1000px;
        z-index: 2;
        top: 48px;
    }

    .dropdown_menu li {
        display: none;
        /* padding: 10px 20px; */
        font-size: 16px;
        opacity: 0;
    }

    /* .dropdown_menu li:hover {
        background-color: #2980b9;
    } */

    .dropdown:hover .dropdown_menu--animated {
        display: block;
        top: 40px !important;
        border: none;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        overflow: hidden;
    }

    .dropdown_menu--animated {
        display: none;
    }

    .dropdown_menu--animated li {
        display: block;
        opacity: 1;
    }

    .dropdown-menu li:hover {
        background: #424242 !important;
        /* color: #224e68; */
    }

    .dropdown-menu li:hover a {
        color: white;
        background: inherit;
    }

    .dropdown_menu-6 {
        animation: growDown 300ms ease-in-out forwards;
        transform-origin: top center;
    }
}

@keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@media all and (max-width:1168px) and (min-width:991px) {
    .dropdown:hover .dropdown_menu--animated {
        top: 30.5px !important;
    }
}

@media all and (max-width:991px) {
    .main-nav .dropdown-menu li {
        opacity: 0;
        background-color: inherit;
    }

    .main-nav .dropdown-menu {
        border-color: rgba(183, 118, 65, 1);
        border-radius: 25px;
        overflow: hidden;
    }

    .main-nav .navbar-brand {
        margin-right: 0;
    }

    .main-nav .dropdown-menu li>a {
        text-align: center;
        color: rgba(183, 118, 65, 1);
    }

    .main-nav .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid rgba(250, 229, 144, 0.3);
    }

    /* .page-header .dropdown-menu li a {
        color: #c8a347;
        padding: 0.25rem 37px;
        font-size: 17px;
        text-align: center;
    } */

    .main-nav .dropdown-menu.show li:first-child {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: -150ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(2) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 0ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(3) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 150ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(4) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 300ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(5) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 450ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(6) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 600ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(7) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 750ms;
    }

    .main-nav .dropdown-menu.show li:nth-child(8) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 900ms;
    }

}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg), translateX(-50px);
    }

    50% {
        transform: rotateX(20deg), translateX(-25px);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg), translateX(0px);
    }

}

.index-header {
    position: relative;
    background: url(../img/index-header-bg.webp);
    background-size: cover;
}

@media all and (max-width:1053px) and (min-width:992px) {
    .main-nav .navbar-brand {
        padding: 10px 30px 30px 30px;
        border-radius: 0 0 70px 70px;
    }

    .main-nav .btn-div .getin-btn {
        padding: 8px 22px;
    }

    .main-nav .btn-div .refer-btn {
        padding: 8px 22px;
        margin-right: 5px;
    }
}

.index-header .content .col-lg-4>img {
    margin-bottom: -8px;
}

.index-header::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    background: url(../img/layers-header.webp);
    background-size: cover;
    height: calc(100% - 30%);
    left: 0;
    /* z-index: -1; */

}

.index-header .content {
    padding: 10px 15px;
    position: relative;
    z-index: 1;
}

.index-header .heading {
    max-width: 600px;
}

.index-header .para-div {
    max-width: 400px;
}

.index-header .content p {
    font-size: 20px;
}

@media all and (max-width:767px) {
    .index-header .content .img-div {
        position: absolute;
        right: -2px;
        bottom: -10px;
        display: flex;
        align-items: end;

    }

    .index-header .content .col-lg-8,
    .index-header .content .row {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .index-header .content {
        height: 400px;
    }

    .index-header .content .img-div>img {
        height: 430px;
        width: 200px;
        object-fit: contain;
        object-position: bottom;
    }

    .index-header .content .para-div {
        width: 50%;
    }
}

@media all and (max-width:395px) {
    .index-header .content .btn-div button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

.about-us {
    padding: 70px 15px;
    font-family: normal-para;
    font-size: var(--navbar-anchor);
    position: relative;
}

.about-us h2 {
    font-size: 38px;
}

.about-us p {
    font-size: 18px;
}

.about-us h5 {
    font-size: 20px;
    position: relative;
}

.about-us h5 a:hover {
    color: inherit;
    text-decoration: underline;
}

.about-us::before {
    content: "";
    width: 361px;
    height: 361px;
    position: absolute;
    top: 10px;
    left: 0;
    background: url(../img/side-teeth.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

@media all and (max-width:576px) {
    .about-us::before {
        width: 100px;
        height: 100px;
    }
}

.about-us h5 {
    color: rgba(196, 143, 99, 1);
    font-size: var(--norm-para);
    font-family: med-para;
}

/* .about-us .italic-para {
    font-family: sfitalic-para;
} */
.about-us .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.about-us .social-icons span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(246, 246, 246, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.about-us .social-icons a:hover {
    color: rgba(183, 118, 65, 1);
}

.about-us .last-para {
    margin-bottom: 20px;
}

@media all and (max-width:767px) {
    .about-us .social-icons {
        justify-content: center;
    }

    .about-us .btn-div {
        display: flex;
        justify-content: center;
    }
}

.getin-touch {
    padding: 50px 15px;
    /* background-color: #fbfbfb; */
}

.getin-touch .upper-para {
    font-size: 20px;
}

@media all and (max-width:767px) {
    .getin-touch {
        padding: 20px 15px;
    }
}

.getin-touch .inner {
    height: 100%;
    padding: 30px;
    box-shadow: 0 4px 54px 0 rgba(0, 0, 0, 0.06);
    background-color: white;
    border-radius: 16px;
}

.getin-touch input:not([type="checkbox"]),
.getin-touch select {
    height: 60px;
}

.getin-touch input:not([type="checkbox"]):focus,
.getin-touch select:focus,
.getin-touch textarea:focus {
    box-shadow: 0 0 0 1px rgba(13, 110, 253, .25);
}

@media all and (max-width:767px) {

    .getin-touch input:not([type="checkbox"]),
    .getin-touch select {
        height: auto;
    }
}

.getin-touch label {
    font-size: 16px;
}

@media all and (min-width:992px) {
    .getin-touch img {
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
}

.getin-touch input.form-control:not([type="checkbox"])::placeholder,
.getin-touch textarea.form-control::placeholder {
    color: rgba(184, 184, 184, 1);
    opacity: 1;
}

.practices {
    padding: 20px 15px;
    padding-bottom: 50px;
}

.practices .inner {
    height: 100%;
    box-shadow: 0 4px 54px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 20px;
}

@media all and (max-width:550px) {
    .practices .inner {
        flex-direction: column;
    }
}

.practices .inner .img-div {
    width: 122px;
}

/* .practices .inner .details {
    max-width: 250px;
} */

.practices .details .entity {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
}

.practices .details .entity>p {
    font-size: 14px;
    margin-bottom: 0;
}

.practices .details .entity>a:hover {
    color: rgba(183, 118, 65, 1);
}

footer {
    padding: 0 15px;
}

footer p>a:hover {
    color: rgba(183, 118, 65, 1);
    text-decoration: underline;
}

@media all and (max-width:576px) {
    .practices .details .entity>* {
        font-size: 14px;
    }

    .practices .logo-div img {
        width: 98px;
    }
}

footer .logo-div {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

footer .logo-div img {
    width: 188px;
}

@media all and (max-width:767px) {
    footer .logo-div {
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    footer .logo-div img {
        width: 100px;
    }

    footer {
        font-size: 13px;
    }
}

footer .bg-line {
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(246, 209, 66, 1), rgba(0, 0, 0, 0));
    width: 100%;
    height: 1px;

}

footer .privacy-main {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media all and (max-width:500px) {
    footer .privacy-main {
        flex-direction: column;
    }
}

footer p {
    margin-bottom: 0;
}

footer .privacy-cookie {
    display: flex;
    gap: 7px;
    align-items: center;
}

footer .privacy-cookie>a:hover {
    color: rgba(183, 118, 65, 1);
}

footer .privacy-cookie .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 1);
}

footer .social-icons {
    display: flex;
    gap: 10px;
}

footer .social-icons span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(249, 244, 240, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: rgba(183, 118, 65, 1);
}

.treatments {
    padding: 50px 15px;
    background-color: rgba(254, 251, 240, 1);
}

.treatments .upper-para {
    margin-bottom: 20px;
}

.treatments .upper-para>p {
    text-align: center;
    margin-bottom: 5px;
    font-size: 20px;

}

.treatments .upper-para p:last-of-type {
    margin-bottom: 0;
}

.treatments .btn-div {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.treatments .treatments-car {
    position: relative;
    padding: 0 20px;
}

.treatments .treatments-car .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.treatments .treatments-car .owl-nav button {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: none;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.06);

}

.treatments .treatments-car .owl-nav button>svg {
    width: 16px;
    height: 16px;
}

.treatments .treatments-car .owl-stage {
    display: flex;
}

.treatments .treatments-car .owl-stage-outer {
    overflow-x: hidden;
}

.treatments .content {
    background-color: white;
    padding: 20px 15px;
    border-radius: 0px 0px 8px 8px;
    flex-grow: 1;
}

.treatments .item .img-div {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.treatments .item img {
    transform: scale(1.2);
    transition: all .3s ease-in;
}

.treatments .item a:hover img {
    transform: scale(1);
}

.treatments .item {
    height: 100%;
}

.treatments .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treatments .item a:hover {
    color: inherit;
}

.treatments .content>p {
    margin-bottom: 0;
}

@media all and (min-width:992px) {
    .treatments .upper-para {
        margin-bottom: 50px;
    }

    .treatments .btn-div {
        margin-top: 50px;
    }
}

.always-bright {
    position: relative;
}

.always-bright .content {
    padding: 0 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 100%;
}

.always-bright .content h1 {
    text-align: center;
    color: white;
}

.patient-say {
    padding: 50px 15px;
}

.patient-say p.upper-para {
    font-size: 20px;
}

@media all and (max-width:767px) {
    .patient-say {
        padding: 20px 15px;
    }
}

.patient-say .owl-stage {
    display: flex;
}

.patient-say .heading-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    margin-bottom: 20px;
}

@media all and (max-width:600px) {
    .patient-say .heading-arrows {
        flex-direction: column;
    }
}

.patient-say .item,
.patient-say .item .content {
    height: 100%;
}

.patient-say .item .content {
    border-radius: 12px;
    background-color: rgba(254, 251, 240, 1);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.patient-say .star-img {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.patient-say .star-img img {
    width: 90px;
}

.patient-say .profile-img {
    display: flex;
    gap: 10px;
}

.patient-say .profile-img>img {
    width: 42px;
    align-self: center;
}

.patient-say .custom-nav {
    display: flex;
    gap: 10px;
}

.patient-say .custom-nav button {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: none;
    background: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);

}

.patient-say .custom-nav .owl-next {
    background-color: rgba(183, 118, 65, 1);
    color: white;
}

.patient-say .patient-say-car {
    margin-left: -50px;
}

.patient-say .name-patient h5 {
    margin-bottom: 7px;
}

.patient-say .name-patient p {
    font-size: 14px;
    margin-bottom: 0;
    color: rgba(159, 159, 159, 1);
}

.patient-say .btn-div {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.patient-say .btn-div button {
    font-size: 16px;
    color: rgba(26, 26, 26, 1);
    border: none;
    border: 1px solid black;
    border-radius: 8px;
    padding: 15px 28px;
    background-color: inherit;
}

/* .patient-car-helpr {
    margin-left: -50%;
} */

.patient-say .btn-div button span {
    margin-left: 8px;
}

@media all and (max-width:767px) {
    .patient-say .patient-say-car {
        margin-left: 0;

    }
}

@media all and (min-width:992px) {
    .patient-say .heading-arrows {
        margin-bottom: 40px;
    }

    .patient-say .btn-div {
        margin-top: 40px;
    }
}


/* services page started  */
.root-canal-header {
    position: relative;
    background: url(../img/index-header-bg.webp);
    background-size: cover;
}

.root-canal-header .content {
    position: relative;
    z-index: 1;
    padding: 50px 15px;
    padding-bottom: 300px;
}

.root-canal-header .content p {
    font-size: var(--heading-four);
}

@media all and (max-width:767px) {
    .root-canal-header .content {
        padding-bottom: 50px;
    }
}

.root-canal-header .content .para-div {
    max-width: 759px;
    margin: auto;
}

.root-canal-header::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    background: url(../img/layers-header.webp);
    background-size: cover;
    height: calc(100% - 30%);
    left: 0;
    /* z-index: -1; */
}

.root-canal-header .content .heading-line {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.root-canal-header .heading-line .first-line {
    height: 1px;
    /* flex-grow: 1; */
    background: linear-gradient(to right, rgba(246, 209, 66, 1), rgba(183, 118, 65, 1));
    width: 113px;
}

.root-canal-header .heading-line .second-line {
    height: 1px;
    /* flex-grow: 1; */
    background: linear-gradient(to right, rgba(246, 209, 66, 1), rgba(183, 118, 65, 1));
    width: 113px;
}

.root-canal-header .heading-line h5 {
    font-size: var(--navbar-anchor);
    color: rgba(183, 118, 65, 1);
    font-family: golano-norm;
    margin-bottom: 0;
}

@media all and (max-width:447px) {
    .root-canal-header .heading-line h5 {
        white-space: nowrap;
    }
}

.main-root-img {
    padding: 20px 15px;
}

.main-root-img .wrap {
    max-width: 1100px;
    margin: auto;
}

.main-root-img .img-div {
    margin-top: -280px;
    position: relative;
}

@media all and (max-width:767px) {
    .main-root-img {
        padding-top: 0;
        padding-bottom: 0;
    }

    .main-root-img .img-div {
        margin-top: -50px;
    }
}

.what-root {
    padding: 20px 15px;
    position: relative;
}

.what-root::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url(../img/right-teeth.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.what-root p {
    font-family: inter-regular;
    font-size: var(--heading-four);
}

.what-root h4 {
    font-family: golano-semi;
    font-size: var(--heading-three);
}

.what-root .btn-div {
    padding-top: 10px;
}

@media all and (max-width:767px) {
    .what-root .btn-div {
        display: flex;
        justify-content: center;
    }
}

.benefits-root {
    padding: 50px 15px;
    position: relative;
}

.benefits-root::before {
    content: "";
    position: absolute;
    left: 0;
    top: -130px;
    width: 180px;
    height: 180px;
    background: url(../img/side-teeth.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

.benefits-root .headings {
    max-width: 385px;
    margin: auto;
}

.benefits-root .headings span {
    color: rgba(183, 118, 65, 1);
}

.benefits-root .para-div {
    margin-bottom: 25px;
}

.benefits-root .uppr-para {
    font-size: var(--norm-para);
}

.benefits-root .inner .numbers {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.benefits-root .inner p {
    font-size: var(--norm-para);
}

.benefits-root .inner {
    background-color: rgba(252, 250, 247, 1);
    border-radius: 12px;
    padding: 20px 35px;
}

.benefits-root .inner .numbers h3 {
    margin-bottom: 0;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(246, 237, 230, 1);
    color: rgba(183, 118, 65, 1);
}

.canal-process {
    background-color: rgba(254, 251, 240, 1);
    padding: 40px 15px;
    position: relative;
}

.canal-process p.upper-para {
    font-size: var(--heading-four);
}

.canal-process::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: url(../img/right-teeth.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.canal-process p {
    font-size: var(--navbar-anchor);
}

.canal-process .inner {
    background: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
}

.canal-process .inner p {
    font-size: var(--norm-para);
    margin-bottom: 0;
}

.comfort-care {
    position: relative;
}

@media all and (max-width:600px) {
    .comfort-care img {
        height: 400px;
        object-fit: cover;
    }
}

.comfort-care .dynamic-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 816px;
    color: white;
}

.comfort-care .dynamic-content h2 {
    font-size: var(--heading-approach);
    color: white;
}

.comfort-care .dynamic-content h2 span {
    color: rgba(246, 209, 66, 1);
}

.comfort-care .dynamic-content p {
    font-size: var(--heading-four);
}

@media all and (max-width:820px) {
    .comfort-care .dynamic-content {
        width: 100%;
        padding: 0 15px;
    }
}

.aftercare-recovery {
    padding: 40px 15px;
}

.aftercare-recovery .btn-div {
    padding-top: 30px;
}

.aftercare-recovery p {
    font-size: var(--heading-four);
}

@media all and (max-width:767px) {
    .aftercare-recovery .btn-div {
        padding-top: 0;
        display: flex;
        justify-content: center;
    }
}

/* services page ended  */

/* referral-page started  */
.refferal-header {
    position: relative;
    background: url(../img/index-header-bg.webp);
    background-size: cover;
}

.refferal-header::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    background: url(../img/layers-header.webp);
    background-size: cover;
    height: calc(100% - 30%);
    left: 0;
}

.refferal-header .content {
    padding: 30px 15px;
    position: relative;
}

.refferal-header .content .para-div {
    max-width: 746px;
    margin: auto;
}

.refferal-form-main {
    padding: 30px 14px;
}

/* .refferal-form-main .same .invalid-feedback {
    position: absolute;
    bottom: -18px;
} */

.refferal-form-main .btn_div {
    position: relative;
    z-index: 1;
}

.refferal-form-main .entity {
    background-color: rgba(252, 250, 247, 1);
    padding: 30px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.refferal-form-main h2 {
    font-size: 32px;
    color: rgba(183, 118, 65, 1);
    margin-bottom: 30px;
}

.refferal-form-main input.form-control:not(.file) {
    height: 60px;
    border-radius: 8px;
    border: 1px solid rgba(237, 237, 237, 1);
    font-size: 14px;
    padding-left: 34px;
}

.refferal-form-main input.form-control:focus,
.refferal-form-main select:focus,
.refferal-form-main textarea.form-control:focus {
    box-shadow: 0 0 0 1px rgba(13, 110, 253, .25);
}

.refferal-form-main input.form-control.file {
    border: 1px solid rgba(237, 237, 237, 1);
    font-size: 14px;
    padding-left: 40px;
}

.refferal-form-main textarea.form-control {
    border: 1px solid rgba(237, 237, 237, 1);
    font-size: 14px;
    padding-left: 34px;
}

.refferal-form-main select.form-select {
    height: 60px;
    border-radius: 8px;
    border: 1px solid rgba(237, 237, 237, 1);
    font-size: 14px;
    padding-left: 34px;
    color: rgba(184, 184, 184, 1);
}

.refferal-form-main select.form-select option[selected] {
    color: rgba(184, 184, 184, 1);
}

.refferal-form-main .svg-div {
    position: absolute;
    top: 16px;
    /* transform: translateY(-50%); */
    left: 9px;
}

.refferal-form-main #file-uploader-div .svg-div {
    top: 50%;
    transform: translateY(-50%);
}

.refferal-form-main .svg-div.textarea-svg {
    top: 5px;
    transform: translateY(0);
}

.refferal-form-main .svg-div img {
    width: 20px;
    height: 20px;
}

.refferal-form-main input.form-control::placeholder,
.refferal-form-main textarea.form-control::placeholder {
    color: rgba(184, 184, 184, 1);
    opacity: 1;
    /* Firefox */
}

select.form-select:not(:focus) {
    color: rgba(184, 184, 184, 1);
    opacity: 1;
}

.refferal-form-main input.form-control::-ms-input-placeholder,
.refferal-form-main textarea.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(184, 184, 184, 1);
    opacity: 1;
}

.refferal-form-main .btn-div button {
    border: none;
    background: inherit;

}

.refferal-form-main .btn-div button span {
    margin-right: 9px;
    font-size: 14px;
}

.refferal-form-main label {
    font-family: med-para;
    font-size: var(--small-font);
}

.refferal-form-main #file-upload-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media all and (max-width:767px) {
    .refferal-form-main input.form-control:not(.file) {
        height: 40px;
    }

    .refferal-form-main .svg-div {
        top: 7px;
    }

    .refferal-form-main select.form-select {
        height: 40px;
    }
}

.refer-patient {
    padding: 15px;
}

.refer-patient span img {
    width: 24px;
    height: 24px;
}

.refer-patient .inner {
    display: flex;
    gap: 10px;
}

.refer-patient .inner p {
    margin-bottom: 0;
    font-size: var(--navbar-anchor);
}

/* referral-page ended  */
.root-canal-header.contact-header .content {
    padding: 50px 15px;
    padding-bottom: 50px;
}

.root-canal-header.contact-header .content p {
    font-size: var(--heading-four);
}

.single-contact-img>img {
    height: 100vh;
    object-fit: cover;
}

@media all and (max-width:700px) {
    .single-contact-img>img {
        height: auto;
    }

    .your-query {
        margin-top: -75px;
    }
}

.your-query {
    position: relative;
    z-index: 1;
}



.your-query .inner {
    margin-left: 20px;
    margin-right: 20px;
    /* margin-top: -50vh; */
    background-color: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.09);
}

@media all and (max-width:600px) {
    .your-query .inner {
        padding: 30px 20px;
    }
}

.practices-contact-page .practices {
    padding-top: 50px;
}

.your-query p {
    font-size: var(--heading-four);
}

.your-query label {
    font-family: med-para;
    font-size: var(--small-font);
}

.your-query input:not([type="checkbox"]),
.your-query select {
    height: 60px;

}

@media all and (max-width:700px) {

    .your-query input,
    .your-query select {
        height: auto;
    }
}

.your-query input:focus,
.your-query select:focus {
    box-shadow: 0 0 0 1px rgba(13, 110, 253, .25);

}

.your-query textarea:focus {
    box-shadow: 0 0 0 1px rgba(13, 110, 253, .25);

}

.your-query input.form-control::placeholder,
.your-query textarea.form-control::placeholder {
    color: rgba(184, 184, 184, 1);
    opacity: 1;
    /* Firefox */
}

.your-query input.form-control::-ms-input-placeholder,
.your-query textarea.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(184, 184, 184, 1);
}

.ascund {
    display: none;
}

.smile-gallery .inner {
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #FAE590;
    position: relative;
    z-index: 1;

}

.smile-gallery .inner img {
    transform: scale(1);
    transition: all .3s ease-in;
}

.smile-gallery .inner img:hover {
    transform: scale(1.2);
}

.smile-gallery {
    padding: 50px 15px;
    margin-top: -310px;
    position: relative;
}

.smile-gallery::before {
    content: "";
    position: absolute;
    top: 600px;
    left: 0;
    width: 200px;
    height: 200px;
    background: url(../img/side-teeth.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

@media all and (max-width:767px) {
    .smile-gallery {
        margin-top: -65px;
    }

    .smile-gallery::before {
        width: 100px;
        height: 100px;
        top: 200px;
    }
}

.smile-testimonial .patient-say .btn-div {
    display: none !important;
}

.invalid-cap {
    display: none;
    color: red;
}

.error-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: transparent;
}

.popup-wrap {
    background: #b77641 !important;
    border-radius: 5px;
    /*   box-shadow: 0 0 5px 5px rgba(0,0,0,0.2); */
    padding: 5px 10px;
    max-width: 500px;
    margin: auto;
}

.hide-popup {
    color: white;
    text-align: right;
    cursor: pointer;
    font-weight: bold;
}

.popup-text {
    padding: 10px 30px 30px;
    text-align: center;
    color: white;
}

.patient-say.patient-say1 .item p {
    text-align: center;
}

.patient-say.patient-say1 .profile-img {
    display: block;
}

.patient-say.patient-say1 .name-patient h5 {
    text-align: center;
}

.grecaptcha-badge {
    display: none !important;
}