* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: norm;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: rob-bold;
    src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: norm-med;
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: circular;
    src: url(../fonts/circular-std-medium-500.ttf);
}

@font-face {
    font-family: circular-bold;
    src: url(../fonts/CircularStd-Bold.ttf);
}

@font-face {
    font-family: links;
    src: url(../fonts/texgyreadventor-regular.otf);
}

@font-face {
    font-family: headings;
    src: url(../fonts/texgyreadventor-bold.otf);
}

body {
    font-family: norm;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    transition: all .5s ease-in;
}

body.body-nav {
    overflow: hidden;
    height: 100vh;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: headings;
}

h1,
h2 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

@media all and (max-width:767px) {

    h1,
    h2 {
        font-size: 25px !important;
    }
}

h1 em,
h2 em {
    font-style: normal;
    font-weight: 300;
    letter-spacing: .1em;
    line-height: 1;
}

a {
    text-decoration: none;
}

.wrap {
    max-width: 1600px;
    margin: auto;
}

article {
    padding: 100px 15px;
}

article h2 {
    margin-bottom: 30px;
}

#start-modal .modal-header {
    padding: 0;
    border: none;
}

#start-modal .btn-close {
    margin-right: 14px;
}

.page-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 115px;
    padding: 10px 15px;
    z-index: 10;
    background: #0c607c;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    /* background-color: white; */

}

.index-header .page-header {
    background: none;
    border-radius: 0;
    box-shadow: none;
}

@media all and (max-width:991px) {
    .index-header .page-header {
        background: #0c607c;
        border-radius: 0 0 40px 40px;
        box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    }
}

.index-header .banner-img img {
    height: 336px;
    object-fit: cover;
    background-position: right;
    margin-top: -33px;
}

.index-header .page-header.is-sticky {
    background: #0c607c;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

@media all and (max-width:991px) {
    .page-header {
        height: 85px;
        padding: 0;
    }

    .khail-div {
        height: 85px;
    }

    /* .page-header .main-nav {
        background: #F5F2EC;
    } */
    .page-header .navbar-collapse {
        background-color: #0c607c;
    }
}

@media all and (min-width:992px) {
    .main-nav .navbar-nav a.nav-link {
        padding: 10px 30px;
    }
}

@media all and (max-width:1110px) and (min-width:992px) {
    .main-nav .navbar-nav a.nav-link {
        padding: 10px 15px;
    }
}

.khail-div {
    height: 115px;
}

@media all and (max-width:991px) {
    .khail-div {
        height: 85px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.page-header.is-sticky {
    position: fixed;
    /* padding: 8px 0; */
    /* backdrop-filter: blur(10px); */
    animation: slideDown 0.35s ease-out;
    /* background: #F5F2EC; */
    z-index: 100;
}

.page-header.is-sticky .main-nav {}

.main-nav a.navbar-brand img {
    width: 60px;
}

.main-nav a.nav-link {
    color: white;
    font-size: 19px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.09px;
    font-family: links;
}

.index-header .main-nav a.nav-link {
    color: #0c607c;
}

.page-header.is-sticky a.nav-link {
    color: white;
}

.main-nav .two-btns {
    display: flex;
    gap: 15px;
}

.main-nav .two-btns a:first-child {
    font-size: 17px;
    display: inline-block;
    /* font-weight: 500; */
    padding: 7px 25px;
    color: white;
    position: relative;
    transition: all .3s ease-in;
    border: 1px solid #0c607c;
    border-radius: 5px;
    overflow: hidden;
    /* z-index: 1; */
}

.main-nav .two-btns a:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c607c;
    z-index: -1;
    transition: all .3s ease-in;
}

.main-nav .two-btns a:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease-in;
}

.main-nav .two-btns a:first-child:hover::after {
    opacity: 1;
}

.main-nav .two-btns a:first-child:hover {
    color: #0c607c;
    border: 1px solid white;
}

.page-header.is-sticky .main-nav .two-btns a:first-child {
    color: #0c607c;
}

.page-header.is-sticky .main-nav .two-btns a:first-child::before {
    /* border-color: white; */
    background-color: white;
}

.page-header.is-sticky .main-nav .two-btns a:first-child:hover {
    color: white;
    border-color: white;
}

.page-header.is-sticky .main-nav .two-btns a:first-child::after {
    background-color: #0c607c;
    /* border-color: white; */
}

.main-nav .two-btns a:last-child {
    font-size: 17px;
    display: inline-block;
    /* font-weight: 500; */
    /* fill: #2A221A; */
    color: #0c607c;
    /* background-color: #FFFFFF; */
    border: 1px solid white;
    position: relative;
    /* border-color: #2A221A; */
    padding: 7px 25px;
    border-radius: 5px;
    overflow: hidden;
}

.main-nav .two-btns a:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 1;
    z-index: -1;
    transition: all .3s ease-in;
}

.main-nav .two-btns a:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c607c;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease-in;
}

.main-nav .two-btns a:last-child:hover::after {
    opacity: 1;
}

.main-nav .two-btns a:last-child:hover::before {
    opacity: 0;
}

.main-nav .two-btns a:last-child:hover {
    color: WHITE;
    border: 1px solid white;
}

.page-header.is-sticky .main-nav .two-btns a:last-child {
    color: #0c607c;
}

.page-header.is-sticky .main-nav .two-btns a:last-child::before {
    /* border-color: white; */
    background-color: white;
}

.page-header.is-sticky .main-nav .two-btns a:last-child:hover {
    color: white;
    border-color: white;
}

@media all and (max-width:991px) {

    .page-header .main-nav .two-btns a:first-child,
    .page-header .main-nav .two-btns a:last-child {
        border: 1px solid white;
        color: white !important;
    }

    .page-header .main-nav .two-btns a::before,
    .page-header .main-nav .two-btns a::after {
        display: none;
    }
}

.main-nav .two-btns a span {
    margin-right: 7px
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: white;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler:hover span,
.navbar-toggler:focus span {
    background: white;
}

/* 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: 30px;
    height: 2px;
    margin: 6px auto;
    background: white;
    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(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;
}

@media all and (max-width:991px) {
    .main-nav .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 18px;
        z-index: 2;
        transition: all .3s ease-in;
    }

    body.body-nav .main-nav .navbar-toggler {
        top: 36px;

    }

    .navbar-collapse {
        /* background-color: rgba(0, 0, 0, 0.8); */
        display: flex;
        flex-direction: column;
        position: fixed;
        right: 0;
        width: 0;
        /* height: 101vh; */
        overflow-y: auto;
        padding: 0 15px;
        top: 0;
        padding-bottom: 15px;
        /* padding-top: 50px;
        padding-left: 30px;
        padding-right: 15px;
        padding-bottom: 15px; */
        /* width: 20em; */
        height: 100vh;
        transition: all .5s ease-in;
        /* box-shadow: 5px 0 0 #000; */
    }

    .navbar-collapse.collapsing {
        height: auto;
        /* width: 100vw; */
        -webkit-transition: right 0.3s ease;
        -o-transition: right 0.3s ease;
        -moz-transition: right 0.3s ease;
        transition: right 0.3s ease;
        right: -20.3em;
        height: 100vh;
    }

    .navbar-collapse.show {
        padding: 10px 0;
        width: 100vw;
        background-color: #0c607c;
        box-shadow: 0 0 3px 20px #0c607c;
        color: white;
        right: 0;
        z-index: 1;
        -webkit-transition: right 0.3s ease-in;
        -o-transition: right 0.3s ease-in;
        -moz-transition: right 0.3s ease-in;
        transition: right 0.3s ease-in;
    }

    .navbar-collapse:not(.show) {
        transition: all .5s ease-out;
    }

    .navbar-collapse.show .navbar-nav {
        width: 100%;
    }

    .navbar-collapse.show .navbar-nav a.nav-link {
        color: white;
        text-align: center;

    }

    .navbar-collapse.show .dropdown-menu {
        padding: 0;
    }

    .navbar-collapse.show .dropdown-menu li {
        background-color: inherit;
    }

    .navbar-collapse.show .dropdown-menu a {
        color: white;
        text-align: center;
    }

    .navbar-collapse .logo-div {
        width: 100%;
    }

    .navbar-collapse .logo-div img {
        width: 80px;
        padding: 26px 15px;
    }

    .page-header .main-nav .navbar-nav li.nav-item {
        /* border-bottom: 1px solid white; */
        position: relative;
    }

    .page-header .main-nav .navbar-nav li.nav-item::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        height: 1px;
        background-color: white;

    }

    .main-nav .two-btns {
        flex-direction: column;
        /* gap: .5rem; */
    }

    .main-nav .two-btns a:first-child {
        margin-top: .5rem;
    }

}

@keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.dropdown {
    /* padding: 20px 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #fff; */
    /* background: #c06162; */
    /* background: #34495e; */
    position: relative;
    /* font-size: 18px; */
    perspective: 1000px;
    z-index: 100;
}

@media all and (max-width:991px) {
    .dropdown {
        display: block;
    }
}



.dropdown_menu {
    padding: 0;
    perspective: 1000px;
    z-index: -1;
    background: none;
    border: none;
}

@media all and (min-width:992px) {

    .dropdown:hover {
        /* background: #2980b9; */
        cursor: pointer;
    }

    .dropdown_menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 300px;
    }
}

@media all and (min-width:992px) {
    .dropdown:hover .dropdown_menu li {
        display: block;
        position: relative;
        z-index: 10;
    }

    .dropdown_menu li a {
        color: #161c2f;
        padding: 14px 36px;
    }

    .dropdown_menu li:hover {
        background-color: #8cc9dd;
    }


    .dropdown_menu li:hover a {
        color: white;
        background: #8cc9dd;
    }

    .dropdown:hover .dropdown_menu--animated {
        display: block;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
        border-radius: 20px;
        overflow: hidden;
    }

    .dropdown_menu--animated {
        display: none;
    }

    .dropdown_menu--animated li {
        display: block;
        opacity: 0;
    }

    /* .dropdown-menu li:first-child {
        border-radius: 20px 20px 0 0;
        overflow: hidden;
    }
    
    .dropdown-menu li:last-child {
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    } */


    .dropdown_menu-5 .dropdown_item-1 {
        transform-origin: top center;
        animation: translateX 300ms 60ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-2 {
        transform-origin: top center;
        animation: translateX 300ms 120ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-3 {
        transform-origin: top center;
        animation: translateX 300ms 180ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-4 {
        transform-origin: top center;
        animation: translateX 300ms 240ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-5 {
        transform-origin: top center;
        animation: translateX 300ms 300ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-6 {
        transform-origin: top center;
        animation: translateX 300ms 600ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-7 {
        transform-origin: top center;
        animation: translateX 300ms 750ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-8 {
        transform-origin: top center;
        animation: translateX 300ms 900ms ease-in-out forwards;
    }


    .dropdown_menu-5 .dropdown_item-9 {
        transform-origin: top center;
        animation: translateX 300ms 1150ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-10 {
        transform-origin: top center;
        animation: translateX 300ms 1300ms ease-in-out forwards;
    }

    .dropdown_menu-5 .dropdown_item-11 {
        transform-origin: top center;
        animation: translateX 300ms 1450ms ease-in-out forwards;
    }

    .dropdown_menu li {
        display: none;
        color: #8cc9dd;
        background-color: white;
        /* padding: 10px 20px; */
        font-size: 16px;
        opacity: 0;
    }
}

.banner {
    overflow: hidden;
}


/*ADDED BY MFU NOT HASH STARTS*/
.page-header.is-sticky a.nav-link {
    color: white;
}

.color-golden {
    color: #0c607c !important;
}

.color-blue {
    color: #161c2f !important
}

/*ADDED BY MFU NOT HASH STARTS*/

@media all and (max-width:991px) {
    .main-nav .dropdown-menu {
        padding: 0;
    }

    .main-nav .dropdown-menu li {
        opacity: 0;
        background-color: white;
    }

    .main-nav .dropdown-menu li a {
        color: #13AB80;
    }

    .main-nav a.nav-link {
        text-align: center;
    }

    .main-nav .dropdown-menu {
        border: 0;
    }

    .main-nav .dropdown-menu li a {
        text-align: center;
    }

    .main-nav .navbar-nav a.navlink {
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .main-nav li.nav-item {
        border-bottom: 1px solid rgba(106, 124, 146, 0.10);
        padding: 10px 0;
    }

    .main-nav .dropdown-menu li {
        /* border-bottom: 1px solid rgba(106, 124, 146, 0.10); */
        padding: 10px 0;
    }

    .main-nav li.nav-item:last-child {
        display: flex;
        justify-content: center;
    }

    .main-nav li.nav-item:last-child>a.nav-link {
        display: inline-block;
        width: 70%;
        margin: auto;
    }

    /* main-nav li.nav-item:last-child>a.nav-link */

    .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 {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: url(../img/index-header.webp);
    background-size: cover;
    background-position: right;
}

@media all and (max-width:991px) {
    .index-header {
        height: auto;
        background: url(../img/index-header-tab.webp);
        background-position: right;
    }
}


@media all and (max-width:767px) {
    .index-header {
        height: auto;
        background: none;
    }
}

.index-header .content-header .svg-div {
    padding-bottom: 30px;
}

.index-header .content-header .svg-div img {
    max-width: 175px;
}

.index-header .content-header {
    padding: 15px;
    flex-grow: 1;

}

.index-header .content-header h1 {
    margin-bottom: 30px;
}

.index-header .content-header h1 span {
    color: #0c607c
}

.index-header .content-header p {
    margin-bottom: 30px;
}

.index-header .content-header .wrap,
.index-header .content-header .row {
    height: 100%;
}

.index-header .content-header .row {
    align-items: center;
}

.index-header .content-header p {
    font-size: 36px;
    /* font-weight: 300; */
    line-height: 54px;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons a {
    color: #0c607c;
}

.fb-insta {
    color: #0c607c;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    width: 35px;
    height: 35px;
}

.index-header .content-header .btn-div button {
    background-color: #2A221A;
    border-style: solid;
    color: white;
    border-width: 0px 0px 0px 0px;
    padding: 10px 70px;
    font-size: 18px;
    border-radius: 5px;
}

.index-header .content-header .btn-div button span {
    /* display: inline-block; */
    margin-right: 10px;
}

@media all and (max-width:767px) {

    .index-header .content-header {
        padding: 10px;
        background-color: #0c607c;
    }

    .index-header .content-header h1 {
        font-size: 25px;
        color: white;
        text-align: center;
        margin-bottom: 5px;
    }

    .index-header .content-header .svg-div {
        display: none;

    }

    .index-header .content-header .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .index-header .content-header p {
        font-size: 20px;
        line-height: 23px;
        text-align: center;
        color: white;
        margin-bottom: 0;
    }

    .index-header .content-header .btn-div {
        display: none;
    }

    .index-header .content-header h1 span {
        color: white
    }
}

.family-dental {
    position: relative;
    padding: 50px 15px;
}

.family-dental::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 30%;
    height: calc(100% - 100px);
    /* border-radius: 300px 0px 0px 0px; */
    background-color: #8cc9dd;
}

.family-dental.not-just::before {
    background-color: #F4F3F1;
}

.family-dental.changed::before {
    background-color: #0c607c;
    left: 0;
}

.family-dental.changed p {
    color: white;
}

@media all and (max-width:1600px) {
    .family-dental::before {
        display: none;
    }
}

@media all and (max-width:767px) {
    .family-dental {
        padding: 50px 15px;
    }
}

.special-svg.svg-div {
    max-width: 180px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.family-dental .small-para p {
    color: #66696F;
    /* font-family: "Roboto", Sans-serif; */
    font-size: 20px;
    font-weight: 300;
}

.family-dental.changed .small-para p {
    color: white;
}

.family-dental.changed .inner {
    height: 100%;
}

.family-dental .small-para ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.family-dental .small-para ul li {
    display: flex;
    gap: 10px;
    color: #66696F;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
}

.family-dental .small-para ul img {
    width: 60px;
    height: 60px;
}

.special-svg.svg-div::before,
.special-svg.svg-div::after {
    content: "";
    position: relative;
    width: 60px;
    height: 1px;
    display: inline-block;
    background-color: #0c607c;
}

/*.special-svg2.svg-div::before,*/
/*.special-svg2.svg-div::after {*/
/*    content: "";*/
/*    position: relative;*/
/*    width: 60px;*/
/*    height: 1px;*/
/*    display: inline-block;*/
/*    background-color: white;*/
/*}*/
.family-dental.not-just {
    /*background-color: #f2ebe1;*/
    /* background-color: #8cc9dd; */
}

.family-dental h2 {
    margin-bottom: 30px;
}

.special-svg.svg-div svg {
    width: 16px;
    height: 16px;
}

.family-dental .heading-div {
    max-width: 525px;
}

.family-dental .small-para {
    max-width: 525px;
}

@media all and (min-width:992px) {
    .family-dental.not-just .small-para {
        max-width: 100%;
        padding-right: 30px;
    }

    .family-dental .small-para {
        max-width: 100%;
        padding-right: 67px;
    }

    .family-dental.changed.total-changed .small-para,
    .family-dental.changed.total-changed .heading-div {
        padding-left: 40px;
        padding-right: 0;
    }

    .family-dental.changed.total-changed .btn-div,
    .family-dental.changed.total-changed .svg-div {
        padding-left: 40px;
    }

    .family-dental.changed.total-changed .special-svg.svg-div {
        max-width: 220px;
    }
}

.family-dental.changed .small-para,
.family-dental.changed .heading-div {
    max-width: 100%;
}

.family-dental .large-para p {
    font-size: 23px;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 30px;
}

.family-dental .img-div img {
    max-width: 700px;
    border-radius: 0px 0px 300px 0px;
}

.family-dental .img-div .dynamic-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
}

.family-dental .img-div .dynamic-btn>a {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 20px;
    color: white;
}

.family-dental .img-div .dynamic-btn>a>span {
    font-size: 40px;
    color: white;
}

.family-dental .img-div .dynamic-btn>a>span>svg {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
}

.waves-block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}


.waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    /* right: -50px;
    bottom: -50px; */
    left: 0%;
    top: 0%;
    /* transform: translate(-50%, -50%); */
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        background: rgba(0, 0, 0, 0.1);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
        background: rgba(0, 0, 0, 0.2);
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        background: rgba(0, 0, 0, 0.3);
    }
}

.family-dental.changed {
    background-color: #8cc9dd;
}

.family-dental.changed .img-div img {
    border-radius: 0px 0px 200px 0px;
}

.family-dental.not-just .img-div img {
    max-width: 700px;
    border-radius: 0px 0px 0px 200px;
}

@media all and (min-width:992px) {
    .family-dental.not-just .img-div img {
        margin-left: -24px;
    }

    .family-dental.changed .img-div {
        margin-right: -24px;
        display: flex;
        justify-content: end;
    }

    /* .family-dental.changed .inner-first {
        max-width: 700px;
        margin-left: auto;
        padding-left: 20px;
    } */
}

.family-dental .dynamic-img {
    position: absolute;
    left: -100px;
    bottom: -50px;
}

.family-dental .dynamic-img img {
    max-width: 200px;
    border-radius: 0px 0px 80px 0px;
}

@media all and (max-width:1290px) {
    .family-dental .dynamic-img {
        left: 0;
        bottom: -98px;
    }
}

.family-dental .inner {
    position: relative;
    padding: 100px 0;
}

@media all and (max-width:767px) {
    .family-dental .inner {
        padding-top: 30px;
        margin-bottom: 30px;
    }
}

.family-dental .inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 300px 0px 0px 0px;
    background-color: #8cc9dd;
}

/* @media all and (max-width:600px) {
    .family-dental .inner {
        padding: 25px 0 !important;
    }

    .family-dental .inner::before {
        border-radius: 174px 0px 0px 0px;
    }
} */

.family-dental.changed .inner::before {
    border-radius: 0px 300px 0px 0px;
    background-color: #0c607c;
}

.family-dental.not-just .inner::before {
    background-color: #0c607c;
}

.family-dental .btn-div {
    padding-top: 30px;
}

.family-dental .btn-div a {
    display: inline-block;
    padding: 20px 30px;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0;
    font-family: norm-med;
    color: white;
    font-size: 18px;
    border-radius: 5px;
}

.puts-need {
    position: relative;
    color: white;
    background: url(../img/team-bg-index.webp);
    background-size: cover;
    padding-top: 75px;
}

@media all and (max-width:767px) {
    .puts-need {
        padding: 50px 15px;
    }
}

.puts-need::before {
    content: '';
    background: linear-gradient(0deg, #8cc9dd 70%, rgb(255 255 255 / 0%) 65%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: calc(100% - 200px);
}

@media all and (max-width:991px) {
    .puts-need::before {
        display: none;
    }
}

.puts-need .wrap {
    max-width: 100%;
}

.puts-need .owl-stage {
    display: flex;
}

.puts-need .owl-nav,
.puts-need .owl-dots {
    display: none;
}

.puts-need .inner {
    margin-left: -130px;
}

.puts-need .special-svg.svg-div svg {
    fill: white;
}

.puts-need .btn-div {
    padding-top: 30px;
}

.puts-need .btn-div a {
    color: #332D27;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 105px 20px 105px;
    font-size: 18px;
}

.puts-need h2 {
    margin-bottom: 30px;
}

.puts-need p {
    font-size: 20px;
}

/* .puts-need .item {
    width: 400px;
} */
.bg-simple-div {
    background-color: #ECE8E2;
    /* padding: 10px; */
    height: 40px;
}

.bespoke-beautiful {
    padding: 75px 15px;
    background-color: #8cc9dd;
}

@media all and (max-width:767px) {
    .bespoke-beautiful {
        padding: 50px 15px;
    }
}

.bespoke-beautiful .upr-para {
    max-width: 800px;
    margin: auto
}

.bespoke-beautiful .upr-para p {
    font-size: 27px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 0;
}

.bespoke-beautiful .grid {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 10px;
    row-gap: 50px;
    justify-content: center;
}

.bespoke-beautiful .grid.grid-three {
    grid-template-columns: repeat(3, 1fr);
}

@media all and (max-width:1250px) {
    .bespoke-beautiful .grid {
        grid-template-columns: repeat(3, 1fr);
        place-content: center;
    }
}

@media all and (max-width:992px) {
    .bespoke-beautiful .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:991px) {
    .bespoke-beautiful .grid.grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:767px) {
    .bespoke-beautiful .grid {
        grid-template-columns: 1fr;
    }

    .bespoke-beautiful .grid.grid-three {
        grid-template-columns: 1fr;
    }
}

.bespoke-beautiful .svg-div svg {
    width: 3em;
    height: 3em;
    fill: white;
}

.bespoke-beautiful .svg-div {
    /* padding: 30px; */
    width: 5em;
    height: 5em;
    margin: -92px auto 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
}

.bespoke-beautiful .main-svg {
    padding-bottom: 30px;
}

.bespoke-beautiful .entity:nth-child(2n) .svg-div {
    background-color: #0c607c;
}

.bespoke-beautiful .entity:nth-child(2n+1) .svg-div {
    background-color: #0c607c;
}

.bespoke-beautiful .entity {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 60px 25px 25px 25px;
    background-color: white;
    border-radius: 25px;
    transition: all 0.5s;
}

.bespoke-beautiful .entity:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.bespoke-beautiful h3 {
    white-space: wrap;
    font-family: rob-bold;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    color: #2A221A;
}

.bespoke-beautiful h3 a {
    color: #0c607c;
    ;
}

.bespoke-beautiful .entity p {
    font-size: 20px;
    color: #66696f;
    font-family: circular;
}

.bespoke-beautiful .btn-center {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.bespoke-beautiful .btn-center button {
    background-color: #0c607c;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 95px 20px 95px;
    color: white;
    border-radius: 5px;
    font-family: norm-med;
    font-size: 18px;
}

@media all and (max-width:767px) {
    .bespoke-beautiful .btn-center button {
        padding: 10px 30px;
    }
}

/* Contact lux started  */
.contact-lux {
    background-color: #F5F2EC;
    padding: 150px 15px;
    border-radius: 125px 125px 0px 0px;
}

.contact-lux h2 {
    text-align: center;
    max-width: 700px;
    color: #2A221A;
}

/* .contact-lux h2 b {
    color: #BD9746;
} */

.contact-lux .svg-div {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.contact-lux .svg-div svg {
    width: 40px;
    height: 40px;
}

.contact-lux .upr-para {
    font-size: 27px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 30px;
    max-width: 800px;

}

.contact-lux .innr {
    padding: 10px 25px;
    /* padding: 10px 25px; */
    background-color: white;
    border-radius: 20px;
}

@media all and (min-width:992px) {
    .contact-lux .inner {
        border-right: 1px solid rgba(34, 34, 34, .1);

    }

}

.contact-lux .inner {
    padding: 10px 25px;
    border-right: 1px solid rgba(34, 34, 34, .1);
    height: 100%;
    /* padding: 10px 25px; */
    /* background-color: white;
    border-radius: 20px; */
}

.contact-lux .col-lg-3:last-child .inner {
    border-right: 0;
}

@media all and (max-width:991px) {
    .contact-lux .col-lg-3 .inner {
        border-bottom: 1px solid rgba(34, 34, 34, .1);
        border-right: 0;
    }

    .contact-lux .col-lg-3:last-child .inner {
        border-bottom: 0;
    }
}

.contact-lux .innr .img-div {
    max-width: 120px;
    margin: 0 auto 15px auto;

}

.contact-lux h3 {
    font-family: norm;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    color: #2A221A;
    text-align: center;
}

.contact-lux .innr p {
    font-size: 16px;
    color: #66696f;
    font-family: circular;
    text-align: center;
}

.contact-lux .inner p {
    font-size: 16px;
    color: #66696f;
    font-family: circular;
    text-align: center;
}

.contact-lux .innr p a {
    font-size: 16px;
    color: #66696f;
    font-family: circular;
    text-align: center;
}

/* Contact lux ended  */
footer {
    padding: 20px 15px;
    background: #0c607c;
    color: white;
}

footer .social-links .fb-insta {
    color: #0c607c;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    /* background-color: white; */
    border-radius: 8px;
    width: 35px;
    height: 35px;
}

footer p,
footer a,
footer span {
    font-size: 16px;
}

footer .text-reserve {
    font-size: 12px;
}

@media all and (max-width:991px) {
    footer .cqc-logo {
        order: 2;
        display: flex;
        justify-content: center;
    }

    footer .cqc-logo img {
        width: 250px;
    }
}

/* footer center align on small screen */
@media all and (max-width:767px) {
    footer .col-lg-6 {
        text-align: center;
    }

    footer .col-lg-4 {
        text-align: center;
    }

    footer .col-lg-4 div {
        justify-content: center;
        max-width: 267px;
        margin: auto;
    }

    footer .col-lg-2 .cqc-logo {
        text-align: center;
    }

    footer .col-lg-2 .social-links {
        text-align: center;
    }

}

.footer-last {
    padding: 10px 15px;
    background-color: #0c607c;
    color: white;
}

.claremont-trust {
    padding: 75px 15px;
    background-color: #F8F5EF;
}

@media all and (max-width:767px) {
    .claremont-trust {
        padding: 50px 15px;
    }
}

.claremont-trust h2 {
    font-size: 54px;
    text-align: center;
}

.claremont-trust .img-div {
    padding: 10px 10px 10px 10px;
    background-color: #0c607c;
}

.claremont-trust p {
    text-align: center;
    color: #66696F;
    font-size: 20px;
    margin-bottom: 40px;
}

.claremont-trust .btn-div {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.claremont-trust .btn-div button {
    background-color: #0c607c;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 105px 20px 105px;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-family: norm-med;
}

.local-claremont {
    padding: 67px 15px;
    position: relative;
}

@media all and (max-width:767px) {
    .local-claremont {
        padding: 50px 15px;
    }
}

.local-claremont::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: calc(100% - 230px);
    width: 47%;
    transform: translateY(-50%);
    background-color: #8cc9dd;
    border-radius: 0px 0px 150px 0px;
}

@media all and (max-width:991px) {
    .local-claremont::before {
        display: none;
    }
}

.local-claremont .padding-wala {
    padding: 100px 10px;

}

@media all and (max-width:767px) {
    .local-claremont .padding-wala {
        padding: 0px 15px 30px 15px;
    }
}

.local-claremont h2 {
    font-size: 54px;
    color: #2A221A;
}

.local-claremont p {
    font-size: 20px;
    color: #66696F;
}

.local-claremont .video-div {
    position: relative;
    padding: 10px;
    background-color: #0c607c;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.local-claremont .video-div video {
    width: 100%;
}

.local-claremont .btn-div button {
    font-size: 18px;
    color: #FFFFFF;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 75px 20px 75px;
    font-family: norm-med;
    border-radius: 5px;
}

.addition-convenience {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F9F8F8 55%, #FFFFFF 55%);
    padding: 85px 15px;
}

@media all and (max-width:767px) {
    .addition-convenience {
        padding: 50px 15px;
    }
}

.addition-convenience h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
    color: #0c607c;
}

.addition-convenience .upr-para {
    font-size: 33px;
    font-weight: 400;
    line-height: 48px;
    font-family: norm-med;
    margin-bottom: 40px;
}

.addition-convenience .inner {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    padding-top: 30px;
    border-radius: 30px;
    background-color: #8cc9dd;
}

.addition-convenience .inner h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
    font-family: circular-bold;
    margin-bottom: 0;
}



.addition-convenience .inner .heading-div {
    padding: 0 50px 20px 50px;
    height: 141px;
    overflow: hidden;
}

@media all and (max-width:1200px) {
    .addition-convenience .inner .heading-div {
        padding: 0 20px 20px 20px;
    }
}

@media all and (max-width:1024px) {
    .addition-convenience .inner h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .addition-convenience .inner .heading-div {
        height: 100px;
    }
}

.addition-convenience .inner p {
    font-size: 20px;
    color: white;
}

.addition-convenience .inner .btn-div a {
    /* display: inline-block; */
    padding: 30px 0;
    border-radius: 0px 0px 32px 32px;
    display: flex;
    justify-content: center;
    background-color: #0c607c;
    color: white;
    font-size: 17px;
    font-family: circular;
}

.addition-convenience .inner .content-div {
    padding: 0 50px;
    height: 320px;
    overflow: hidden;
}

/* @media all and (max-width:1510px) {
    .addition-convenience .inner .content-div {
        height: 380px;
    }
}

@media all and (max-width:1230px) {
    .addition-convenience .inner .content-div {
        height: 470px;
    }
} */
@media all and (max-width:991px) {
    .addition-convenience .inner .heading-div {
        height: 77px;
    }

    .addition-convenience .inner .content-div {
        height: 200px;
    }
}

@media all and (max-width:450px) {
    .addition-convenience .inner .content-div {
        height: auto;
    }
}

@media all and (max-width:1200px) {
    .addition-convenience .inner .content-div {
        padding: 0 20px;
    }
}


.first-step {
    background-color: #8cc9dd;
    padding: 75px 15px;
    border-radius: 125px 125px 0px 0px;
}

.first-step.contact-step {
    border-radius: 0px 0px 125px 125px;
}

@media all and (max-width:767px) {
    .first-step {
        padding: 50px 15px;
        border-radius: 50px 50px 0px 0px;
    }
}

.first-step h2,
.first-step h3 {
    font-size: 48px;
    /* font-weight: 700; */
    line-height: 46px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

@media all and (max-width:767px) {
    .first-step h3 {
        font-size: 25px;
    }
}

.first-step .special-svg.svg-div {
    margin: auto;
}

.first-step p {
    text-align: center;
    color: #0c607c;
    /* font-family: "Roboto", Sans-serif; */
    font-size: 25px;
    font-weight: 300;
    line-height: 38px;
}

.first-step p a {
    color: #cbae88;
}

.first-step .btn-div {
    padding-top: 30px;
    text-align: center;
}

.first-step .btn-div a {
    background-color: #0c607c;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 30px 20px 30px;
    display: inline-block;
    font-family: norm-med;
    font-size: 18px;
    /* font-weight: 700; */
    color: #FFFFFF;
    border-radius: 5px;
}

.first-step .btn-div a span {
    margin-right: 15px;
}

.smile-header .content-header {
    margin-top: -35px;
    padding: 150px 15px;
    background: url(../img/contact-header.jpg);
    background-size: cover;
}

.smile-header.about-header .content-header {
    padding-top: 75px;
    padding-bottom: 0;
}

.smile-header.about-header.nitime-header .content-header {
    padding: 70px 15px;
}

.smile-header h1 {
    font-size: 35px;
    color: white;
}

.smile-header h2 {
    font-size: 14px;
    /* font-weight: 300; */
    line-height: 51px;
    letter-spacing: 9px;
    font-family: circular;
    margin: 0;
    padding: 10px 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media all and (max-width:767px) {
    .smile-header h2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.smile-header h2 .line-white {
    width: 250px;
    background-color: white;
    height: 1px;
}

.contact-section {
    padding-top: 75px;
}

.contact-section h3 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: #0c607c;
}

@media all and (max-width:767px) {
    .contact-section h3 {
        font-size: 25px;
    }
}

.contact-section .inner .d-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section .inner .opening-hours {
    padding-top: 20px;
    color: white;
    font-size: 17px;
}

/* .contact-section .inner .opening-hours>div {
    margin-bottom: 15px;
} */

.contact-section .inner .opening-hours>div:not(:nth-child(4)) {
    margin-bottom: 15px;
}

.contact-section .row {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.12)
}

@media all and (max-width:767px) {
    .contact-section .row {
        padding: 30px 15px;
    }

    .contact-section .row .col-lg-5 {
        padding: 0;
    }
}

.contact-section .nav.nav-pills {
    background-color: #cbae86;
    border-radius: 30px;
    padding: 10px;
}

.contact-section .nav.nav-pills button.nav-link {
    border-radius: 17px;
    color: white;
}

.contact-section .nav.nav-pills button.nav-link.active {
    color: #2A221A;
    background-color: white;
}

.contact-section .inner {
    background: url(../img/contact-form-bg.jpg);
    height: 100%;
    background-size: cover;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section .inner .upper-para {
    font-size: 20px;
}

.contact-section .entity {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-section .entity span svg {
    width: 30px;
    height: 30px;
}

.contact-section .entity p {
    color: white;
    margin-bottom: 0;
    font-size: 17px;
}

.contact-section form .checks-div>.form-check {
    flex-grow: 1;
}

.contact-section form input.form-control,
.contact-section form select.form-select {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
}

.contact-section form select.form-select:focus {
    box-shadow: none;
}

.contact-section form .form-label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #161c2f;
}

.contact-section form .form-check-label {
    font-size: 16px;
    color: #161c2f;
}

/* .contact-section form .form-check-input[type=radio] {
    vertical-align: middle;
} */
.contact-section form .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-section form input.form-control:focus {
    box-shadow: none;
}

.contact-section form textarea.form-control {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
}

.contact-section form textarea.form-control:focus {
    box-shadow: none;
}

.contact-section form .btn-div button {
    background-color: #0c607c;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 95px 20px 95px;
    color: white;
    border-radius: 5px;
    font-family: norm-med;
    font-size: 18px;
}

.contact-section p.text-center.upper-para {
    font-size: 24px;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 30px;
}

.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: #0c607c !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;
}

.dramatic-radiant {
    background-color: #FBF9F6;
    padding: 35px 15px;
}

@media all and (max-width:767px) {
    .dramatic-radiant {
        padding: 50px 15px;
    }
}

.dramatic-radiant .heading-div {
    max-width: 900px;
    margin: auto;
}

.dramatic-radiant .heading-div h2 {
    font-size: 41px;
    margin-bottom: 30px;
    color: #0c607c;
    line-height: 1;
    text-align: center;
}

.dramatic-radiant .para-div {
    max-width: 825px;
    margin: auto;
}

.dramatic-radiant .para-div p {
    text-align: center;
    color: #66696F;
    /* font-family: "Roboto", Sans-serif; */
    line-height: 1.5;
    font-size: 20px;
}

.dramatic-radiant .img-div {
    max-width: 700px;
    margin: auto;
}

.dramatic-radiant .video-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dramatic-radiant .play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.dramatic-radiant .play-button-wrapper .play-gif {
    cursor: pointer;
    pointer-events: auto;
}

.dramatic-radiant .play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}

.benefits-services {
    background-color: #8cc9dd;
    padding: 50px 15px;
    color: white;
}


.benefits-services h2 {
    font-size: 35px;
    text-align: center;
    color: white;
    line-height: 1;
    margin-bottom: 30px;
}

/*added by mfu*/
.benefits-services2 {
    background-color: #0c607c;
    padding: 90px 15px;
    color: white;
}

.benefits-services2 h2 {
    font-size: 35px;
    text-align: center;
    color: white;
    line-height: 1;
    margin-bottom: 30px;
}

/*added by mfu*/
@media all and (max-width:767px) {

    .benefits-services {
        padding: 50px 15px;
    }

    .benefits-services h2 {
        font-size: 25px;
    }
}

.benefits-services .upper-para {
    max-width: 880px;
    margin: auto;
}

.benefits-services .upper-para p {
    text-align: center;
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 20px;
}

.benefits-services .ul-div {
    max-width: 1024px;
    margin: auto;
}

.benefits-services .ul-div ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.benefits-services .ul-div li {
    font-size: 20px;
    display: flex;
    font-weight: 300;
    letter-spacing: 0px;
    color: #FFFFFF;
    padding-bottom: calc(20px/2);
    position: relative;
    /* padding-left: 1.5em; */
}

.benefits-services .ul-div li span img {
    width: 18px;
    height: 18px;
}

.benefits-services .ul-div li b {
    font-family: norm-med;
}

.benefits-services .ul-div li span {
    padding-right: 16px;
}

.benefits-services .btn-div {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.benefits-services .btn-div button {
    color: #2A221A;
    background-color: #FBF9F6;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 75px 20px 74px;
    font-size: 18px;
    font-family: norm-med;
    border-radius: 5px;
}

.long-lasting {
    position: relative;
    padding: 50px 15px;
}

.long-lasting::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 30%;
    height: calc(100% - 100px);
    /* border-radius: 300px 0px 0px 0px; */
    background-color: #8cc9dd;
}

.long-lasting .inr-f .btn-div button {
    display: inline-block;
    padding: 20px 30px;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0;
    font-family: norm-med;
    color: white;
    font-size: 18px;
    border-radius: 5px;
}

@media all and (max-width:1600px) {
    .long-lasting::before {
        display: none;
    }
}

.long-lasting .inner {
    position: relative;
    padding: 100px 0;
}

.long-lasting.ll-change .inner {
    height: 100%;
}

.long-lasting .inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 278px 0px 0px 0px;
    background-color: #8cc9dd;
}

.long-lasting .inner img {
    border-radius: 0px 0px 0px 200px;
    position: relative;
    width: calc(100% - 100px);
}

.long-lasting .inner .img-div {
    margin-left: -50px;
}

@media all and (max-width:991px) {
    .long-lasting .inner .img-div {
        margin-left: 0;
    }
}

.long-lasting .heading {
    /* max-width: 500px; */
    padding-right: 55px;
}

.long-lasting h2 {
    font-size: 39px;
    color: #0c607c;
    line-height: 1;
    margin-bottom: 30px;
}

.long-lasting .ul-div {
    /* max-width: 500px; */
    padding-right: 65px;
}

.long-lasting .ul-div p {
    font-size: 20px;
    font-family: norm;
    color: #66696f;
}

.long-lasting .ul-div ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.long-lasting .ul-div ul li {
    display: flex;
    gap: 22px;
    font-size: 20px;
    color: #252F42;
    padding-bottom: calc(20px/2);
    letter-spacing: 0px;
}

.long-lasting ul li img {
    width: 18px;
    height: 18px;

}

@media all and (max-width:991px) {

    .long-lasting .heading,
    .long-lasting .ul-div {
        padding-right: 0;
    }
}

@media all and (max-width:600px) {
    .long-lasting .inner {
        padding: 30px 5px;
    }

    .long-lasting .inner img {
        width: 100%;
    }
}

.self-care {
    background-color: #0c607c;
    padding: 75px 15px;
    /*border-radius: 0px 0px 125px 125px;*/
    margin-bottom: 35px;
}

.self-care .btn-div {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.self-care .btn-div a {
    display: inline-block;
    color: #2a221a;
    background-color: #fff;
    border-style: solid;
    border-width: 0;
    padding: 20px 75px 20px 74px;
    font-family: norm-med;
    border-radius: 5px 5px 5px 5px;
    font-size: 18px;
}

.self-care .heading-div {
    padding-bottom: 30px;
}

.self-care .heading-div h2 {
    font-size: 54px;
    color: white;
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
}

.self-care .para-upr {
    max-width: 880px;
    margin: auto;
    padding-bottom: 20px;
}

.self-care .para-upr p {
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: .9rem;
}

.self-care .down-para {
    max-width: 880px;
    margin: auto;
}

.self-care .down-para p {
    text-align: center;
    color: #fff;
    font-family: norm;
    font-size: 29px;
}

.self-care .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 150px 0 60px;
    column-gap: 30px;
    row-gap: 100px;
}

.self-care .grid.grid-four {
    grid-template-columns: repeat(4, 1fr);
    padding: 70px 0 60px;
}

@media all and (max-width:1250px) {

    .self-care .grid.grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:991px) {
    .self-care .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:767px) {
    .self-care .grid {
        grid-template-columns: 1fr;
    }

    .self-care .grid.grid-four {
        grid-template-columns: 1fr;
    }
}

.self-care .entity .heading {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.self-care .entity .para {
    padding-bottom: 40px;
}

.self-care .entity .para p {
    font-size: 20px;
    color: #66696f;
    font-family: norm;
}

.self-care .entity .heading-main {

    display: flex;
    align-items: center;
    height: 80px;

}

.self-care .grid-four .entity .heading-main {

    display: flex;
    align-items: center;
    height: 120px;

}

.self-care .entity .heading h3 {
    font-family: circular-bold;
    font-size: 30px;
    margin-bottom: 0;
}

.self-care .grid-four .entity .heading h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.self-care .entity {
    padding: 0 15px;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .12);
}

.self-care .heading-div h2 {
    margin-bottom: 0;
}

.self-care .entity .main-svg {
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.self-care .entity .svg-div {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .23);
    border-radius: 100px;
    width: 205px;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}

.self-care .entity .svg-div svg {
    width: 55px;
    height: 55px;
}

.self-care .entity .svg-div.brown {
    background-color: #8cc9dd;
}

.self-care .entity .svg-div {
    background-color: #fff;
}

.book-consultation {
    background-color: #8cc9dd;
    color: #0c607c;
    padding: 75px 15px;
    border-radius: 108px 108px 108px 108px;
    margin-left: 10px;
    margin-right: 10px;
}

.book-consultation .heading-div h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 53px;
    margin-bottom: 0;
    text-align: center;
    font-family: headings;
}

.book-consultation .heading-div {
    padding-bottom: 20px;
}

.book-consultation .special-svg.svg-div {
    margin: auto;
}

.book-consultation .para-div {
    max-width: 1090px;
    margin: auto;
    padding-top: 20px;
}

.book-consultation .btn-div {
    display: flex;
    justify-content: center;
}

.book-consultation .btn-div a {
    display: inline-block;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0;
    padding: 20px 75px 20px 74px;
    font-family: norm-med;
    font-size: 18px;
    color: white;
    border-radius: 5px;
}

.book-consultation .para-div p {
    font-family: norm;
    text-align: center;
    font-size: 24px;
    line-height: 37px;
}

.contact-today {
    padding: 60px 15px;
}

.contact-today h2 {
    font-size: 37px;
    font-family: headings;
    margin-bottom: 30px;
    text-align: center;
}

.contact-today .btn-div {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.contact-today .btn-div a {
    display: inline-block;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0;
    padding: 20px 75px 20px 74px;
    font-family: norm-med;
    font-size: 18px;
    color: white;
    border-radius: 5px;
}

.khali-white {
    height: 100px;
}

.meet-team {
    background-color: #faf7f3;
    padding: 60px 15px;
}

.meet-team .heading-div {
    max-width: 905px;
    margin: auto;
    padding-bottom: 30px;
}

.meet-team .heading-div h2 {
    font-size: 48px;
    font-family: headings;
    margin-bottom: 0;
    color: #0c607c;
    text-align: center;
}

.meet-team .para-div {
    padding-bottom: 20px;
    max-width: 980px;
    margin: auto;
}

.meet-team .para-div p {
    font-family: norm;
    margin-bottom: .9rem;
    font-size: 20px;
    text-align: center;
    color: #252f42;
}

.meet-team .inner {
    border-radius: 30px;
    overflow: hidden;
}

.meet-team .inner .content {
    padding: 50px 35px 35px 35px;
    background-color: white;
}

.meet-team .inner h3 {
    font-size: 23px;
    font-family: circular-bold;
    margin-bottom: 10px;
}

.meet-team .inner h4 {
    color: #3c3c3c;
    font-family: norm;
    font-size: 14px;
    margin-bottom: 15px;
}

.meet-team .inner p {
    font-size: 20px;
    color: #66696f;
    font-family: norm-med;
    line-height: 27px;
}

.meet-team .inner .btn-div {
    display: flex;
    justify-content: end;
}

.meet-team .inner .btn-div button {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    color: #2a221a;
    font-family: norm-med;
    font-size: 18px;
    background: inherit;
    border: none
}

.meet-team .inner .btn-div button::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a221a;
}

.about-header.nitime-header .nitime-car .owl-stage {
    display: flex;
}

.about-header.nitime-header .nitime-car .owl-stage-outer {
    overflow-x: hidden;
}

.about-header.nitime-header .owl-nav {
    display: none;
}

.about-header.nitime-header .btn-div {
    margin-top: 20px;
}

.about-header.nitime-header h2 {
    font-size: 24px;
    /* font-weight: 700; */
    font-family: headings;
    letter-spacing: 1px;
}

.about-header.nitime-header p {
    font-family: norm;
    font-size: 18px;
    color: white;
}

/* @media all and (max-width:600px) {
    .about-header.nitime-header .item p {
        margin-bottom: 10px;
    }

} */

.about-header.nitime-header .btn-div a {
    color: #2A221A;
    background-color: #FBF9F6;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 50px;
    border-radius: 5px;
    font-size: 18px;
    font-family: norm-med;
    display: inline-block;
}

@media all and (max-width:600px) {
    .about-header.nitime-header .btn-div {
        margin-top: 0;
    }
}

.faq-section {
    padding: 10px 15px 90px;

}



.faq-section h2 {
    font-size: 39px;
    font-weight: 700;
    color: #0c607c;
    line-height: 1;
    margin-bottom: 30px;
    text-align: center;
}

@media all and (max-width:767px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-section h2 {
        font-size: 25px;
    }
}

.faq-section .upper-para {
    text-align: center;
    font-size: 22px;
    color: #2A221A;
    line-height: 1;
    margin-bottom: 30px;
}

.faq-section .accordion-item {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #d5d8dc;
}

.faq-section h2.accordion-header {
    margin-bottom: 0;
}

.faq-section h2.accordion-header {
    font-family: rob-bold;
}

.faq-section button.accordion-button {
    font-size: 24px;
    /* font-weight: 400; */
    letter-spacing: -0.96px;
    color: #2A221A;
    line-height: 1;
    font-family: norm;
    font-weight: bold;
}



.faq-section .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.faq-section .accordion-body p {
    font-size: 20px;
    line-height: 1.5;
    color: #66696F;
}

@media all and (max-width:767px) {
    .faq-section button.accordion-button {
        font-size: 20px;
    }

    .faq-section .accordion-body p {
        font-size: 17px;
    }
}

.faq-section button.accordion-button:focus {
    box-shadow: none;
    background: none;
}

.faq-section button.accordion-button:not(.collapsed)::after {
    background: url(../img/minus.svg);
    background-size: 20px 20px;
    float: right;
    font-size: 12px;
    color: white;
    transform: rotate(0);
    /* margin-top: 5px; */
}

.faq-section button.accordion-button::after {
    background: url(../img/plus.svg);
    float: right;
    font-size: 12px;
    color: white;
    transition: opacity .3s ease;
    /* margin-top: 5px; */
}

.team-modal .modal-dialog {
    border-radius: 50px;
    overflow: hidden;
}

.team-modal .modal-body {
    border-radius: 30px;
    overflow: hidden;
}

.modal.show .modal-dialog {
    height: 100vh;
}

.dentist-modal-bg {
    background-image: url(../img/doctor-header.jpg);
    border-radius: 30px;
    /* padding: 30px 0px; */
    background-size: cover;
    background-position: center center;
    position: relative;
}

.team-modal .dentist-text {
    text-align: center;

}

.team-modal .dentist-text a {
    color: inherit;
}

.team-modal .modal-header {
    position: absolute;
    right: 24px;
    top: 0;
    padding: 0;
    color: white;
    z-index: 100;
    border: none;
}

.team-modal .modal-header button {
    padding: 0;
    border: none;
    background: none;
    font-size: 20px;
    color: black;
    margin: 0;
    opacity: 1;
    width: auto;
    height: auto;
}

.team-modal .dr-header h1 {
    font-size: 40px;
    color: #0c607c;
    letter-spacing: -.03em;
    font-family: headings;
    line-height: 1;
}

.team-modal .dr-header h1 small {
    font-size: 60%;
    letter-spacing: -.02em;
    font-family: norm-med;
}

.team-modal .dr-header h1 u {
    text-decoration: none;
}

.team-modal .modal-header button:focus {
    box-shadow: none;
}

.team-modal .modal-img img {
    width: 100%;
    border-radius: 20px;
}

.team-modal .dentist-modal-bg {
    color: white;
}

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.team-modal .dentist-text {
    margin-top: 10px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1100px;
    border-radius: 50px;
}

.team-modal .img-div {
    display: flex;
    justify-content: center;
}

.team-modal .img-div img {
    width: 239px;
    height: 330px;
    object-fit: contain;
    object-position: top;
}

.team-modal .dr-header {
    background: inherit;
}

.team-modal .dr-header .row {
    min-height: 430px;
}

.team-modal .dr-header h3,
.team-modal .dr-header h5 {
    color: black;
}

.team-modal .dr-header h5.clr-blue {
    color: #0c607c;
}

.team-modal .dr-header .row p,
.team-modal .dr-header .row div {
    color: black;
}

.team-modal .dr-header .row .content {
    height: 150px;
    overflow-y: auto;
}

.team-modal .dr-header .row .content::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.team-modal .dr-header .row .content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.team-modal .dr-header .row .content::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.team-modal .dr-header .row .content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.team-modal .modal-dialog {
    max-width: 1100px;
    margin: auto;
}

.team-modal .dentist-info {
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
    max-height: 400px;
    overflow: auto;
}

.team-modal .modal-img {
    max-width: 300px;
    margin: auto;
}

@media all and (max-width:600px) {

    .team-modal .dr-header .row .content {
        height: 200px;
    }

    .team-modal .img-div img {
        height: auto;
    }

    .team-modal .img-div {
        padding-bottom: 1rem;
    }
}

.table-heading {
    background: #0c607c;
    color: white;
    font-weight: 400;
}

.fees-main {
    padding: 50px 15px;
}

.fees-main .name,
.fees-main .price {
    font-size: 17px;
}

.fees-main .price {
    text-align: right;
}

.nhs-table .price {
    min-width: 157px;
}

.fees-main .table-heading {
    font-size: 17px;
}

.fees-main .inner {
    border: 8px solid #0c607c;
    padding: 25px;
    border-radius: 7px;
}

.fees-main .inner.fixed-bar.scroll-to-fixed-fixed {
    z-index: 10 !important;
}

.fees-main .line {
    margin: 15px 0;
    height: 2px;
    background-color: #0c607c;
}

.fees-main .cal-mail span {
    font-size: 30px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0c607c;
    color: #0c607c;
}

.fees-main .inner h3 {
    font-size: 30px;
    color: #0c607c;
    margin-bottom: 0;
}

.fees-main .inner h4 {
    color: #0c607c;
}

.fees-main .inner input:not([type="checkbox"]),
.fees-main .inner select {
    background: #fff;
    color: #181818;
    box-shadow: 1px 1px 3px 1px rgb(34 34 34 / 20%);
    height: 3.25em;
    padding: 1em 1.563em;
    outline: none;
}

.fees-main .inner textarea {
    box-shadow: 1px 1px 3px 1px rgb(34 34 34 / 20%);
}

.fees-main .inner form button {
    display: inline-block;
    padding: 8px 48px;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0;
    font-family: norm-med;
    color: white;
    font-size: 18px;
    border-radius: 5px;
}

.fees-main .cal-mail p {
    font-size: 17px;
}

.dental-finance {
    padding: 60px 15px;
}

.dental-finance h3 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    color: #0c607c;

    margin-bottom: 40px;
}

.dental-finance p {
    font-size: 24px;
    line-height: 48px;
    font-family: norm;
}

.dental-finance ul {
    font-size: 16px;
    margin-bottom: 0;

}

.first-step.finance-here .inner {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #0c607c;
}

.first-step.finance-here .inner .entity-upr {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.first-step.finance-here .inner .entity-upr .entity {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    flex-grow: 1;
}

.first-step.finance-here .inner .terms-agrement {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #8cc9dd;
    margin-bottom: 10px;
}

.first-step.finance-here .inner .monthly-payments {
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
}

.first-step.finance-here .inner .monthly-payments p {
    font-size: 1rem;
}

.first-step.finance-here .inner .monthly-payments p.prices {
    font-size: 30px;
    font-family: norm-med;
}

.first-step.finance-here .inner .monthly-payments .btn-div {
    display: flex;
    justify-content: center;
}

.first-step.finance-here .inner .monthly-payments .btn-div a {
    display: inline-block;
}

.first-step.finance-here .col-lg-8 p {
    text-align: start;
}

.first-step.finance-here .col-lg-8 ul {
    list-style: none;

}

.first-step.finance-here .col-lg-8 ul .tick-icon {
    color: rgb(255, 255, 225, .7)
}

.first-step.finance-here .col-lg-8 ul li {
    font-size: 16px;
    color: white;
    display: flex;
    gap: 10px;
}

@media all and (max-width:767px) {
    .first-step.finance-here .col-lg-8 ul {
        height: 10px;
    }
}

.footer-pages,
.footer-pages p {
    font-size: 19px;
}

@media all and (max-width:767px) {

    .footer-pages,
    .footer-pages p {
        font-size: 17px;
    }
}

.video-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container video {
    width: 100%;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper .play-gif {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
    fill: #0c607c;
    /* stroke: #B0653C;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9; */
}

.before-after {
    padding: 30px 15px;
}

.before-after .wrap {
    max-width: 1400px;
}

.before-after .row {
    padding: 30px 0;
    justify-content: space-between;
}

.before-after .img-divs {
    display: flex;
    /* gap: 20px; */

}

.before-after .content {
    padding: 10px;
}

.before-after .content p {
    color: #252F42;
    /* font-family: "Roboto", Sans-serif; */
    font-size: 20px;
}

.before-after .img-divs .img-div {
    padding: 10px;
    position: relative;
    /* border: 1px solid; */
}

.before-after .img-divs .img-div img {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #DDDDDD;
}

.before-after .img-divs .img-div:nth-child(2):before {
    content: 'After';
    position: absolute;
    left: 10px;
    bottom: 20px;
    z-index: 0;
    padding: 10px 20px;
    background: rgb(58 57 68 / 40%);
    color: #fff;
}

.before-after .img-divs .img-div:nth-child(1):before {
    content: 'Before';
    position: absolute;
    left: 10px;
    bottom: 20px;
    z-index: 0;
    padding: 10px 20px;
    background: rgb(58 57 68 / 40%);
    color: #fff;
}

@media all and (max-width:991px) {

    .before-after .row .col-lg-4:nth-child(1),
    .before-after .row .col-lg-4:nth-child(2) {
        margin-bottom: 20px;
    }

    .before-after .row:last-child .col-lg-5:nth-child(1),
    .before-after .row:last-child .col-lg-4:nth-child(1) {
        margin-bottom: 0;
    }
}

.before-after .inner {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
    padding: 25px 25px;
    height: 100%;
}

.before-after .btn-div {
    padding: 40px 0 70px 0;
    display: flex;
    justify-content: center;
}

.before-after .btn-div button {
    color: #FFFFFF;
    background-color: #161c2f;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 75px 20px 75px;
    font-size: 18px;
    border-radius: 5px;
    font-family: norm-med;
}

.ascunde {
    display: none;
}

.family-dental.not-just .ul-div {
    max-width: 500px;
}

.family-dental.not-just .ul-div ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media all and (min-width:991px) {
    .family-dental.not-just .ul-div {
        max-width: 100%;
        padding-right: 30px;
    }

    .family-dental .heading-div {
        max-width: 100%;
        padding-right: 30px;
    }
}

.family-dental.not-just .ul-div ul li {
    display: flex;
    gap: 22px;
    font-size: 20px;
    color: #252F42;
    padding-bottom: calc(20px/2);
    letter-spacing: 0px;
}

.family-dental.not-just .ul-div li img {
    width: 18px;
    height: 18px;
}

.post-treatment-sec .video-wrap {
    max-width: 800px;
    margin: auto;
}

.post-treatment-sec .video-wrap .popup-youtube {
    display: block;
    position: relative;
}

.post-treatment-sec .video-wrap .popup-youtube .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.post-treatment-sec .video-wrap .popup-youtube .play-btn span {
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.clr-fullblue {
    color: #0c607c !important;
}

.clr-lightblue {
    color: #8cc9dd !important
}

.composite-sec {
    background-color: #FBF9F6;
    padding: 35px 15px;
}

.composite-sec h2 {
    font-size: 41px;
    color: #0c607c;
}

.composite-sec .para-div p {
    /* text-align: center; */
    color: #66696F;
    /* font-family: "Roboto", Sans-serif; */
    line-height: 1.5;
    font-size: 20px;
}

.composite-sec .img-div img {
    border: 10px solid #0c607c;
}

.composite-sec .img-div .dynamic-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
}

.composite-sec .img-div .dynamic-btn>a {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 20px;
    color: white;
}

.composite-sec .img-div .dynamic-btn>a>span {
    font-size: 40px;
    color: white;
}

.composite-sec .img-div .dynamic-btn>a>span>svg {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
}

.dental-implants-options {
    padding: 35px 15px;
    background-color: #0c607c;
    color: white;
}

.dental-implants-options h2 {
    font-size: 41px;
    text-align: center;
    color: white;
}

.dental-implants-options .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

@media all and (max-width:991px) {
    .dental-implants-options .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:767px) {
    .dental-implants-options .grid {
        grid-template-columns: 1fr;
    }
}

.dental-implants-options .grid-four .img-div {
    display: flex;
    justify-content: center;
}

.dental-implants-options .grid .entity {
    padding: 20px;
    border: 2px solid white;
}

.dental-implants-options .grid .entity img {
    margin-bottom: 15px;
}

.dental-implants-options h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.dental-implants-options h3 span {
    color: #c8a347;

}

.dental-implants-options p {
    font-size: 18px;
}

.implants-work {
    padding: 50px 15px;
}

.implants-work h2 {
    font-size: 41px;
    text-align: center;
    color: #0c607c;
}

/* .implants-work h2 span {
    color: #c8a347;
} */

.implants-work .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

@media all and (max-width:767px) {
    .implants-work .works-car.grid {
        display: block;
    }

    .implants-work .works-car .owl-stage {
        display: flex;

    }

    .implants-work .works-car .owl-stage-outer {
        overflow-x: hidden;
    }

    .implants-work .works-car .owl-nav {
        display: none;
    }
}

.implants-work .grid .entity {
    padding: 20px;
}

.implants-work .entity h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.implants-work .entity .number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    font-size: 22px;
    margin-bottom: 40px;
}

.implants-work .entity .number span {
    width: 44px;
    height: 44px;
    background-color: #0c607c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
}

.implants-work .entity h3 {
    font-size: 25px;
}

.implants-work .btn-div a {
    display: inline-block;
    padding: 20px 30px;
    background-color: #0c607c;
    border-style: solid;
    border-width: 0;
    font-family: norm-med;
    color: white;
    font-size: 18px;
    border-radius: 5px;
}

.refferal-f p {
    color: #0c607c;
    font-size: 20px;
}

.refferal-f textarea:focus {
    border: none;
}

.refferal-f h2 {
    font-size: 41px;
    color: #0c607c;
    text-align: center;
}

.refferal-f textarea {
    height: auto;
}

.r-link {
    color: white;
    text-decoration: underline !important;
    transition: all .3s ease-in;
}

.exp-before-after p {
    margin-bottom: 60px;
}

.r-link:hover {
    color: black;
}

.refferal-f .file-input {
    border: 2px solid #0c607c;
    background: #8cc9dd;
    padding: 5px 10px;
}

.refferal-f input[type=date] {
    font-weight: 500;
    width: 100% !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    left: 0;
    margin: 0;
    color: black !important;
    font-size: 16px !important;
    text-align: center;
}

@media all and (max-width:400px) {
    .refferal-f input[type=date] {
        text-align: end;
    }
}

.refferal-f .date-label {
    position: absolute;
    z-index: 1;
    bottom: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    left: 15px;
    margin: 0;
    color: black !important;
    font-size: 16px;
}

.refferal-f .form-control {
    background: #8cc9dd;
    color: black;
    font-size: 16px;
    border-radius: 0;
}

.refferal-f .line {
    height: 2px;
    background: #0c607c;
}

.refferal-f .form-control+label {
    left: 5px;
}

.refferal-f .form-control:focus+label {
    color: black;
}

.form-control:focus {
    box-shadow: none;
    background-color: transparent;
}

.refferal-f label {
    color: black;
}

.refferal-f .form-control:not(textarea) {
    height: 44px;
}

.refferal-f .form-control~label {
    position: absolute;
    z-index: 1;
    top: 26px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 3px;
    left: 15px;
    margin: 0;
    color: black !important;
    font-size: 16px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}

/* .refferal-f .form-control:invalid+label {
    bottom: 26px;
} */

.refferal-f .form-group {
    position: relative;
    padding-top: 15px;
    margin-bottom: 10px;
}

.refferal-f .r-form .form-control:focus+label {
    color: #012840;
}

.refferal-f .form-control:focus+label,
.form-control.has-value+label {
    font-size: 12px;
    top: 0;
}

.refferal-f .submit-btn {
    background-color: #0c607c;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 95px 20px 95px;
    color: white;
    border-radius: 5px;
    font-family: norm-med;
    font-size: 18px;
}

/* .refferal-f .submit-btn:hover {
    background-color: #fff;
    color: rgba(0, 0, 0, .55)
} */

@media screen and (max-width:991px) and (min-width:768px) {
    .refferal-f .form-control+label {
        font-size: 13px;
    }
}

@media screen and (max-width:428px) {
    .refferal-f .form-control+label {
        letter-spacing: 0;
        font-size: 13px;
    }

    .refferal-f input[type=date] ::-webkit-calendar-picker-indicator {
        font-size: 13px !important;
    }
}

@media screen and (max-width:296px) {
    .refferal-f .form-control+label {
        letter-spacing: 0;
        font-size: 11px;
    }
}

.refferal-f input::-webkit-input-placeholder {
    color: rgb(120, 66, 76)
}

.refferal-f input:-moz-placeholder {
    color: rgb(120, 66, 76);
    opacity: 1;
}

.refferal-f input::-moz-placeholder {
    color: rgb(120, 66, 76);
    opacity: 1;
}

.refferal-f input:-ms-input-placeholder {
    color: rgb(120, 66, 76);
}

.refferal-f input::-ms-input-placeholder {
    color: rgb(120, 66, 76);
}

.refferal-f input::placeholder {
    color: rgb(120, 66, 76);
}

.burgandi-color {
    color: rgb(120, 66, 76);
}

.refferal-f .line {
    margin-top: -1px;
    width: 100%;
}

.refferal-f input:focus {
    outline: none !important;
    border: none;
}

#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.refferal-f table {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: white !important;
    min-width: 400px;
}

.referral-header h1,
.referral-header p {
    color: #0c607c;
}

.referral-header p a {
    color: inherit;
    text-decoration: underline;
}

.referral-header h1 {
    font-size: 60px;
}

@media all and (max-width:767px) {
    .referral-header h1 {
        font-size: 30px;
    }
}

.referral-header p {
    font-size: 20px;
}

.gm-style .gm-style-iw-d>div {
    color: #0c607c;
}

#map {
    height: 230px;
    width: 90%;
}

@media all and (max-width:766px) {
    #map {
        width: 100%;
    }
}

#viewLargeMap {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    /* Google Maps blue */
    color: #fff;
    /* White text color */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#viewLargeMap:hover {
    background-color: #357ae8;
    /* Darker blue on hover */
}

/* 
.gmnoprint .gm-style-mtc {
    display: none;
} */
.grecaptcha-badge {
    display: none !important;
}

.form-control.oneinput.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url(../img/invalid.svg);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.oneinput.is-invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), .25)
}