:root {
    --primary: purple;
    /*--primary: #06A3DA;*/
    --secondary: #0266bc;
    /*--secondary: #F57E57;*/
    --light: #EEF9FF;
    --dark: #091E3E;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #14cd32;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 0px 5px 4px #2f72b9;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    25%,
    50%,
    75%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-12px);
    }
}



@media screen and (max-width:600px) {
    .display-4 {
        font-size: 21px;
        font-weight: 700;
        line-height: 1.2;
    }

}


@media screen and (max-width:600px) {
    .display-3 {
        font-size: 21px;
        font-weight: 700;
        line-height: 1.2;
    }

}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.logo {
    padding: 3px 0px;
    height: 120px;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #fff;
    transform: skew(40deg);
}
.navbar {
    padding-top:4px !important;
    padding-bottom:4px !important;
}

.navbar-light .navbar-nav .nav-link {
    padding: 10px 20px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
    text-transform: uppercase;
    font-weight: 400;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

small {
    color: #000;
    font-weight: 500;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 30, 62, .85);*/
    background: rgb(0 48 120 / 54%);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 22px;
        font-weight: 600 !important;
    }
    .carousel-caption h3 {
        font-size: 18px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/logo2.png) center center no-repeat;
    background-size: contain;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/PXL_20221121_062522629.MP.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}


.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    /* position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px; */
    /* box-shadow: 0 0 15px rgba(0, 0, 0, .7); */
    /* opacity: 0;
    transition: .5s;
    z-index: -1; */
}

.team-item:hover{
    background-color: #03A9F4 !important;;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    transform: scale(1.10);
    >.team-text h5{
       color: #fff !important; 
    }
     >.team-text p{
       color: #fff !important; 
    }
}

.team-item {
    border: 1px solid grey;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: linear-gradient(rgb(0 0 0 / 85%), rgb(0 0 0 / 85%)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
    /* 
    background: url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover; */
}

.testimonial-carousel {
    background: rgb(6 163 218 / 41%);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.degree {
    color: purple;
    font-weight: 700;
    font-size: 15px;
    padding-left: 19px;
    margin-bottom: 3px;
    text-transform: uppercase;
    display:none;
}

.Header_line {
    position: absolute;
    top: 0px;
    left: 42%;
    /*background: #2196F3;*/
    background: #005f99;
    
    height: 45px;
    /*width: 70%;*/
    width: 58%;
}
.bg-purple .text-lg-start p {
    color:#fff  !important; 
}
.bg-purple .text-lg-end .bg-primary {
    background:#fff !important; 
}
.bg-purple .text-lg-end .bg-primary p {
    color:#000 !important; 
}


.Header_line p {
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0px;
    color: #fff;
    /* text-transform: uppercase; */
padding: 5px 0px;
    font-size: 24px;
    margin-left: 40px;
    font-family: 'Satisfy', cursive !important; 
    /*font-family: 'Great Vibes', cursive;*/
}

@media screen and (max-width: 567px) {
    .Header_line {
        display: none !important;
    }

    #staticBackdrop {
        display: none;
    }
    .drImg {
        margin-top: -50px !important;
        margin-left: -50px !important;
    }
}

.clinic_name2 {
    font-size: 16px;
    color: #000;
    margin-bottom: 3px;
}
.clinic_name1 {
        font-size: 20px;
    color: #00000096;
    margin-bottom: 3px;
}
.Header_line::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #fff;
    transform: skew(40deg);
}

.subtitle {
    color: #000000;
    font-size: 17px;
}

@media screen and (max-width:480px) {
    .dr_name {
        font-size: 18px !important;
    }

    .dr_degree {
        font-size: 14px !important;
    }

    .dr_apbtn {
        padding: 5px 10px !important;
    }

    .carousel-control-prev, .carousel-control-next {
        top: 75% !important;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    .degree {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
}

.progressContainer {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    /* padding: 2rem; */
    color: #000;
    background: #ffffff;
}

.progresss {
    position: relative;
    padding: 0 1rem 0 3.5rem;
    margin: 2rem 0 0;
    list-style: none;
}

.progress__item {
    position: relative;
    min-height: 75px;
    counter-increment: list;
    padding-left: 0.5rem;
}

.progress__item:before {
    content: "";
    position: absolute;
    left: -1.65rem;
    top: 45px;
    /*height: 60%;*/
    width: 1px;
    border-left: 3px solid #f00;
}
@media screen and (max-width:480px) {
    .progress__item1:before{
        height: 94% !important;
    }
    .progress__item2:before{
        height: 90% !important;
    }
    .progress__item3:before{
        height: 85% !important;
    }
    .progress__item4:before{
        height: 85% !important;
    }
    .progress__item5:before {
        height: 80% !important;
    }
}
.progress__item1:before{
    height: 89%;
}
.progress__item2:before{
    height: 83%;
}
.progress__item3:before{
    height: 73%;
}
.progress__item4:before{
    height: 77%;
}
.progress__item5:before {
    height: 68%;
}
.progress__item6:before {
    height: 100%;
}

.progress__item:after {
    content: counter(list);
    position: absolute;
    top: 10px;
    left: -2.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    color: #030303;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
    text-align: center;
    border: 3px solid #f00;
}

/* .progress__item:last-child:before {
    border: none;
} */

.progress__item.progress__item--completed {
    /* opacity: 0.6; */
    color: #000000;
}

.progress__item.progress__item--completed:after {
    content: "\2713";
    font-weight: 400;
    background: #fff;
    color: #392A60;
}

.progress__item.progress__item--active:after {
    background: #fff;
    color: #392A60;
}

.progress__title {
    padding: 0.4rem 0 0.5rem;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #045dba;
    text-transform: uppercase;
}

.progress__info {
    font-size: 16px;
}
.bg-purple{
    /*background-color:#ffbbff;*/
    /*color:#000;*/
    /*background-color: #2196F3;*/
    background-color: #005f99;
    color: #fff;
}
.justify{
    text-align:justify !important;
    list-style: none;
}
.timing p{
    margin-bottom:3px;
    font-size:20px;
}
#gallery h1{
        font-size: 35px;
}

@media (max-width:768px){
    .timing p{
    margin-bottom:0px !important;
    font-size:16px !important;
}
}

