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

@font-face {
    font-family: norm;
    src: url(https://www.cfastresults.co.uk/assets/Fonts/Gibson-Light.otf);
}

@font-face {
    font-family: med;
    src: url(https://www.cfastresults.co.uk/assets/Fonts/pirulen/pirulen-rg.otf);
}

@font-face {
    font-family: regular;
    src: url(https://www.cfastresults.co.uk/assets/Fonts/Gibson-Regular.ttf);
}

html {
    overflow-x: hidden;
}

body {
    font-size: 18px;
    font-family: norm;
    overflow-x: hidden;
}

section {
    padding-left: 20px;
    padding-right: 20px;
}

section.bh-section {
    padding: 3rem 0;
}

section.ptop-3 {
    padding-top: 3rem;
}

/* Preloader */
.preloaderBg {
    z-index: 100000000000000000000;
    position: fixed;
    z-index: 10000;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloaderBg.preloader-dark {
    background: black;
}

.preloader-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}

.preloader-logo {
    margin: auto;
    background: url(https://www.cfastresults.co.uk/assets/Img/CFAST-logo.webp) no-repeat center;
    background-size: 150px;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
}


.preloader-circle {
    /*border: 5px solid #f3f3f3; GG*/
    border: 5px solid #e0f6f7;
    /*border-top: 5px solid #c18263; GG*/
    border-top: 5px solid #73b7c4;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1.5s ease-in-out infinite;
    position: absolute;
    top: 0;
}

.preloaderBg.preloader-dark .preloader-circle {
    border: 5px solid white;
    border-top: 5px solid #0fb7bf;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: med;
}

h1 {
    text-transform: uppercase;
}

h2 {
    color: #73b7c4;
    margin-bottom: 3rem;
}

.clr-blck {
    color: black;
}

.clr-white {
    color: white;
}

.text-blue {
    color: #6eb5d3;
}

.text-purple {
    color: #73b7c4;
}

.wrap {
    max-width: 1200px;
    margin: auto;
}

.main-navbar {
    background-color: #e0f6f7;
    position: relative;
}

.main-navbar.navbar-dt {
    background-color: rgba(0, 0, 0, 0.2);
}

.main-navbar .switch-wala {
    position: absolute;
    width: 100%;
    top: 9px;
    left: 0;
}

.main-navbar.navbar-fixed {
    position: fixed;
    z-index: 100;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    box-shadow: 0 1px 40px #73b7c4;
    animation: random .3s forwards;
    /* background-color: #fff; */
    /* Add your desired background color */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    /* Add your desired box-shadow */
}

.navbar-dt.navbar-fixed {
    background-color: black;
}

.main-navbar.navbar-fixed .pd-img {
    display: none !important;
}

@keyframes random {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.main-navbar a.navbar-brand img {
    width: 160px;
}

.main-navbar.navbar-fixed a.navbar-brand img {
    width: 100px;
}

.main-navbar a.nav-link {
    text-transform: uppercase;
    font-size: 14px;
    font-family: med;
    color: #6eb5d3;
}

/*MFU ADDING STYLES AFTER LARAVEL PROJECT STARTS*/
.btn-book {
    padding: 8px 40px !important;
    border-radius: 10px;
    background: #73b7c4;
    color: white !important;
    font-size: 18px;
    border: 1px solid #73b7c4;
    transition: 0.4s;
}

.btn-book:hover {
    background: transparent;
    color: #73b7c4 !important;
}

.add-clinic-form {
    padding: 50px 0;
}

.add-clinic-form .form-control {
    width: 100% !important;
    text-align: left;
}

.add-clinic-form label {
    color: #6eb5d3;
}

h4.section-heading {
    font-size: 1.5rem;
}

.add-clinic-form .form-group {
    margin-bottom: 1rem;
}

.add-clinic-form .form-group label {
    margin-bottom: 0.5rem;
}





/*MFU ADDING STYLES AFTER LARAVEL PROJECT STARTS*/
.main-navbar.navbar-fixed a.nav-link {
    font-size: 13px;
}

.main-navbar .pd-img .d-flex.img-div {
    gap: 4px;
}

.main-navbar .pd-img .d-flex.img-div img {
    height: 50px;
}

.check-box {
    /* transform: scale(2); */
    gap: 10px;
    text-transform: uppercase;
    font-family: med;
}

.main-navbar.navbar-dt input[type="checkbox"] {
    background-color: #0fb7bf;
}

.main-navbar.navbar-dt input[type="checkbox"]::after {
    background-color: black;
}

.check-box p {
    color: #776669;
}

.check-box p.active {
    color: #73b7c4
}

.main-navbar input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 52px;
    height: 25px;
    background: #ccc;
    border-radius: 50px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.4s;
}

.main-navbar input:checked[type="checkbox"] {
    background: #73b7c4;
}

.main-navbar input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    transition: 0.4s;
}

.main-navbar.navbar-dt input[type="checkbox"]::after {
    left: 50%;
}

.main-navbar input:checked[type="checkbox"]::after {
    left: 50%;
}

.main-navbar.navbar-dt input:checked[type="checkbox"]::after {
    left: 0;
}

.main-navbar .lg-wala {
    padding: 15px 5px;
}

.main-navbar.navbar-fixed .lg-wala {
    display: none;
}

.main-navbar .lg-wala .check-box {
    gap: 10px;
}

@media all and (max-width:400px) {
    .main-navbar .lg-wala p {
        font-size: 14px;
    }
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: #73b7c4;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler:hover span,
.navbar-toggler:focus span {
    background: #73b7c4;
}

/* 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: #73b7c4;
    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 (min-width:1290px) {
    .main-navbar a.nav-link {
        min-width: 154px;
    }
}

@media all and (min-width:992px) {
    .main-navbar .lg-wala {
        display: none;
    }

    .main-navbar li.nav-item {
        display: flex;
        align-items: center;

    }

    .main-navbar a.nav-link {
        text-align: center;
        /* border-right: 1px solid #73b7c4; */
        position: relative;
        max-width: 168px;
    }

    .main-navbar a.nav-link::before {
        content: "";
        position: absolute;
        bottom: 50%;
        right: 0;
        transform: translateY(50%);
        height: 32px;
        width: 1px;
        background-color: #73b7c4;
        transition: all .1s ease-in;
    }

    .main-navbar a.nav-link:hover::before {
        animation: navanim .6s forwards;
        bottom: 0;
    }

    .main-navbar li.nav-item:last-child a.nav-link::before {
        display: none;
    }

    .main-navbar li.nav-item:last-child a.nav-link:hover::before {
        display: block;
    }
}

@keyframes navanim {
    0% {
        height: 32px;
        width: 1px;
        bottom: 50%;
    }

    33% {
        bottom: 0 !important;
        /* transform: translateY(0); */
        width: 1px;
        height: 1px;
    }

    100% {
        height: 1px;
        width: 90%;
    }
}

.index-header .content {
    height: 65vh;
    background: url(https://www.cfastresults.co.uk/assets/Img/header-desktop.webp);
    background-size: cover;
}



.header .content {
    height: 65vh;
}


.header h1 {
    color: #73b7c4;
}

.indexdt-header {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/image-000.webp);
    background-size: cover;
}

@media all and (max-width:767px) {
    .indexdt-header {
        background-image: url(https://www.cfastresults.co.uk/assets/Img/dentsit-home-mb.webp);
    }
}

.indexdt-header .content {
    height: 65vh;
}

.header .container-fluid.main-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indexdt-header .container-fluid.main-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indexdt-header .btn-div button {
    display: flex;
    align-items: center;
    border-radius: 10px;
    background-color: #0fb7bf;
    margin-bottom: 20px;
    color: #e0f6f7;
    border: none;
}

.header .wrap,
.header .container-fluid {
    height: 100%;
}

.index-header .btn-div button {
    display: flex;
    width: 310px;
    align-items: center;
    border-radius: 10px;
    background-color: #73b7c4;
    margin-bottom: 20px;
    color: #e0f6f7;
    border: none;
}

.index-header .btn-div button span {
    padding: 6px 12px;
    border-right: 1px solid white;
    font-size: 24px;
}

.index-header .social-icons {
    gap: 47px;
}

.index-header .social-icons a {
    display: block;
    /* margin-right: 26px; */
}

/* .index-header .social-icons a:last-child {
    margin-right: 0;
} */

.index-header .btn-div button p {
    padding: 12px 6px;
    font-size: 20px;
    /* margin-bottom: 20px; */
}

.index-header .container-fluid.main-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.index-header.indexdt-header .content {
    background: none;
}

.index-header img {
    width: 70px;
}

@media all and (max-width:767px) {
    .index-header:not(.indexdt-header) .content {
        background: none;
        height: auto;
        /* padding: 10px 0; */
    }

    .indexdt-header .content {
        height: 42vh;
    }

    .index-header .content .container-fluid.main-fluid {
        padding: 10px 15px;
    }

    .indexdt-header .content .container-fluid.main-fluid {
        justify-content: flex-end;
    }

    .index-header .btn-div button {
        margin: auto;
        margin-bottom: 10px;
    }

    .index-header .btn-div button p {
        padding: 9px 6px;
    }

    .index-header .social-icons {
        gap: 20px;
        justify-content: center;
    }

    .index-header .content .container-fluid.main-fluid img {
        width: 55px;
    }
}

.not-happy {
    padding: 30px 0;
    background: url(https://www.cfastresults.co.uk/assets/Img/close-up-patient-looking-mirror.webp);
    background-size: cover;
}

.not-happy .img-div {
    max-width: 400px;
    overflow: hidden;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #73b7c4;
}

.not-happy .img-div img {
    width: 100%;
    transform: scale(1.06);
    transition: all .2s ease-in;
}

.not-happy .img-div:hover img {
    transform: scale(1);
}

/*
.not-happy p {
    font-size: 25px;
} */

.how-does {
    padding: 3rem 0 20px 0;
    color: #73b7c4;
}

.how-does.dt {
    background: url(https://www.cfastresults.co.uk/assets/Img/works-dt.webp);
    padding-top: 126px;
    margin-top: -104px;
    background-size: cover;
}

/*
.how-does.dt .khali-div {
    background-color: black;
    height: 50px;
} */

.how-does iframe {
    height: 212px;
    width: 100%;
}

.some-smiles {
    margin-top: -96px;
    padding: 100px 0 20px 0;
    background-color: #e0f6f7;
}

.some-smiles .img-car .owl-stage {
    display: flex;
}

.some-smiles .img-car .owl-nav {
    display: none;
}

.some-smiles .img-div {
    height: 100%;
}

.some-smiles .img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.some-smiles .img-car .owl-stage-outer {
    overflow-x: hidden;
}

.some-smiles .img-car img {
    width: 100%;
}

.some-smiles .img-car .item {
    border-radius: 24px;
    overflow: hidden;
}

.got-a {
    padding: 50px 20px;
    background: linear-gradient(to right, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3)), url(https://www.cfastresults.co.uk/assets/Img/close-up-patient-looking-mirror.webp);
    background-size: cover;
    position: relative;
}

.got-a p {
    font-size: 20px;
}

.got-a h2,
.got-a p {
    margin-bottom: 1rem;
}

.got-a.dt {
    background-color: none;
    opacity: 1;
}

.got-a.dt .container-fluid {
    position: relative;
    z-index: 1;
}

.got-a.dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    background: linear-gradient(to right, rgba(255, 255, 255, .2), rgba(255, 255, 255, .2)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    background-size: cover;
}

.got-a .col-lg-6 {
    padding: 20px 30px;
    border-radius: 45px;
    background-color: #73b7c4;
    color: white;
}

.got-a.dt .col-lg-6 {
    background-color: black;
}

.got-a .col-lg-6 h2 {
    color: white;
}

.got-a.dt .col-lg-6 h2 {
    color: #0fb7bf;
}

.got-a .col-lg-6 button {
    color: #73b7c4;
    background-color: #e0f6f7;
    padding: 10px 17px;
    border-radius: 10px;
    font-size: 22px;
    border: none;
    width: 200px;
}

.got-a.dt .col-lg-6 p {
    color: #0fb7bf;
}

.got-a.dt .col-lg-6 button {
    background-color: #0fb7bf;
    color: black;
}

@media all and (max-width:479px) {
    .got-a .d-flex.btn-div {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
}

footer {
    padding: 15px 0;
    background-color: #73b7c4;
    color: white;
    font-size: 16px;
}

footer .cfast-ltd {
    gap: 15px;
    align-items: center;
}

footer .cfast-ltd .footer-imgs img {
    height: 40px;
}

footer .cfast-ltd .footer-imgs {
    gap: 7px;
}

footer.footer-dt {
    background-color: black;
}

footer a {
    color: white !important;
    text-decoration: none;
}

footer .d-flex.footer-f {
    gap: 10px;
}

@media all and (max-width:590px) {
    footer .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

    footer .d-flex.footer-f {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.upcoming-courses {
    padding: 20px 0;
    background-color: black;
}

.upcoming-courses p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.upcoming-courses img {
    width: 50px;
    height: auto;
}

.upcoming-courses .d-flex .cfast-fixed {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .upcoming-courses .d-flex .cfast-fixed{

} */
.upcoming-courses .d-flex .cfast-fixed p {
    text-align: center;
}

.upcoming-courses .d-flex>div {
    /* flex-grow: 1; */
    width: 16.6%;
    background-color: #0fb7bf;
    position: relative;
    padding: 15px 10px;
    display: flex;
    /* justify-content: center; */
}

.upcoming-courses .d-flex>div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 80%;
    width: 2px;
    background-color: black;
}

.upcoming-courses .d-flex {
    border-radius: 10px;
    overflow: hidden;
}

.upcoming-courses .d-flex .cfast-fixed::before {
    display: none;
}

.upcoming-courses .free-div>div,
.upcoming-courses .date-time>div,
.upcoming-courses .location>div {
    display: flex;
    gap: 28px;
    align-items: center;
}

.upcoming-courses.inr-course .location {
    justify-content: flex-start;
}

/* .upcoming-courses.inr-course .d-flex>div {
    width: 25%;
} */
@media all and (max-width:991px) {
    .upcoming-courses.inr-course .d-flex {
        flex-direction: column;
        /* flex-wrap: wrap; */
    }

    .upcoming-courses.inr-course .d-flex>div {
        width: 100% !important;
    }

    .upcoming-courses.inr-course .d-flex>div::before {
        display: none;
    }


}


.upcoming-courses.inr-course .d-flex .free-div::before {
    display: none;
}

.upcoming-courses .location span {
    font-size: 45px;
    color: white;
}



.upcoming-courses .free-div p,
.upcoming-courses .location p,
.upcoming-courses .date-time p:nth-child(2),
.upcoming-courses .cfast-fixed p:nth-child(2) {
    margin-bottom: 0;
}

.upcoming-courses .btn-div {
    text-align: center;
}

.upcoming-courses .btn-div button {
    padding: 14px 0;
    width: 299px;
    background-color: inherit;
    border-radius: 25px;
    border: 3px solid #0fb7bf;
    color: #0fb7bf;
}

.upcoming-courses .d-flex>.date-time,
.upcoming-courses .d-flex>.cfast-fixed {
    width: 33.3%;
}

.upcoming-courses.inr-course .d-flex>.cfast-fixed {
    width: 16.6%;
}

.upcoming-courses.inr-course .d-flex>.location {
    width: 33.3%;
}

@media all and (max-width:991px) {
    .upcoming-courses .d-flex {
        flex-wrap: wrap;
    }

    .upcoming-courses .d-flex>div {
        width: 50% !important;
        /* flex-wrap: wrap; */
    }

    .upcoming-courses .d-flex .date-time::before {
        display: none;
    }
}

@media all and (max-width:767px) {
    .upcoming-courses .d-flex {
        flex-direction: column;
    }

    .upcoming-courses .d-flex>div {
        width: 100% !important;
        /* flex-wrap: wrap; */
    }

    .upcoming-courses .d-flex .cfast-fixed p {
        font-size: 18px;
    }

    .upcoming-courses .d-flex>div::before {
        display: none;
    }
}

@media all and (max-width:500px) {
    .upcoming-courses p {
        font-size: 15px;
    }

    .upcoming-courses .upcoming-courses .d-flex img {
        width: 30px;
    }

    .upcoming-courses .d-flex {
        font-size: 30px;
    }


}

.upcoming-courses .ascunde {
    display: none;
}

.helping-u {
    padding: 3rem 0 20px 0;
    /* position: relative;
    z-index: 1; */
    background: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    background-size: cover;
}

.helping-u p {
    color: #0fb7bf;
}

/* .helping-u::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .4;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)) url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    background-size: cover;
    z-index: -1;
} */

.helping-u .row.justify-content-evenly .col-lg-3 {
    background-color: black;
    color: #0fb7bf;
    padding: 30px 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 3px solid #0fb7bf;
}

.helping-u img {
    width: 100%;
    border-radius: 10px;
}

.helping-u .row.justify-content-evenly .col-lg-3 h3 {
    text-align: center;
    font-size: 25px;
}

.helping-u .row.justify-content-evenly .col-lg-3 h3:nth-child(2) {
    margin-bottom: 0;
}

/* why cfast  page */
.why-header .content {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/whycfast-header.webp);
    background-size: cover;
}

@media all and (max-width:767px) {
    .why-header .content {
        background-image: url(https://www.cfastresults.co.uk/assets/Img/whycfast-header-mb.webp);
        height: 42vh;
    }
}

.why-header h1 {
    color: #73b7c4;
}

.teeth-stop {
    background-color: #73b7c4;
    color: white;
    position: relative;
    padding: 20px 0;
}

/* .teeth-stop::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #6eb5d3;
    z-index: -1;
} */

.teeth-stop .heading-div {
    max-width: 1000px;
    margin: auto;
}

.teeth-stop .col-lg-3 {
    padding: 0;

}

.teeth-stop .img-div {
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.teeth-stop .col-lg-3 img {
    width: 100%;
    /* transform: scale(1.09); */
    transition: all .3s ease-in;
    /* opacity: 0.3; */

}

/* .teeth-stop .col-lg-3:hover img {
    transform: scale(1.09);
    filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);
    opacity: 1;
} */

.teeth-stop .col-lg-3 .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7));
}

.teeth-stop .col-lg-3 .content h3 {
    color: #6eb5d3;
    margin-bottom: 0;
    font-size: 19px;
    position: relative;
}

.teeth-stop .col-lg-3 .hidden-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    display: flex;
    background-color: rgba(0, 0, 0, .2);
    color: white;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in;
    overflow: hidden;
}

.teeth-stop .img-div:hover img {
    filter: blur(5px);
}

.teeth-stop .img-div:hover>.content {
    height: 0;
}

.teeth-stop .img-div:hover>.hidden-content {
    height: 100%;
    padding: 15px;
}

.mock-teeth {
    position: relative;
    padding: 144px 0 20px 0;
    background-color: white;
    margin-top: -124px;
}

.mock-teeth img {
    width: 100%;
}

.mock-teeth .img-div {
    width: fit-content;
    filter: drop-shadow(12px 12px 2px #e0f6f7) drop-shadow(-12px -12px 2px #73b7c4);
    /* clip-path: polygon(21% 0, 100% 0%, 82% 100%, 0% 100%); */
    /* overflow: hidden; */
    transition: all .3s ease-in;

}

.mock-teeth .img-div:hover {
    filter: drop-shadow(-12px -12px 2px #e0f6f7) drop-shadow(12px 12px 2px #73b7c4);
}

.mock-teeth .full-main {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -20px;
    top: 0;

}

.mock-teeth .main-her {
    /* position: absolute; */
    clip-path: polygon(21% 0, 100% 0%, 82% 100%, 0% 100%);
    height: 100%;
    width: 100%;
    background-color: #73b7c4;
}

.mock-teeth .top {
    position: absolute;
    top: -45px;
    left: 0;
    /* heiht: 20px; */
    height: 80px;
    width: 70px;
    background: red;
    z-index: 52;
}

/* .mock-teeth .img-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(21% 0, 100% 0%, 82% 100%, 0% 100%);
    width: 100%;
    height: 100%;
    right: -20px;
    top: 0;
    background-color: #73b7c4;
} */

.jst-wanted {
    /* background: url(https://www.cfastresults.co.uk/assets/Img/jst-wanted.webp);
    background-size: cover; */
    background: linear-gradient(to right, #e4e5e7, #d7d8da);
    position: relative;
    /* padding-bottom: 100px; */

}

.jst-wanted .profile-div {
    width: 80px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #73b7c4;
    margin-top: -36px;
    margin-bottom: 50px;
}

.jst-wanted .profile-div img {
    width: 100%;
}

.jst-wanted .col-lg-3 img {
    width: 100%;
    margin-top: -113px;
}

@media all and (max-width:992px) {
    .jst-wanted .col-lg-3 img {
        margin-top: 0;
    }
}

.jst-wanted .white-bg {
    width: 100%;
    height: 110px;
    background-color: white;
}

@media all and (max-width:991px) {
    .jst-wanted .white-bg {
        height: 50px;
    }
}

.jst-wanted .content-p {
    /* max-width: 93%; */
    padding: 15px 20px;
    margin: auto;
    color: #73b7c4;
    position: relative;
    height: 170px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media all and (max-width:767px) {
    .jst-wanted .content-p {
        height: auto;
    }
}

.jst-wanted .item {
    overflow: hidden;
}

.jst-wanted .content-p p {
    position: relative;
    width: 100%;
    margin-bottom: 0;

}

.jst-wanted .content-p::before {
    content: open-quote;
    font-size: 60px;
    font-weight: bold;
    /* line-height: 120px; */
    left: -1px;
    top: -25px;
    position: absolute;
    /* width: 90px; */
    color: #73b7c4;
    font-family: serif;
    z-index: 2;
}

.jst-wanted.jst-wanted-dt .content-p::before {
    color: white;
}

.jst-wanted.jst-wanted-dt .content-p::after {
    color: white;
}

.jst-wanted .content-p::after {
    content: close-quote;
    font-size: 60px;
    font-weight: bold;
    /* line-height: 120px; */
    right: -2px;
    bottom: -44px;
    position: absolute;
    /* width: 90px; */
    color: #73b7c4;
    font-family: serif;
    z-index: 2;
}

.jst-wanted h3 {
    color: #73b7c4;
    font-family: regular;
}

.testimonial-car {
    overflow: hidden;
}

.testimonial-car .owl-stage-outer {
    overflow-x: hidden;
}

.testimonial-car .owl-stage {
    display: flex;
    /* align-items: ; */
}

@media all and (max-width:767px) {
    .testimonial-car .owl-stage {
        /* display: flex; */
        align-items: center;
    }
}

.testimonial-car .owl-nav,
.testimonial-car .owl-dots {
    display: none;
}

/* .item .profile-div {
    position: relative;
    z-index: 99;
} */
.jst-wanted .col-lg-8.car-too {
    /* margin-top: -36px; */
    padding: 20px 0;
}

.jst-wanted .testimonial-car .profile-div {
    margin-top: 0;
}


/* HOW DOES IT WORK page  */
.how-work-header .content {
    background: url(https://www.cfastresults.co.uk/assets/Img/how-it-works-desktop.webp);
    background-size: cover;
}

.how-work-header h1 {
    color: #73b7c4;
}

@media all and (max-width:767px) {
    .how-work-header .content {
        background: url(https://www.cfastresults.co.uk/assets/Img/how-it-works-mb.webp);
        height: 42vh;
    }
}

.middle-paras {
    padding: 20px 0;
}

.middle-paras p {
    color: #73b7c4;
}

.three-treaments {
    padding: 20px 0;
}

.three-treaments .img-divs {
    /* overflow: hidden; */
}

.three-treaments .img-divs img {
    width: 100%;

    transition: all .1s ease-in;
}

.three-treaments .img-divs:hover img {
    filter: drop-shadow(12px 12px 12px rgba(224, 246, 247, .9)) drop-shadow(-12px -12px 12px rgba(224, 246, 247, .9));
    transform: scale(1.04);
}

.three-treaments h3,
.three-treaments p,
.three-treaments .btn-div {
    text-align: center;
}

.animated {
    -webkit-animation-duration: 1000 ms;
    animation-duration: 1000 ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
    position: relative;
    z-index: 1
}

/* .owl-animated-in - only for upcoming item
  /* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
    position: relative;
    z-index: 0
}

/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.three-treaments .content {
    margin-top: 30px;
    background-color: white;
    box-shadow: 0 0 20px rgba(224, 246, 247, .9);
    border-radius: 15px;
    padding: 15px;
    transition: all .2s ease-in;
}

.three-treaments .content:hover {
    transform: scale(1.04);
}

.three-treaments .content h3 {
    font-size: 19px;
    height: 50px;
}

.three-treaments .content p {
    display: flex;
    align-items: center;
    height: 105px;
    overflow: hidden;
}

@media all and (max-width:1169px) and (min-width:992px) {
    .three-treaments .content p {
        height: 153px;
    }

    .btn-book {
        padding: 8px !important;
    }
}

.three-treaments .btn-div button {
    background-color: #73b7c4;
    text-transform: capitalize;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 22px;
}


/* clear braces page   */
.clear-braces-header .content {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/clear-braces-header-desktop.webp);
    background-size: cover;
}

@media all and (max-width:767px) {
    .clear-braces-header .content {
        background-image: url(https://www.cfastresults.co.uk/assets/Img/clear-braces-header-mb.webp);
        height: 42vh;
    }
}

.sec-cb {
    padding: 20px 0;
}

.sec-cb .wrapr-inner {
    width: 80%;
    margin: auto;
    padding: 50px 25px;
    background-color: #73b7c4;
    color: white;
    border-radius: 60px;
}

.sec-cb h2 {
    color: white;
}

.sec-cb .container-fluid {}

.sec-cb .container-fluid iframe {
    /* height: 100%; */
    width: 100%;
    height: 208px;
}

.benefits-system {
    padding-top: 20px;
    background-color: #e0f6f7;
}

.benefits-system h2 {
    /* color: #d17f7f; */
}

.benefits-system img {
    width: 100%;
    transition: all .1s ease-in;
}

.benefits-system .img-div:hover {
    filter: drop-shadow(12px 12px 12px rgba(224, 246, 247, .9)) drop-shadow(-12px -12px 12px rgba(224, 246, 247, .9));
    transform: scale(1.04);
}

.benefits-system.benefits-system-dt .img-div:hover img {
    filter: drop-shadow(12px 12px 12px rgba(15, 183, 191, .7)) drop-shadow(-12px -12px 12px rgba(15, 183, 191, .7));
    transform: scale(1.04)
}

.faq-cb {
    margin-top: -230px;
    /* padding: 100px 0; */
    padding-bottom: 20px;
    background: url(https://www.cfastresults.co.uk/assets/Img/full-equiped-medical-cabinet.webp);
    background-size: cover;
}

.faq-cb .khali-div {
    height: 280px;
}

.khali-sec {
    width: 100%;
    height: 110px;
}

@media all and (max-width:991px) {
    .khali-sec {
        height: 50px;
    }
}

.faq-cb button.accordion-button {
    background-color: #73b7c4;
    font-family: norm;
    color: white;
}

.faq-cb .accordion-collapse {
    background-color: #e0f6f7;
    color: #73b7c4;
}

.faq-cb .accordion-item {
    margin-bottom: 15px;
}

.faq-cb .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f0fe";
    background: none;
}

.faq-cb .accordion-button:not(.collapsed)::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    content: "\f146";
}

.faq-cb .accordion-button:focus {
    box-shadow: none;
}

/* faq page  */
.faq-header .content {
    background: url(https://www.cfastresults.co.uk/assets/Img/faq-header-desktop.webp);
    background-size: cover;
    background-position: right;
}

@media all and (max-width:767px) {
    .faq-header .content {
        background: url(https://www.cfastresults.co.uk/assets/Img/faq-header-mb.webp);
        height: 42vh;
    }
}

.faq-three {
    padding: 20px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(https://www.cfastresults.co.uk/assets/Img/patient-side-bg-lines.webp);
    background-size: cover;
}

.faq-three .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

@media all and (max-width:991px) {
    .faq-three .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:600px) {
    .faq-three .grid {
        grid-template-columns: 1fr;
    }
}

.faq-three .row a {
    height: 150px;
    padding: 15px;
    background-color: #73b7c4;
    border: 1px solid #73b7c4;
    color: white;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease-in;
}

.faq-three .row a:hover {
    background-color: white;
    color: #73b7c4;
}

.white-popup {
    position: relative;
    /* background: #73b7c4; */
    background: linear-gradient(rgba(115, 183, 196, .8), rgba(115, 183, 196, .8)), url(https://www.cfastresults.co.uk/assets/Img/faq-pop-up-Full-opac.webp);
    color: white;
    padding: 40px 20px;
    width: auto;
    background-size: cover;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
}

.white-popup .content {
    padding-top: 10px;
    max-height: 173px;
    overflow-y: auto;
    /* display: flex; */
    vertical-align: middle;
    /* flex-direction: column;
    justify-content: center; */
    /* align-items: center; */
}

/* .white-popup .content-innr {
    height: 100%;
} */

/* .white-popup .content-innr p:only-child {
    height: 100%;
    display: flex;
    align-items: center;
} */

.white-popup .content::-webkit-scrollbar {
    width: 3px;
}

.white-popup .content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.white-popup .content::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.white-popup .content h4 {
    margin-bottom: 1rem;
    font-weight: bolder;
}

.white-popup .content p:last-child {
    margin-bottom: 0;
}

.black-popup {
    position: relative;
    background: white;
    color: #0fb7bf;
    padding: 40px 20px;
    width: auto;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
}

.white-popup h4 {
    /* font-family: book-one; */
    font-family: norm;
}



.mfp-zoom-out {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-close-btn-in .mfp-close {
    color: white;
    opacity: 1;
}

.black-popup .mfp-close-btn-in .mfp-close {
    color: #0fb7bf;
}

.simple-paras {
    padding: 20px 0;
}


/* review page  */
.review-header .content {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/reviews-header-desktop.webp);
    background-size: cover;
    background-position: right;
}

@media all and (max-width:767px) {
    .review-header .content {
        background-image: url(https://www.cfastresults.co.uk/assets/Img/reviews-header-mb.webp);
        height: 42vh;
    }
}

.patient-review {
    /* padding: 20px 0; */
    padding: 0;
    background-color: #e0f6f7;
}

.patient-review .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.patient-review .heading-div {
    padding: 30px 15px;
    background-color: white;
    color: #73b7c4;
    margin-bottom: 0;
}

.patient-review .heading-div h2 {
    margin-bottom: 0;
}

.patient-review iframe {
    width: 100%;
    height: 212px;
}

.patient-review p {
    color: #73b7c4;
}

.case-studies {
    padding: 20px 80px;
    position: relative;
}

.case-studies .img-div {
    position: relative;
}

.case-studies .img-div .after-hover {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    opacity: 0;
    transition: all .2s ease-in;
}

.case-studies .img-div:hover .before-hover {
    opacity: 0;
}

.case-studies .img-div:hover .after-hover {
    opacity: 1;
}

.finner-logo {
    position: absolute;
    left: -28px;
    top: 40px;
    width: 100px;
    animation: tobot 23s ease-in infinite;
}

@keyframes tobot {
    0% {
        top: 40px;
    }

    50% {
        top: 65%;
    }

    100% {
        top: 40px;
    }
}

@keyframes totop {
    0% {
        bottom: 40px;
    }

    50% {
        bottom: 65%;
    }

    100% {
        bottom: 40px;
    }
}

.finner-logo img,
.sinner-logo img {
    width: 100%;
    opacity: .2;
}

.finner-logo img {
    transform: rotate(315deg);
}

.sinner-logo img {
    transform: rotate(45deg);
}

.sinner-logo {
    position: absolute;
    right: -28px;
    bottom: 40px;
    width: 100px;
    animation: totop 23s ease-in infinite;
}

.case-studies .img-div {
    margin-bottom: 15px;
    /* box-shadow: 12px 12px 2px #e0f6f7, 12px 12px 2px #73b7c4; */
}

.case-studies .img-div img {
    width: 100%;
    filter: drop-shadow(-12px -12px 5px #73b7c4) drop-shadow(12px 12px 5px #e0f6f7);
    transition: all .2s ease-in;
}

.case-studies .img-div img:hover {
    filter: drop-shadow(-12px -12px 5px #e0f6f7) drop-shadow(12px 12px 5px #73b7c4);
}




/* find dentist page  */


.find-dentist-header .content {
    background: url(https://www.cfastresults.co.uk/assets/Img/find-dentist-desktop.webp);
    background-size: cover;
    height: 50vh;

}

@media all and (min-width:992px) {
    .find-dentist-header .content {
        background-position: right;
    }
}

@media all and (max-width:767px) {
    .find-dentist-header .content {
        background: url(https://www.cfastresults.co.uk/assets/Img/find-dentist-mb.webp);
    }
}

.find-dentist-header .content input,
.find-dentist-header .content select {
    border: 3px solid #73b7c4;
    height: 40px;
}

.find-dentist-header .btn-div button {
    width: 100%;
    border-radius: 20px;
    color: white;
    background-color: #73b7c4;
    height: 40px;
    border: none;
}

.clinic-dentist {
    padding: 20px 0;
}

.clinic-dentist .entity {
    background-color: white;
    padding: 15px;
    border: 2px solid #e0f6f7;
    border-radius: 10px;
    margin-bottom: 20px;
}

.clinic-dentist .entity h4,
.clinic-dentist .entity h3 {
    /* font-family: book-one; */
    font-family: norm;
}

.clinic-dentist .entity h4 {
    font-size: 17px;
    color: #73b7c4;
}

.clinic-dentist .entity h3 {
    font-size: 18px;

}

.clinic-dentist .entity .innr-en {
    color: #73b7c4;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    text-decoration: none;
}

.clinic-dentist .entity .innr-en p {
    margin-bottom: 0;

}

.clinic-dentist .entity .main-p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #73b7c4;
}

.clinic-dentist .entity .btn-divs button {
    width: 200px;
    color: white;
    background-color: #73b7c4;
    padding: 3px 0;
    border-radius: 15px;
    border: none;
}

.clinic-dentist .entity .btn-divs button:nth-child(1) {
    margin-bottom: 8px;
}

.simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

.simple-pagination ul {
    margin-bottom: 0;
}

.simple-pagination li a,
.simple-pagination li span {
    color: #666;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #EEE;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
    color: #FFF;
    background-color: #73b7c4;
    border-color: #73b7c4;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
    background: #73b7c4;
}

.clinic-dentist #pagination-container {
    display: flex;
}

.clinic-dentist #pagination-container>* {
    padding: 10px;
    border: 1px solid #e0f6f7;
}

.clinic-dentist #pagination-container .active {
    background-color: #73b7c4;
    color: white;
}





#records {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.record {
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

#pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-button {
    margin: 0 10px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
}

.clinic-dentist .refresh-btn button {
    background-color: #73b7c4;
    color: white;
    width: 100%;
    padding: 5px;
    border-radius: 18px;
    border: none;
}

#pagination-demo {
    display: inline-block;
    margin-bottom: 1.75em;
}

#pagination-demo li {
    display: inline-block;
}

.clinic-dentist iframe {
    width: 100%;
    min-height: 250px;
    height: 100%;
    /* height: 100%; */
}

.clinic-dentist .col-lg-5 {
    overflow: hidden;
}

/* e consultation page */
.e-con-header .content {
    background: url(https://www.cfastresults.co.uk/assets/Img/e-consultation-desktop.webp);
    background-size: cover;

}

@media all and (max-width:767px) {
    .e-con-header .content {
        background: url(https://www.cfastresults.co.uk/assets/Img/e-consultation-mb.webp);
        height: 42vh;
    }
}

.econ-sec {
    background: url(https://www.cfastresults.co.uk/assets/Img/patient-side-bg-lines.webp);
    background-size: cover;
    padding: 20px 0;
}

.econ-sec .e-con-bg {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/e-con-bg.webp);
    background-size: cover;
    background-position: bottom;
    position: relative;
    /* box-shadow: inset 0 0 2000px rgba(255, 255, 255, .2);
    filter: blur(10px); */
}

.econ-sec .logo-div {
    /* padding: 30px 20px; */
    padding-top: 50px;
    padding-left: 74px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.econ-sec .logo-div img {
    width: 130px;
}

.econ-sec .sohrna-div img {
    width: 100%;
}

.econ-sec .innerr-wrap {
    /* padding: 20px 10px; */
    width: 80%;
    margin: auto;
    position: relative;
    border-radius: 40px;
    z-index: 1;
    overflow: hidden;
    background: url(https://www.cfastresults.co.uk/assets/Img/blur-clients.webp);
}

@media all and (max-width:991px) {
    .econ-sec .innerr-wrap {
        background: url(https://www.cfastresults.co.uk/assets/Img/blur-clients-mb.webp);
        width: 100%;
    }
}

.econ-sec .innerr-wrap::before {
    /* content: ""; */
    /* position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .5);
    filter: blur(12px);
    margin: -20px; */
    /* box-shadow: inset 0 0 420px -38px rgba(0, 0, 0, 0.8); */
    box-shadow: inset 0 0 50px 10px rgba(255, 255, 255, 0.4);
    position: absolute;
    backdrop-filter: blur(6px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.econ-sec .most-inr {
    /* backdrop-filter: blur(4px); */
    position: relative;
    padding: 67px 10px;
}

.econ-sec input,
.econ-sec textarea {
    background-color: #e0ebea;
    /* text-align: center; */
}

.econ-sec textarea {
    background-color: rgba(255, 255, 255, 0.6);
    /* backdrop-filter: blur(2px); */
}

.econ-sec input:focus {
    box-shadow: none;
}

.econ-sec textarea:focus {
    box-shadow: none;
}

.econ-sec input {
    border-radius: 10px;
    border: 1px solid #73b7c4;
}

.econ-sec .fst input {
    text-align: center;
}

.econ-sec #formFile {
    border-radius: 4px;
    background-color: #73b7c4;
    color: white;
}

.econ-sec form button {
    color: white;
    background-color: #73b7c4;
    border: none;
    padding: 6px 20px;
    border-radius: 17px;
}


/* login page  */
.login-header {
    height: 130vh;
    position: relative;
}

.login-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, .9), rgba(0, 0, 0, .7)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    background-size: cover;
    z-index: -1;


}

.login-header .col-lg-9 {
    height: 90%;
    background: url(https://www.cfastresults.co.uk/assets/Img/blur.webp);
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.login-header .col-lg-9 .inner-wrap {
    height: 100%;
}

.login-header .wrap,
.login-header .row {
    height: 100%;
}

.login-header h1 {
    font-family: med;
    margin-bottom: 3rem;
    font-size: 22px;
    color: white;
}

.login-header .btn-div {
    text-align: center;
}

.login-header .btn-div button {
    background-color: #73b7c4;
    color: white;
    border-radius: 24px;
    border: none;
    width: 200px;
    padding: 7px 0;

}

.login-header label {
    display: flex;
    justify-content: center;
    color: white;
}

.login-header .row.inner {
    height: 100%;
}

.login-header .e-con-bg {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/e-con-bg.webp);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.login-header .buttons {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
}

.login-header .buttons button {
    width: 100%;
    height: 100px;
    background-color: white;
    color: #73b7c4;
    border-radius: 0;
}

.login-header .buttons button.active {
    background-color: #73b7c4;
    color: white;
}

.login-header .buttons .user-span {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 40px;
    height: 40px;
    font-size: 33px;
    background-color: #73b7c4;
    color: white;
    border-radius: 50%;
    transition: all .3s ease-in;
}

.login-header .buttons .pencil-span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 25px;
    background-color: #73b7c4;
    color: white;
    border-radius: 4px;
    transition: all .3s ease-in;
}

.login-header .buttons button.active span {
    background-color: white;
    color: #73b7c4;
}

/* .animated {
    -webkit-animation-duration: .1s;
    animation-duration: .1s;

    -webkit-animation-delay: 500ms;
    animation-delay: 500ms;
}

.animate-out {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
} */
/* contact page dentist page  */

.contact-dt-header .content {
    height: auto;
    position: relative;
}

.contact-dt-header {
    position: relative;
    background-color: black;
}

.contact-dt-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2), rgba(0, 0, 0, .6)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    opacity: .3;
    background-size: cover;
    /* z-index: -1; */
}

.contact-dt-header h1 {
    margin: 40px 0;
}

.contact-dt-header .container-fluid.main-fluid {
    position: relative;
    padding: 30px;
    /* margin: 30px 0; */
    width: 90%;
    background: url(https://www.cfastresults.co.uk/assets/Img/blur.webp);
    background-size: cover;
    color: white;
    border-radius: 24px;
    box-shadow: inset 0 0 12px rgba(224, 246, 247, .9);
    /* backdrop-filter: blur(10px); */
}

.contact-dt-header .tel-to {
    color: white;
}

.contact-dt-header .content {
    padding-bottom: 30px;
}

.contact-dt-header h2 {
    margin-bottom: 15px;
    font-family: norm;
    color: white;
}

.contact-dt-header .btn-div button {
    background-color: #73b7c4;
    color: white;
    border: none;
    width: 200px;
    border-radius: 24px;
    padding: 7px 0;
}

.contact-dt-header iframe {
    width: 100%;
    min-height: 300px;
}

.text-area h1,
.text-area h2,
.text-area h3 {
    font-family: norm;
}

.uncont {
    padding-bottom: 25px;
}

.uncont h1,
.uncont h2,
.uncont h3,
.uncont h4,
.uncont h5,
.uncont h6 {
    font-family: norm;
}

.uncont table {
    margin: 20px 0;
}

.uncont th,
.uncont td {
    color: #6eb5d3;
}

.invalid-cap {
    display: none;
}

.refferal-f {
    color: #73b7c4;
    position: relative;

}

.refferal-f input {
    background-color: #e0f6f7;
    background-color: #e0f6f7;
}

.refferal-f .form-floating input,
.refferal-f .form-floating textarea {
    border: none;
    background-color: #e0f6f7;
    border-bottom: 2px solid #73b7c4;
}

.refferal-f .form-floating input:focus,
.refferal-f .form-floating textarea:focus {
    box-shadow: none;
}

.refferal-f .form-floating label {
    color: #73b7c4;
}

.refferal-f button {
    background-color: #73b7c4;
    color: white;
    width: 200px;
    border-radius: 24px;
    border: none;
    padding: 7px 0;

}

/* dental referral page  */
.dental-refferal-header {
    position: relative;
    background-color: black;
}

.dental-refferal-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2), rgba(0, 0, 0, .6)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    opacity: .3;
    background-size: cover;
    /* z-index: -1; */
}

/* ortho assurance page  */
.ortho-header {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/ortho-header.webp);
    background-size: cover;
}

@media all and (max-width:991px) {
    .ortho-header {
        background-image: url(https://www.cfastresults.co.uk/assets/Img/ortho-header-mb.webp);
    }
}

.ortho-header .content {
    height: 50vh;
}

.ortho-header .container-fluid.main-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ortho-header .wrap,
.ortho-header .container-fluid.main-fluid {
    height: 100%
}

.ortho-header h1 {
    color: #73b7c4;
    font-size: 40px;
}

.simple-paras-dt {
    padding: 3rem 0;
    background-color: black;
    color: #0fb7bf
}

.simple-paras-dt h2 {
    color: #0fb7bf
}

.percent-cases {
    padding: 20px 0;
    background-color: #a8dde3
}

.percent-cases h3 {
    font-family: regular;
    /* line-height: 40px; */
}

.percent-cases .email-call {
    width: fit-content;
    margin: auto;
    background-color: black;
    border-radius: 14px;
    overflow: hidden;
    font-size: 18px;
}

.percent-cases .email-call a,
.percent-cases .email-call span {
    color: #0fb7bf
}

.percent-cases .email-call .icons-here {
    position: relative;
    /* padding: 10px; */
}

.percent-cases .email-call .icons-here .f-one {
    position: relative;
}

.percent-cases .email-call .icons-here .f-one::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 74%;
    /* margin: auto; */
    height: 2px;
    background-color: #0fb7bf;
}

.percent-cases .email-call .icons-here::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 70%;
    background-color: #0fb7bf;
}

.percent-cases .email-call .icons-here a {
    padding: 10px;
}

.percent-cases .email-call .info-here span {
    padding: 10px 6px;
}

.team-here {
    padding: 20px 0;
    background-color: black;
    color: #0fb7bf;
}

.team-here a.d-block {
    margin-bottom: 15px;
    position: relative;
    text-decoration: none;
}

.team-here a.d-block .view-profile h4 {
    text-align: center;
    font-family: med;
}

.team-here a.d-block .view-profile {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all .5s ease-in;
    color: #0fb7bf;
    background: linear-gradient(to top, rgba(255, 255, 255, .3), rgba(255, 255, 255, .2));
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
    /* padding: 10px; */
}

/* .team-here a.d-block:hover {
    box-shadow: inset 0px 0px 10px #0fb7bf;
} */

.team-here a.d-block:hover img {
    filter: grayscale(0);
    /* box-shadow: inset 0px 0px 10px #0fb7bf; */
    border-color: #0fb7bf;

}

.team-here a.d-block:hover .view-profile {
    height: 100%;
    padding: 20px;
}

.team-here img {
    width: 100%;
    filter: grayscale(100%);
    border: 3px solid;
    transition: all .3s ease-in;
    border-radius: 4px;
}

.team-here h4 {
    font-family: regular;
    /* white-space: wrap; */
    /* word-wrap: break-word; */
    text-align: center;
}

.team-here p {
    text-align: center;
}

.team-popup {
    position: relative;
    background: #73b7c4;
    color: white;
    padding: 40px 20px;
    width: auto;
    max-width: 1000px;
    /* height: 70vh; */
    margin: 0 auto;
    border-radius: 20px;
}

.team-popup .row {
    align-items: center;
    justify-content: center;
}

.team-popup img {
    border-radius: 20px;
}

.team-popup .col-lg-7 {
    overflow-y: auto;
    /* scrollbar-width: 0; */
    height: 357px;
}

/* .team-popup .col-lg-8::-webkit-scrollbar-thumb {
    background-color: #333;
}

.team-popup .col-lg-8::-moz-scrollbar-thumb {
    background-color: #333;
} */
.team-popup .col-lg-7::-webkit-scrollbar {
    width: 3px;
}

.team-popup .col-lg-7::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.team-popup .col-lg-7::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.review-header.review-header-dt {
    background-image: url(https://www.cfastresults.co.uk/assets/Img/image-000.webp);
    background-size: cover;
}

.review-header.review-header-dt .content {
    background: inherit;
}

.patient-review.patient-review-dt {
    position: relative;
    background: black;
    color: #0fb7bf;
    /* z-index: 1; */
}

.patient-review.patient-review-dt .heading-div {
    background: inherit;
    position: relative;
}

.patient-review.patient-review-dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2), rgba(0, 0, 0, .6)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    opacity: .3;
    background-size: cover;
    /* z-index: -1; */
}

.patient-review.patient-review-dt .wrap {
    position: relative;
}

.case-studies.case-sdt {
    background-color: black;
    color: #0fb7bf;
}

.jst-wanted.jst-wanted-dt {
    background: #0fb7bf;
    color: white;
}

.jst-wanted.jst-wanted-dt p,
.jst-wanted.jst-wanted-dt h3 {
    color: white;
}

.jst-wanted.jst-wanted-dt .col-lg-8 {
    padding: 20px 0;
}

.cfast-fixed-dt {
    padding: 3rem 0;
    color: #0fb7bf;
}

.cfast-fixed-dt h2 {
    color: #0fb7bf;
}

/* .cfast-fixed .col-lg-6 {
    position: relative;
    padding-bottom: 56.25%;
    16:9
    padding-top: 25px;
    height: 0;
} */

.cfast-fixed-dt .col-lg-6 iframe {
    width: 100%;
    aspect-ratio: 2/1.01;
}

.contact-wala h2 {
    color: #0fb7bf;
}

.contact-wala p {
    color: #0fb7bf;
}

.contact-wala {
    position: relative;
    background: black;
}

.contact-wala::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2), rgba(0, 0, 0, .6)), url(https://www.cfastresults.co.uk/assets/Img/image-010.webp);
    opacity: .3;
    background-size: cover;
}

.contact-wala .wrap {
    position: relative;
}

.clear-benefits-dt {
    padding: 3rem 20px;
    background-color: black;
}

.clear-benefits-dt .inr-white {
    padding: 30px;
    /* background-color: white; */
}

.clear-benefits-dt .inr-white * {
    color: #0fb7bf;
}

.faq-cb.faq-cb-dt {
    background: black;
}

.benefits-system.benefits-system-dt {
    background-color: #0fb7bf;
}

.benefits-system.benefits-system-dt h2 {
    color: black;
}

.three-treaments.three-treaments-dt .img-divs:hover img {
    filter: drop-shadow(12px 12px 12px rgba(15, 183, 191, .7)) drop-shadow(-12px -12px 12px rgba(15, 183, 191, .7));
    transform: scale(1.04)
}

.three-treaments.three-treaments-dt .content {
    background-color: black;
    box-shadow: 0 0 20px rgba(15, 183, 191, .7);
}

.three-treaments.three-treaments-dt .content h3 {
    color: white;
}

.before-after1 {
    padding: 20px;
}

.before-after1 img {
    width: 100%;
}

.before-after1 .col-md-3 {
    margin-bottom: 20px;
}

/* courses page  */
.mock-teeth.contact-wala {
    padding: 25px;
    margin-top: 0;
}

.mock-teeth.contact-wala .btn-div {
    display: flex;
    justify-content: center;
}

.mock-teeth.contact-wala .btn-div button {
    position: relative;
    background-color: #0fb7bf;
    border-radius: 22px;
    /* background: inherit; */
    padding: 7px 36px;
    color: white;
    border: 1px solid #0fb7bf;
    transition: all .3s ease-in;

}

.mock-teeth.contact-wala .btn-div button:hover {
    color: white;
    background: none;
}

/* .mock-teeth.contact-wala .btn-div button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: #0fb7bf;
    transition: all .3s ease-in;
}

.mock-teeth.contact-wala .btn-div button:hover::before {
    width: 100%;
} */

.upcoming-courses .two-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.upcoming-courses .two-buttons button {
    padding: 5px 0;
    background-color: inherit;
    border-radius: 25px;
    /* border: 3px solid black; */
    border: none;
    background-color: white;
    color: black;
    transition: all .3s ease-in;
}

.upcoming-courses .two-buttons button:hover {
    background-color: black;
    color: white;
}

@media all and (max-width:990px) {
    .upcoming-courses .two-buttons::before {
        display: none;
    }

    .upcoming-courses .d-flex>div.two-buttons {
        width: 100% !important;
        display: flex;
        gap: 10px;
        flex-direction: row;
    }

    .upcoming-courses .d-flex>div.two-buttons button {
        flex-grow: 1;
        font-size: 18px;
    }
}

.contact-wala.content-middle {
    padding: 3rem 20px;
    text-align: center;
    color: #0fb7bf;
}

.contact-wala.content-middle h3,
.contact-wala.content-middle li {
    color: #0fb7bf;
}

.contact-wala.content-middle .ul-here {
    max-width: 900px;
    margin: auto;
}

.contact-wala.content-middle .ul-here li {
    text-align: left;
}

.contact-wala.content-middle a {
    color: #0fb7bf;
}

.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: #73b7c4 !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;
}

.invalid-cap {
    display: none;
    color: red;
}

/* CSS: Styles for the popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 0 10px;
}

.popup-content {
    background: #0fb7bf !important;
    border-radius: 20px;
    /*   box-shadow: 0 0 5px 5px rgba(0,0,0,0.2); */
    padding: 25px 20px;
    max-width: 500px;
    margin: auto;
    color: black;
}

.popup-content h2 {
    margin-bottom: 10px;
}

.popup-content .img-div {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.popup-content .img-div img {
    width: 175px;
}

.popup .btn-div {
    gap: 13px;
    justify-content: center;
}

#closePopup {
    /* margin-top: 10px; */
    cursor: pointer;
}

.popup button {
    background-color: black;
    color: #0fb7bf;
    border-radius: 15px;
    padding: 7px 15px;
    border: none;
}

.sm-thing {
    padding: 10px 15px;
    background-color: black;
}

.sm-thing .btn-div button {
    margin: auto;
    margin-bottom: 10px;
    width: 310px;
    align-items: center;
    border-radius: 10px;
    background-color: #73b7c4;
    /* margin-bottom: 20px; */
    color: #e0f6f7;
    border: none;
}

.sm-thing .btn-div button span {
    padding: 6px 12px;
    border-right: 1px solid white;
    font-size: 24px;
}

.sm-thing .btn-div button p {
    font-size: 20px;
    padding: 9px 6px;
}

.sm-thing .social-icons {
    gap: 20px;
    justify-content: center;
}

.sm-thing .social-icons a {
    display: block;
}

.sm-thing .container-fluid.main-fluid img {
    width: 55px;
}