/**********  All CSS **********/


/*  Common css */

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

.img-fluid,
img {
    max-width: 100%;
    height: auto;
}

body {
    color: #000;
}

:root {
    --primary: #03a3da;
    --secondary: #e3308d;
    --light: #EEF9FF;
    --dark: #091E3E;
    --white: #fff;
    --black: #000;
    --navy: #081f3e;
}

a:hover,
a:focus {
    outline: 0;
}

.bdr-line {
    position: relative;
    width: max-content;
}

.bdr-line::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -85px;
    bottom: 50%;
    background: var(--secondary);
}

.bdr-line::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -65px;
    bottom: 50%;
    background: var(--primary);
}

.bg-light-pink {
    background-color: #e3308d17;
}

.bg-light-blue {
    background-color: #03a4da31;
}

.display-inline {
    display: inline-block;
}

figure {
    margin: 0;
    padding: 0;
}

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;
    padding: 15px 10px;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

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

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

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

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-dark {
    background-color: var(--navy) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.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: var(--primary);
    transform: skew(40deg);
}

.main-navbar {
    padding: 10px 30px;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 30px 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 8px;
    text-transform: capitalize;
}

.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;
    }
}


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

.carousel-caption {
    right: 40px;
    bottom: inherit;
    left: inherit;
    top: 20px;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: right;
}

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

.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>h2 {
    text-transform: capitalize;
}

.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/banner/breadcrumb.jpg) center center no-repeat;
    background-size: cover;
}

.hero-header h1 {
    text-transform: uppercase;
    font-size: 50px;
    color: #fff;
}

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

.appointment-form {
    background: var(--primary);
}

.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 .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background: url(../img/home-img/offer-bg.png) center center no-repeat;
    background-size: cover;
}

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

.offer-btns a {
    margin: 0px 10px;
}

.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: url(../img/home-img/testimonial-bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
    padding: 60px;
}

.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: 150px;
}


/* header */

.logo {
    height: 38px;
}

.main-navbar {
    border-bottom: 10px solid var(--secondary);
}


/* home banner slider */

.home-banner-content {
    max-width: 540px;
}

.home-banner-content h5 {
    color: var(--secondary);
    margin: 0;
    font-size: 64px;
    margin-bottom: 10px;
}

.home-banner-content h1 {
    color: var(--navy);
    font-size: 43px;
    letter-spacing: -2px;
    margin: 0;
}

.home-banner-list {
    position: relative;
}

.home-banner-list::before {
    content: "";
    background-color: #00000029;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.dental-de {
    height: 100%;
}

.dental-tech>h3>span {
    color: var(--primary);
}

.dental-tech>h5 {
    color: var(--primary);
}

.dental-tech>p {
    color: var(--white);
    text-transform: uppercase;
}

.dental-app img {
    width: 179px;
    margin: auto;
    text-align: center;
}

.dental-opening>h3 {
    color: var(--navy);
}

.award-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.award-img img {
    margin: 5px 10px;
    width: 105px;
}

.price-item {
    background: #eef9ff;
}


/* footer */

.footer {
    padding: 60px 0px;
}

.team-profile a {
    background-color: var(--primary);
    padding: 5px 10px;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}


/* same day page */

.inner-data-main {
    /* margin-top: 50px; */
}

.same-day-ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.same-day-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}

.same-day-list figure {
    width: 50%;
    padding-right: 40px;
}

.same-day-list figcaption {
    width: 50%;
}

.same-day-ul .same-day-list:nth-child(even) figure {
    padding-left: 40px;
    order: 2;
    padding-right: 0;
}

.same-day-ul .same-day-list:nth-child(even) figcaption {
    order: 1;
}

.same-day-list figcaption h2 {}

.same-day-list figcaption p {
    margin-bottom: 10px;
}

.prime-scan {}

.prime-scan .content {
    /* background-color: var(--navy); */
    padding: 40px;
}

.benfit-ul li {
    margin-bottom: 10px;
    display: flex;
}

.benfit-ul li:last-child {
    margin-bottom: 0;
}

.benfit-ul li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
    line-height: 24px;
}

.benfit-ul li h5,
.benfit-ul li h6 {
    margin: 0;
}

.benfit-ul.text-white li i,
.benfit-ul.text-white li h5 {
    color: var(--white);
}

.inline-li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.inline-li>li {
    margin: 10px;
    width: calc(100% / 2 - 20px);
}

.cause-detail {
    background-color: #fff;
    padding: 20px 30px;
    height: 100%;
    transition: all 0.6s ease-in-out;
    border-radius: 15px;
}

.cause-detail:hover {
    background-color: var(--secondary);
    box-shadow: 1px 1px 9px 4px #00000014;
    transition: all 0.6s ease-in-out;
}

.cause-detail h3,
.cause-detail p {
    transition: all 0.3s ease-in-out;
    color: #000;
}

.cause-detail p:last-child {
    margin-bottom: 0;
}

.cause-detail:hover h3,
.cause-detail:hover h4,
.cause-detail:hover p {
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.treatment .cause-detail {
    box-shadow: 1px 1px 9px 4px #00000014;
    padding: 20px 35px;
}

.team-item {
    background: #eef9ff;
}

.object-cover {
    object-fit: cover;
}

.dentures-steps {
    border-radius: 5px;
    height: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 9px 4px #00000014;
    padding: 20px 25px;
}

.dentures-steps h2 {
    margin-bottom: 20px;
}

.dentures-steps h6 {
    margin-bottom: 0;
}

.prime-scan:hover .content.bg-white {
    background-color: var(--secondary) !important;
    transition: all 0.3s ease-in-out;
}

.prime-scan:hover .content.bg-white h2,
.prime-scan:hover .content.bg-white p {
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.team-details p {
    margin-bottom: 10px;
}

hr {
    margin: 7px 0;
}

.team-details p:last-child {
    margin-bottom: 0;
}

.text-justify {
    text-align: justify;
}

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