/* ---------------------------------------------
---------------------------------------------
[Tables of CSS Content]

+ body
  - 1.0 Reboot CSS
  - 2.0 Spacing CSS
  - 3.0 Preloader CSS
  - 4.0 Heading CSS
  - 5.0 Back To Top CSS
  - 6.0 Buttons CSS
  - 7.0 Header CSS
  - 8.0 Hero CSS
  - 9.0 Testimoial CSS
  - 10.0 Dentist CSS
  - 11.0 Appointment CSS
  - 12.0 Pricing CSS
  - 13.0 Service CSS
  - 14.0 About CSS
  - 15.0 Barfiller CSS
  - 16.0 Breadcrumb CSS
  - 17.0 Blog CSS
  - 18.0 Widget CSS
  - 19.0 Footer CSS
  - 20.0 Contact CSS

  ---------------------------------------------
  [Color Codes]

  $heading: #333333; [Heading Color]
  $text: #707070; [Text Color]
  $bg-gray: #f4f4f4; [Gray Background]
  $primary: #f7cd29 [Primary Color]
  $white: #ffffff; [White Color]
  $dark: #000; [Dark Color]
  $border: #7450fe; [Border Color]
  $hover: #f7cd29 [Hover Color]
  $footer: #191c1d; [Footer Color]
  $secondary: #222222; [Secondary Color]

  ---------------------------------------------
  [Font Family]

  'Montserrat', sans-serif;
--------------------------------------------- */


/* Import Fonts & All CSS */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

/*title*/

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/*Regular*/

:root {
    --primary-color: #f7cd29;
    --secondary-color: #000000;
    --white-color: #ffffff;
    --notification-banner: black;
    --secondary-color: #000000;
    /*===  Font Family ==*/
    --font-family: 'Lato', sans-serif;
    /*=== Banner Text==*/
    --banner-text-title: 'Righteous', cursive;
    --counter-color: #1196cc;

    /*==== Default Button ====*/
    --default-button: #000000;
    --default-button-color: var(--white-color);
    /*===== Testimoial ========*/
    --testimonial-odd: var(--secondary-color);
    --testimonial-odd-color: var(--white-color);
    --testimonial-even: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    /* font-weight: 400; */
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    color: black;
    line-height: 1.4;
    /* font-weight: 600; Comment by Shrikant*/
}

a,
a:active,
a:focus,
a:hover {
    color: #333333;
    text-decoration: none;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    outline: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
}

.bg-overlay {
    position: relative;
    z-index: 1;
}

.bg-overlay::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-gradient-overlay {
    position: relative;
    z-index: 1;
}

.bg-gradient-overlay::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* background: var(--from-bg-gradient-overlay);
    background: -webkit-linear-gradient(to right, var(--from-bg-gradient-overlay), var(--to-bg-gradient-overlay));
    background: linear-gradient(to right, var(--from-bg-gradient-overlay), var(--to-bg-gradient-overlay));
    opacity: 0.85; */
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#success_fail_info {
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.mfp-iframe-holder .mfp-close {
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    text-align: center;
    right: 0;
    padding-right: 0;
    line-height: 32px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-100 {
    margin-right: 100px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-100 {
    margin-left: 100px;
}

.font-weight-600 {
    font-weight: 600;
}

.section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding-0-100 {
    padding-top: 0;
    padding-bottom: 100px;
}

.section-padding-100-0 {
    padding-top: 100px;
    padding-bottom: 0;
}

.section-padding-100-50 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.section-padding-50-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-padding-50-100 {
    padding-top: 50px;
    padding-bottom: 100px;
}

.section-padding-0-50 {
    padding-top: 0;
    padding-bottom: 50px;
}
.section-padding-0-135{
    padding-top: 0;
    padding-bottom: 135px;
}
.section-padding-50-0 {
    padding-top: 50px;
    padding-bottom: 0;
}
.section-padding-20-0{
    padding-top: 20px;
    padding-bottom: 0;
}

.fa-heart{
    color:#ea2626 !important;
}
.section-padding-100-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.height-400 {
    height: 400px;
}

.height-600 {
    height: 600px;
}

.height-700 {
    height: 700px;
}

.height-800 {
    height: 800px;
}

.height-900 {
    height: 900px;
}

.height-1000 {
    height: 1000px;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: #ffffff;
}

#preloader .preload-content {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
    z-index: 100;
}

#preloader #dento-load {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px;
    border-style: solid;
    border-color: transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: dentorotate 2400ms linear infinite;
    animation: dentorotate 2400ms linear infinite;
    z-index: 999;
}

#preloader #dento-load:before {
    content: "";
    position: absolute;
    top: 7.5px;
    left: 7.5px;
    right: 7.5px;
    bottom: 7.5px;
    border-radius: 50%;
    border: 3px;
    border-style: solid;
    border-color: transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: dentorotate 2700ms linear infinite;
    animation: dentorotate 2700ms linear infinite;
}

#preloader #dento-load:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 3px;
    border-style: solid;
    border-color: transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: dentorotate 1800ms linear infinite;
    animation: dentorotate 1800ms linear infinite;
}

@-webkit-keyframes dentorotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dentorotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}


/* .section-heading h2 {
    font-size: 36px;
    text-transform: capitalize;
    margin-bottom: 20px;
} */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-heading h2 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-heading h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.section-heading .line {
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
}

.page-heading-title {
    font-family: var(--banner-text-title);
    letter-spacing: 5px;
    font-size: 3rem;
    margin-bottom: 20px !important;
}

.sub-heading-title {
    font-family: var(--banner-text-title);
    /* letter-spacing: 5px; */
}

.section-heading.text-center .line {
    margin: 0 auto;
}

.section-heading.white h2 {
    color: #ffffff;
}

#scrollUp {
    bottom: 50px;
    font-size: 22px;
    line-height: 42px;
    right: 0;
    width: 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    height: 40px;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    border-radius: 2px 0 0 2px;
}

#scrollUp:focus,
#scrollUp:hover {
    background-color: #000;
}

.dento-btn {
    position: relative;
    z-index: 1;
    min-width: 170px;
    height: 46px;
    line-height: 43px;
    font-size: 18px;
    /* font-weight: 600; */
    display: inline-block;
    padding: 0px 6px;
    text-align: center;
    /* text-transform: uppercase; */
    color: black;
    border-radius: 7px;
    background-color: var(--primary-color);
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    border: 2px solid var(--primary-color);
}

@media only screen and (max-width: 767px) {
    .dento-btn {
        min-width: 120px;
        padding: 0 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .dento-btn {
        min-width: 170px;
        padding: 0 20px;
    }
}

.dento-btn.active,
.dento-btn:focus,
.dento-btn:hover {
    box-shadow: none;
    color: white;
}

.dento-btn.btn-2:focus,
.dento-btn.btn-2:hover {
    color: var(--primary-color);
}

.dento-btn.booking-btn {
    color: black;
    min-width: 140px;
    height: 40px;
    line-height: 35px;
    font-size: 16px;
    font-weight: 600
}

.dento-btn.booking-btn:focus,
.dento-btn.booking-btn:hover {
    color: white !important;
    line-height: 35px;
    font-size: 16px;
    font-weight: 500;
}

.header-area {
    position: relative;
    z-index: 599;
    width: 100%;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.header-area .main-header-area.sticky {
    top: 0;
    width: 100%;
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
    border-bottom: none;
    left: 0;
    z-index: 600;
}

.top-header-area {
    position: relative;
    z-index: 1;
    height: 40px;
    background-color: var(--notification-banner);
    color: white;
    width: 50%;
    right: 0%;
    left: 50%;
}

.top-header-area:before {
    background-color: black;
    left: -21px;
    content: '';
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 30px;
    transform: skew(-20deg);
}

.top-header-area .top-header-content a {
    display: inline-block;
    font-size: 12px;
    color: #707070;
}

.top-header-area .top-header-content a i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-header-area .top-header-content a:last-child {
    margin-left: 30px;
}

.mobile-cart{
    display: none !important;
}
.criteria-text{
    color:#f26b71;
}
.notify_me:hover{
    color:#f7cd29;
}
.remove-wishlist-item{
    cursor: pointer;
}
.dt-wicn{
    display: block;
}

@media only screen and (max-width: 767px) {
    .top-header-area .top-header-content a:last-child {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .top-header-area .top-header-content a span {
        display: none;
    }
}

.top-header-area .top-header-social-info a {
    color: #707070;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
}

.top-header-area .top-header-social-info a:focus,
.top-header-area .top-header-social-info a:hover {
    color: var(--primary-color);
}

.classy-nav-container {
    background-color: transparent;
}

.classy-nav-container .classy-navbar {
    height: 55px;
    padding: 4px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .classy-nav-container .classy-navbar {
        height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .classy-nav-container .classy-navbar {
        height: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .classy-nav-container .classy-navbar .nav-brand {
        max-width: 90px;
        margin-right: 15px;
    }
}

.classy-nav-container .classy-navbar .classynav ul li a {
    padding: 0 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 39px;
    /* text-transform: uppercase;*/
}
.product-category-searching .form-group{
    text-align: center;
    margin-top: 30px;
}
.all-search-btn {
    min-width: 75px;
    height: calc(1.5em + 0.75rem + 2px);
    background: #f7cd29;
    border-color: #f7cd29;
    border-radius: 0px;
    border: 1px solid #f7cd29;
}
.input-search{
    height: 38px;
    width: 375px;
}
.search-icon-btn{
    min-width: 40px;
    height: calc(1.5em + 0.75rem + 2px);
    background: #f7cd29;
    border-color: #f7cd29;
    border: 1px solid #f7cd29;
    border-radius: 0px;
}
.fa.fa-heart.fa-fav-remove.remove_to_wishlist.fa-circle-border.wishlist-icn.dt-wicn{
    background-color: #fff !important;
    color: #ea2626 !important;
}
.searchable-dropdown-block{
    position: absolute;
    transform: translate3d(0px, 38px, 0px);
    top: 0px;
    left: 0px;
    will-change: transform;
    width: 250px;
    padding: 10px;
    line-height: 30px;
}
.product_attribute .button-minus {
    /* padding-right: 20px; */
    text-align: center !important;
    padding: 0px !important;
}
.product_attribute .button-plus{
    /* padding-right: 20px; */
    text-align: center !important;
    padding: 0px !important;
}
.form-control.box-border.customselect.chosen-select.attr-section-box.product-variations-options.variation-details {
    text-align: center;
    margin-bottom: 5px !important;
    width: 67%;
    vertical-align: middle;
    padding-top: 0px;
}
.quantity-field.mobile_qty.col-sm-5.col-7.border-1-solid.readonly {
    text-align: center;
    padding: 0px 0px 0px 15px;
    /* border: 0px; */
    /* font-size: 16px; */
    max-width: 70px;
    flex: 70px;
}
.grand-total-text{
    font-weight: 600 !important;
}
.grand-total-text label{
    font-weight: 600 !important;
}
.product-category-searching input{
    border-left: none;
    border-right: none;
    border-color:  #f7cd29;
}
.product-category-searching{
    width: 65%;
    margin-top: 25px;
    text-align: center;
    display: inline-flex;
}
.classy-nav-container .classy-navbar .classynav ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li a:hover {
    color: var(--primary-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .classy-nav-container .classy-navbar .classynav ul li a {
        padding: 0 10px;
        font-size: 13px;
    }
}

.classy-nav-container .classy-navbar .classynav ul li.cn-dropdown-item ul li a {
    font-size: 12px;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .classy-nav-container .classy-navbar-toggler {
        -webkit-box-ordinal-group: 200;
        -ms-flex-order: 199;
        order: 199;
    }
}

@media only screen and (max-width: 767px) {
    .classy-nav-container .classy-navbar-toggler {
        -webkit-box-ordinal-group: 200;
        -ms-flex-order: 199;
        order: 199;
        margin-left: 15px;
    }

    .mobile-cart{
        display: block !important;
    }
    .dt-wicn{
        display: none !important;
    }
    .mob-container{
        margin-bottom: 22% !important;
    }
}

.welcome-welcome-slide {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 800px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .welcome-welcome-slide {
        height: 600px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .welcome-welcome-slide {
        height: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .welcome-welcome-slide {
        height: 600px;
    }
}

.welcome-text {
    position: relative;
    z-index: 1;
}

.welcome-text h2 {
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .welcome-text h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .welcome-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .welcome-text h2 {
        font-size: 24px;
    }
}

.welcome-text p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .welcome-text p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .welcome-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .welcome-text p {
        font-size: 16px;
    }
}

.testimonials-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-area .owl-next,
.testimonials-area .owl-prev {
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: transparent;
    top: 50%;
    left: -100px;
    margin-top: -20px;
    color: #b7b7b7;
    font-size: 50px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
}

.testimonials-area .owl-next:focus,
.testimonials-area .owl-next:hover,
.testimonials-area .owl-prev:focus,
.testimonials-area .owl-prev:hover {
    color: #ffffff;
}

.testimonials-area .owl-next {
    left: auto;
    right: -100px;
}

.testimonials-area:focus .owl-prev,
.testimonials-area:hover .owl-prev {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.testimonials-area:focus .owl-next,
.testimonials-area:hover .owl-next {
    left: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
}

.single-testimonial-slide {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .single-testimonial-slide {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.single-testimonial-slide .testimonial-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    max-width: 180px;
    width: 180px;
    margin-right: 30px;
    border-radius: 50%;
}

.single-testimonial-slide .testimonial-thumb img {
    border-radius: 50%;
}

@media only screen and (max-width: 767px) {
    .single-testimonial-slide .testimonial-thumb {
        margin-bottom: 50px;
    }
}

.single-testimonial-slide .testimonial-content {
    position: relative;
    z-index: 1;
}

.single-testimonial-slide .testimonial-content h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
    color: #ffffff;
}

.single-testimonial-slide .testimonial-content h6 {
    font-weight: 500;
    color: #ffffff;
}

.single-testimonial-slide .testimonial-content p {
    margin-bottom: 0;
    color: #ffffff;
}

.single-dentist-area-description {
    margin-top: 20px;
    text-align: justify;
}

.single-dentist-area {
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-dentist-area .dentist-content {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.single-dentist-area .dentist-content .dentist-social-info {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-dentist-area .dentist-content .dentist-social-info a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    color: var(--primary-color);
    margin: 0 7px;
}

.single-dentist-area .dentist-content .dentist-social-info a:focus,
.single-dentist-area .dentist-content .dentist-social-info a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.single-dentist-area .dentist-content .dentist-info {
    width: 100%;
    padding: 10px 15px;
    text-align: center;
}

.single-dentist-area .dentist-content .dentist-info h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0;
}

.single-dentist-area .dentist-content .dentist-info p {
    color: #ffffff;
    margin-bottom: 0;
}

.single-dentist-area:focus .dentist-content .dentist-social-info,
.single-dentist-area:hover .dentist-content .dentist-social-info {
    opacity: 1;
    visibility: visible;
}

.appointment-form {
    position: relative;
    z-index: 1;
}

.appointment-form .form-control {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: none;
    color: #ffffff;
    font-size: 12px;
    padding: 0 30px;
    font-style: italic;
}

.appointment-form .form-control:focus {
    box-shadow: none;
}

.appointment-form select {
    appearance: none;
    -moz-appearance: none;
}

.appointment-form select option {
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    color: #333333;
}

.appointment-form textarea.form-control {
    padding: 30px;
    height: 120px;
}

.dento-pricing-table-area {
    position: relative;
    z-index: 1;
}

.dento-price-table {
    position: relative;
    z-index: 1;
}

.dento-price-table table thead tr>td,
.dento-price-table table thead tr>th {
    background-color: var(--primary-color);
    color: #ffffff;
}

.dento-price-table table tr>td,
.dento-price-table table tr>th {
    padding: 15px 30px;
    border-radius: 3px;
    border: 4px solid #ffffff;
    background-color: #f4f4f4;
    font-weight: 600;
    color: #707070;
}

@media only screen and (max-width: 767px) {

    .dento-price-table table tr>td,
    .dento-price-table table tr>th {
        padding: 10px 15px;
        font-size: 12px;
    }
}

.single-service {
    position: relative;
    z-index: 1;
}

.single-service img {
    display: block;
    margin-bottom: 15px;
    max-height: 35px;
}

.single-service h6 {
    color: #ffffff;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-bottom: 0;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-service h6 {
        font-size: 13px;
    }
}

.single-service:focus h6,
.single-service:hover h6 {
    color: var(--primary-color);
}

.single-service--area {
    position: relative;
    z-index: 1;
}

.single-service--area .icon-- {
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
}

.single-service--area .icon-- img {
    position: absolute;
    max-height: 35px;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.single-service--area h5 {
    margin-bottom: 15px;
    display: block;
}

.single-service--area p {
    font-weight: 500;
}

.single-service--area:focus .icon--,
.single-service--area:hover .icon-- {
    box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.15);
}

.dento-video-area {
    background-image: url(https://dummyimage.com/540x372/000/ffffff.png);
}

.how-it-works-area {
    /* background-image: url('/public-ui/images/how-it-works/how-it-work.gif'); */
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 784px;
    margin-top: -90px;

}


.single-skills-area {
    position: relative;
    z-index: 1;
}

.single-skills-area h6 {
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-skills-area h6 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-skills-area h6 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .single-skills-area h6 {
        font-size: 14px;
    }
}

.dento-border {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 2px;
    background-color: #f4f4f4;
}

.dento-cta-area {
    position: relative;
    z-index: 1;
    /*top: -110px;*/
    margin-top: -110px;
}


/*===== Counter Block ============*/

.counter-row {
    background-color: white;
    box-shadow: 0px 0px 8px #d4d4d4;
    border: 2px solid var(--primary-color);
    border-radius: 7px;
    padding: 10px 0px;
}

.counter-count {
    font-family: var(--banner-text-title);
    color: var(--counter-color);
    text-align: center;
}

.counter-block {
    display: inline-flex;
    margin-top: 10px;
}

.counter-image,
.counter-image img {
    height: 60px;
    width: 60px;
    /* border: 1px solid; */
    align-items: flex-start;
}

.counter-description {
    width: 80%;
    align-items: flex-start;
    justify-content: start;
    text-align: left;
    padding-left: 20px;
    padding-right: 13px;
}

.counter-row .border-right-2:not(:last-child) {
    border-right: 2px solid var(--primary-color);
}

.single-cta {
    position: relative;
    z-index: 1;
}

.single-cta i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-cta i {
        font-size: 30px;
    }
}

.single-cta h2 {
    font-size: 32px;
    display: block;
    margin-bottom: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-cta h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .single-cta h2 {
        font-size: 28px;
    }
}

.single-cta h5 {
    margin-bottom: 0;
    font-size: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-cta h5 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-cta h5 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .single-cta h5 {
        font-size: 14px;
    }
}

.barfiller {
    width: 100%;
    height: 10px;
    background-color: #f4f4f4;
    border: none;
    position: relative;
    z-index: 1;
}

.barfiller .fill {
    display: block;
    position: relative;
    width: 0;
    height: 100%;
    background: #333;
    z-index: 1;
}

.barfiller .tipWrap {
    display: none;
}

.barfiller .tip {
    margin-top: -35px;
    padding: 0;
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    left: 0;
    position: absolute;
    z-index: 2;
    background: transparent;
    right: 0;
    text-align: right;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .barfiller .tip {
        font-size: 14px;
        margin-top: -30px;
    }
}

.barfiller .tip::after {
    display: none;
}

.breadcumb-area {
    position: relative;
    z-index: 1;
    height: 200px;
}

@media only screen and (max-width: 767px) {
    .breadcumb-area {
        height: 130px;
    }
}

.breadcumb-area .title {
    font-size: 40px;
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .breadcumb-area .title {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcumb-area .title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcumb-area .title {
        font-size: 24px;
    }
}

.breadcumb--con .breadcrumb {
    padding: 30px 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
}

.breadcumb--con .breadcrumb .breadcrumb-item,
.breadcumb--con .breadcrumb .breadcrumb-item>a,
.breadcumb--con .breadcrumb .breadcrumb-item.active {
    font-size: 14px;
    text-transform: capitalize;
    color: #333333;
    font-weight: 500;
}

.breadcumb--con .breadcrumb .breadcrumb-item:focus,
.breadcumb--con .breadcrumb .breadcrumb-item:hover,
.breadcumb--con .breadcrumb .breadcrumb-item>a:focus,
.breadcumb--con .breadcrumb .breadcrumb-item>a:hover,
.breadcumb--con .breadcrumb .breadcrumb-item.active:focus,
.breadcumb--con .breadcrumb .breadcrumb-item.active:hover {
    color: var(--primary-color);
}

.breadcumb--con .breadcrumb .breadcrumb-item.active {
    color: #707070;
}

.breadcumb--con .breadcrumb .breadcrumb-item.active:focus,
.breadcumb--con .breadcrumb .breadcrumb-item.active:hover {
    color: #707070;
}

.breadcumb--con .breadcrumb .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.breadcumb--con .breadcrumb .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.breadcumb--con .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: 'FontAwesome';
}

.single-blog-item {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.single-blog-item .blog-content {
    background-color: #ffffff;
    padding: 30px;
}

.single-blog-item .blog-content .post-title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.single-blog-item .blog-content .post-title:focus,
.single-blog-item .blog-content .post-title:hover {
    color: var(--primary-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-blog-item .blog-content .post-title {
        font-size: 16px;
    }
}

.single-blog-item .blog-content p {
    font-weight: 500;
}

.single-blog-item .blog-content .post-meta a {
    display: inline-block;
    color: #b7b7b7;
    margin-right: 15px;
}

.single-blog-item .blog-content .post-meta a i {
    color: var(--primary-color);
}

.single-blog-item .blog-content .post-meta a:last-child {
    margin-right: 0;
}

.single-blog-item .blog-content .post-meta a:focus,
.single-blog-item .blog-content .post-meta a:hover {
    color: var(--primary-color);
}

.single-blog-item.style-2 {
    box-shadow: none;
}

.single-blog-item.style-2 .blog-content,
.single-blog-item.style-2 .blog-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
}

@media only screen and (max-width: 767px) {

    .single-blog-item.style-2 .blog-content,
    .single-blog-item.style-2 .blog-thumbnail {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

.dento-pagination {
    position: relative;
    z-index: 1;
}

.dento-pagination .pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    padding: 0;
    line-height: 38px;
    margin: 0 5px;
    text-align: center;
    background-color: transparent;
    color: #707070;
    font-size: 16px;
}

.dento-pagination .pagination .page-item .page-link:focus,
.dento-pagination .pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.dento-pagination .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.comment_area {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding-top: 30px;
}

.comment_area .title {
    margin-bottom: 50px;
}

.comment_area .comment-content {
    position: relative;
    z-index: 1;
    background-color: #f4f4f4;
    margin-bottom: 30px;
    padding: 30px;
}

@media only screen and (max-width: 767px) {
    .comment_area .comment-content {
        margin-bottom: 20px;
        padding: 20px;
    }
}

.comment_area .comment-content .comment-author {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    width: 70px;
    max-width: 70px;
    margin-right: 20px;
    border-radius: 50%;
}

@media only screen and (max-width: 767px) {
    .comment_area .comment-content .comment-author {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
        flex: 0 0 50px;
        width: 50px;
        max-width: 50px;
        margin-right: 10px;
    }
}

.comment_area .comment-content .comment-author img {
    border-radius: 50%;
}

.comment_area .comment-content .comment-meta .post-author {
    margin-bottom: 10px;
    display: block;
    color: #333333;
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .comment_area .comment-content .comment-meta .post-author {
        font-size: 14px;
    }
}

.comment_area .comment-content .comment-meta .post-author span {
    font-size: 12px;
    color: #707070;
}

@media only screen and (max-width: 767px) {
    .comment_area .comment-content .comment-meta .post-author span {
        font-size: 10px;
    }
}

.comment_area .comment-content .comment-meta .post-author:focus,
.comment_area .comment-content .comment-meta .post-author:hover {
    color: var(--primary-color);
}

.comment_area .comment-content .comment-meta p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .comment_area .comment-content .comment-meta p {
        font-size: 12px;
    }
}

.comment_area .comment-content .comment-meta .comment-reply {
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .comment_area .comment-content .comment-meta .comment-reply {
        font-size: 12px;
    }
}

.comment_area .comment-content .comment-meta .comment-reply:focus,
.comment_area .comment-content .comment-meta .comment-reply:hover {
    color: var(--primary-color);
}

.comment_area .children {
    margin-left: 50px;
}

.comment_area .children .single_comment_area:last-of-type {
    margin-bottom: 0;
}

.single-widget-area {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.single-widget-area .widget-title {
    margin-bottom: 30px;
    font-size: 22px;
}

.search-widget form {
    width: 100%;
    position: relative;
    z-index: 1;
}

.search-widget form .form-control {
    width: 100%;
    height: 46px;
    font-size: 13px;
    padding: 0 20px;
}

.search-widget form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.search-widget form button {
    position: absolute;
    width: auto;
    height: 46px;
    top: 0;
    border: none;
    background-color: transparent;
    right: 20px;
    line-height: 46px;
    cursor: pointer;
    font-size: 16px;
    color: #707070;
}

.catagories-list {
    position: relative;
    z-index: 1;
}

.catagories-list li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #707070;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
}

@media only screen and (max-width: 767px) {
    .catagories-list li a {
        font-size: 14px;
    }
}

.catagories-list li a:focus,
.catagories-list li a:hover {
    color: var(--primary-color);
}

.catagories-list li:last-child a {
    border-bottom: none;
}

.single-news-area {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.single-news-area:last-child {
    margin-bottom: 0;
}

.single-news-area .blog-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    max-width: 90px;
    width: 90px;
}

.single-news-area .blog-content {
    margin-left: 20px;
}

.single-news-area .blog-content .post-title {
    font-size: 14px;
    color: #333333;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.single-news-area .blog-content .post-title:focus,
.single-news-area .blog-content .post-title:hover {
    color: var(--primary-color);
}

.single-news-area .blog-content .post-date {
    color: #b7b7b7;
    display: block;
    margin-bottom: 0;
    font-size: 12px;
}

.blog-details-area {
    position: relative;
    z-index: 1;
}

.blog-details-area img {
    margin-bottom: 30px;
}

.blog-details-area h2 {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .blog-details-area h2 {
        font-size: 20px;
    }
}

.blog-details-area .post-meta {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.blog-details-area .post-meta a {
    display: inline-block;
    color: #b7b7b7;
    margin-right: 15px;
}

.blog-details-area .post-meta a i {
    color: var(--primary-color);
}

.blog-details-area .post-meta a:last-child {
    margin-right: 0;
}

.blog-details-area .post-meta a:focus,
.blog-details-area .post-meta a:hover {
    color: var(--primary-color);
}

.blog-details-area p {
    margin-bottom: 30px;
    font-weight: 500;
}

.widget-title h5 {
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: capitalize;
    border-bottom: 1px solid #ffffff;
    padding: 0 0 5px;
}

.dont-miss-post-content>a {
    font-size: 16px;
    color: #ffffff;
    display: block;
    margin-top: 15px;
}

.dont-miss-post-content>span {
    font-size: 12px;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
}

.single-footer-widget {
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}

.single-footer-widget p {
    color: #ffffff;
}

.single-footer-widget .footer-contact {
    position: relative;
    z-index: 1;
}

.single-footer-widget .footer-contact p {
    margin-bottom: 5px;
    font-size: 14px;
}

.single-footer-widget .footer-contact p i {
    display: inline-block;
    margin-right: 5px;
    color: var(--primary-color);
}

.single-footer-widget .footer-contact p:last-child {
    margin-bottom: 0;
}


/**********************
* I C O N S
***********************/

@font-face {
    font-family: 'ElegantIcons';
    src: url('fonts/ElegantIcons.eot');
    src: url('fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'), url('fonts/ElegantIcons.woff') format('woff'), url('fonts/ElegantIcons.ttf') format('truetype'), url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* Use the following CSS code if you want to use data attributes for inserting your icons */


/* Use the following CSS code if you want to have a class per icon */


/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="your-class-prefix"] {
*/

.icon_search,
.icon_chat_alt,
.icon_clock_alt,
.icon_genius,
.icon_book_alt,
.icon_heart_alt,
.icon_mail,
.icon_pin,
.icon_phone,
.icon_id {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.icon_search:before {
    content: "\55";
}

.icon_chat_alt:before {
    content: "\77";
}

.icon_clock_alt:before {
    content: "\7d";
}

.icon_genius:before {
    content: "\e00a";
}

.icon_book_alt:before {
    content: "\e022";
}

.icon_heart_alt:before {
    content: "\e030";
}

.icon_mail:before {
    content: "\e076";
}

.icon_pin:before {
    content: "\e081";
}

.icon_phone:before {
    content: "\e090";
}

.icon_id:before {
    content: "\e107";
}


/*======== N E W  S T Y L E ==========*/

.welcome-section {
    background-image: url('/public-ui/images/banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/*******************************************
* C U S  T O M  C S S  B Y  S H R I K A N T
********************************************/

.banner-section .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.btn-default-size {
    color: var(--default-button-color);
    border-radius: 7px;
    background-color: var(--default-button);
    transition: all 500ms;
}

.btn-default-size:hover {
    color: var(--primary-color);
}

a.btn.btn-default-size:active,
a.btn.btn-default-size:focus {
    color: var(--default-button-color) !important;
    box-shadow: none;
}

.btn-default {
    color: var(--default-button-color);
    border-radius: 7px;
    background-color: var(--default-button);
    transition: all 500ms;
    border: 2px solid var(--default-button);
    padding: 8px 10px;
    font-size: 1.4rem;
}

.btn-default:hover {
    color: var(--primary-color);
}

a.btn.btn-default:active,
a.btn.btn-default:focus {
    color: var(--default-button-color) !important;
    box-shadow: none;
}


/****************
* Notification
****************/

.notificaion-label {
    font-size: 18px;
}


/*======= Header =========*/

.user-ions {
    padding: 8px;
    border: 2px solid black;
    border-radius: 50%;
    height: 44px;
    width: 44PX;
    text-align: CENTER;
    margin-left: 4px;
}

.user-ions i {
    font-size: 22px !important;
}

a.user-ions:hover {
    font-size: 14px !important;
    color: black
}

/* .classy-nav-container a:hover,
.classy-nav-container a:focus {
    font-size: 16px;
} */

.classy-navbar .nav-brand {
    height: 100%;
}

.header-logo {
    position: relative;
    top: -42px;
    height: 91px;
    /* transition: all .6s */
}

.scroll-logo {
    position: relative;
    top: 0px;
    height: 100px;
    transition: height .6s
}


/*
.scroll-logo{
	position: relative;
    top: -3px;
    height: 91px;
    background-color: #fffdf6;
	box-shadow: 0px 8px 8px #d4d4d4;
    padding: 5px 5px;
}
.scroll-logo:before {
	content:'';
	width: 200px;
	height: 100px;
	background: red;
	border-radius: 100px / 50px;
}
*/

.classy-menu {
    margin-left: auto !important;
}

.dento-btn.booking-btn {
    margin: 0px 5px;
}

.navbar-buttons {
    display: flex;
    align-items: center;
}

.sticky-whatsapp-container a {
    right: 2%;
    bottom: 7%;
    cursor: pointer;
    margin: 0 20px;
    display: flex;
    z-index: 10;
    overflow: hidden;
    position: fixed;
    box-shadow: 0px 5px 12px #00000029;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

.sticky-whatsapp-container svg {
    fill: #fff;
    width: 50px;
    height: 50px;
    padding: 12px;
    background-color: #26D044;
}

.h-575 {
    height: 575px;
}

.btn-free-video-consultation {
    color: #ffffff !important;
    border-radius: 2px;
    background-color: var(--primary-color);
    font-weight: 600;
    min-width: 140px;
    /* height: 40px; */
    /* line-height: 36px; */
    font-size: 12px;
}

.bg-gray-line {
    border: 3px solid #ecead3;
    background-color: #ecead3;
    margin: 8px 0px;
}


/**************
* BANNER
**************/

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-top: 0px;
    box-shadow: 0px 0px 3px 0px var(--secondary-color);
    border: 1px solid var(--secondary-color);
    margin: 4px 4px;
}

.carousel-indicators {
    left: unset;
    top: 0;
    flex-direction: column;
    margin-right: 40px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.carousel-content {
    position: absolute;
    bottom: 30%;
    left: 14.5%;
    z-index: 20;
}

.welcome-btn-group {
    margin-top: 28px;
}

.welcome-slides {
    height: 418px;
    overflow: hidden
}

.banner-section .banner-row {
    margin-right: 0px;
    margin-left: 0px;
}

.banner-text-title {
    font-family: var(--banner-text-title);
    /* letter-spacing: 5px; */
    letter-spacing: 3px;
    color: black;
    /* text-transform: uppercase; */
    font-size: 58px;
}

.why-us-banner-text-title {
    font-family: var(--banner-text-title);
    letter-spacing: 1px;
    color: black;
    /* text-transform: uppercase; */
    font-size: 48px;
}
.whyus .why-us-banner-text-title {
    letter-spacing: 1px;
}
.result-banner-text-title{
    width: 100%;
    font-family: var(--banner-text-title);
    letter-spacing: 3px;
    color: black;
    /* text-transform: uppercase; */
    font-size: 48px;
}
.result-banner-text-sub-title {
    width: 100%;
    font-size: 24px;
}

.banner-text-sub-title {
    font-size: 42px;
    /* text-transform: capitalize !important; */
}

.why-us-banner-text-sub-title {
    font-size: 24px;
}

.txt-red {
    color: var(--red);
}

.banner-image {
    clip-path: ellipse(97% 97% at center top);
}

.btn-free-video-consultion {
    font-size: 22px;
    padding: 0px 10px;
}

.btn-upload-selfie {
    font-size: 22px;
}



/**********************
* Testimonial Section
***********************/

.carousel-testimonial .card-header {
    padding: 0;
    border-bottom: 0px;
}
.testimonial-listing .card-header {
    /* padding: 0; */
    border-bottom: 0px;
}

.testimonial-description p:first-child {
    margin-bottom: 0px;
}

.testimonial-description .read-more-link {
    text-align: right;
    float: right;
    font-size: 15px;
}

.testimonial-card-body.bg-even .read-more-link {
    color: var(--primary-color);
}

.testimonial-card-body.bg-odd .read-more-link {
    color: var(--black);
}

.read-more-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.testimonial-description {
    min-height: 175px;
    overflow: hidden;
    padding-top: 5px;
    padding: 10px 10px;
    text-align: justify;
    border-bottom: 1px solid;
}

.testimonial-card-body {
    padding: 0px 10px;
}

.testimonial-card-body.bg-even {
    background-color: var(--testimonial-odd);
    color: var(--testimonial-odd-color);
}

.testimonial-card-body.bg-odd {
    background-color: var(--testimonial-even);
}

.patient-name {
    text-align: left;
    /*font-weight:600;*/
    font-size: 21px;
    padding: 5px 0px 10px 0px;
}

.border3 {
    border: 3px solid var(--primary-color);
}


/*==Testimonial Card ==*/

.carousel-testimonial .card {
    margin: 0px 15px;
}

.testimonial-card-image {
    filter: grayscale(1);
    height: 260px;
    width: 100%;
    transition: filter ease-in 300ms;
}

.testimonial-card-image:hover {
    filter: grayscale(0);
}

.carousel-testimonial.card-body {
    background: #fff;
    width: 100%;
    vertical-align: top;
}

.carousel-testimonial .slick-dots li button:before {
    content: '\2012';
    font-size: 32px;
    color: var(--primary-color);
    opacity: 1;
}

.carousel-testimonial .slick-dots li.slick-active button:before {
    content: '\220E';
    font-size: 24px;
    color: var(--primary-color);
}


/*==End of Testimonial Card ==*/

.testimonial-section {
    padding-bottom: 0;
    margin-bottom: 0;
    height: 175px;
}


/**********************
* Footer
***********************/

.single-footer-widget .footer-social-info a {
    color: #ffffff;
    width: 40px;
    border: 1px solid var(--primary-color);
    justify-content: center;
    display: inline-flex;
    height: 40px;
    align-items: center;
}

.footer-social-info-block {
    text-align: right
}

.footer-social-info a:hover {
    color: black;
    background-color: var(--primary-color);
}

.single-footer-widget .widget-title {
    color: #ffffff;
    margin-top: 5px;
    padding-right: 130px;
    display: block;
}

.footer-area {
    padding-top: 100px;
    background-image: url('/public-ui/images/footer.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: -80px;
}

.single-footer-widget .footer-quick-links li {
    margin-bottom: 17px;
}

.single-footer-widget .footer-quick-links li a {
    color: white;
}

.single-footer-widget .footer-quick-links li a:hover {
    color: var(--primary-color);
}

.copywrite-content {
    padding-top: 10px;
    border-top: 1px solid #cacaca;
    padding-bottom: 10px;
    background-color: white;
}

.copywrite-content span {
    color: black;
    text-align: right;
}

.copywrite-content nav ul {
    display: flex;
    flex-grow: 1;
}

.copywrite-content nav ul li a {
    color: black;
    padding: 0px 12px;
}

.copywrite-content nav ul li a:hover {
    color: var(--primary-color);
}

.copyright-column {
    text-align: right;
}

.shadow-text {
    font-size: 6rem;
    position: relative;
    color: #a4a4a4;
    text-transform: uppercase;
    font-family: 'Archivo Black', sans-serif;
    opacity: 12%;
}

.section-name {
    font-size: 3rem;
    /* position: relative; */
    margin-top: -80px;
    /* font-weight: 600; */
    /* font-family: 'Montserrat', sans-serif; */
    font-family: var(--banner-text-title);
    letter-spacing: 3px;
}

.store-section-name {
    font-size: 2rem;
    margin-top: -65px;
    font-family: var(--banner-text-title);
    letter-spacing: 3px;
}

/*********************
* Find a Doctor Modal
*********************/

.bg-default-modal {
    background-color: white;
    padding: 20px;
    margin-top: 8%;
}


/*********************
* What is Phialigner
**********************/

.what-is-phialigner-row-1 {
    margin-top: 80px;
}

.what-is-phialigner-card-image {
    height: 100px;
}

.what-is_phialigner-card {
    text-align: center;
    padding: 0% 5%;
}

.what-is_phialigner-card-title.row-2 {
    min-height: 66px;
}

.what-is_phialigner-card-title {
    font-weight: 600;
    font-size: 1.27rem;
    /* min-height: 56px;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
}

.what-is_phialigner-card-description {
    font-size: 18px;
    text-align: justify;
}

.what-is-phialigner-row-2 {
    margin-top: 20px;
}


/**************
* Smile Check
****************/

.smile-check-right-block {
    padding-left: 8%;
    padding-top: 8%;
}

.smile-check-right-block h3 {
    font-size: 34px;
}

.btn-smile-check {
    margin-top: 16px;
}

.bg-smile-check {
    background-image: url('/public-ui/images/smile-check/smile-check-banner.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 532px;
    margin-top: 20px;
    padding-top: 75px;
}

.web-smile-check-section-container {
    margin-bottom: 50px;
}


/****************
* Pricing Section
*****************/

.bg-pricing-section-overlay {
    background-color: var(--primary-color);
}

.bg-pricing-section {
    /*background-image: url(../../assets/img/pricing_img.png);*/
    background-image: url('/public-ui/images/pricing.svg');
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover;
    height: 275px;*/
    /*height: 326px;*/
    height: 470px;
}

.pricing-section {
    padding-bottom: 0;
    margin-bottom: 0;
    height: 175px;
}

.pricing-section-right-block {
    padding-left: 8%;
    margin: auto 0px;
}

.pricing-section-right-block h3.sub-title-pricing-section {
    font-size: 45px;
    color: var(--red);
}

.btn-pricing-section {
    margin-top: 16px;
}


/***************
* How It Works
****************/
.web-how-it-works .how-it-works-row {
    margin-top: 40px;
}

.web-how-it-works .box {
    margin: 97px 30px 0px 0px;
    height: 292px;
}

.web-how-it-works .yellow-box-shadow-reverse {
    box-shadow: 40px -40px var(--secondary-color);
}

.web-how-it-works .yellow-box-shadow {
    box-shadow: -40px -40px var(--secondary-color);
}

.how-it-work-block-header {
    text-align: center;
}

.how-it-work-block-header p {
    margin-bottom: -29px;
}

.how-it-work-block-body,
.how-it-work-block-body-invert {
    text-align: justify;
    padding: 20px 20px;
    padding-top: 40px;
    background-color: var(--primary-color);
    margin-top: -50px;
    min-height: 292px;
}

.how-it-work-block-body:before {
    position: absolute;
    top: 85px;
    right: 0px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid var(--primary-color);
    border-right: 0 solid var(--primary-color);
    border-bottom: 15px solid transparent;
    content: " ";
}

.how-it-work-block-body-invert:before {
    position: absolute;
    top: 85px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid var(--primary-color);
    border-right: 0 solid var(--primary-color);
    border-bottom: 15px solid transparent;
    content: " ";
    border-left-width: 0;
    border-right-width: 15px;
    left: 0;
    right: auto;
}

.how-it-work-body-paragraph {
    padding-top: 20px;
    /* padding-bottom: 20px; */
}

.how-it-work-body-title {
    font-family: var(--banner-text-title);
    font-size: 34px;
    text-align: center;
}

.how-it-work-block-body .quote {
    /* font-family: 'Special Elite'; */
    content: "\201C";
    font-size: 140px;
    font-family: 'Arabella';
    position: absolute;
}

/* .how-it-work-body-paragraph::before {
    content: "\201C";
    font-size: 140px;
    font-family: Arabella;
    color: rgb(0 0 0 / 25%);
    line-height: 0;
    vertical-align: bottom;
    margin-right: 6px;
} */

.how-it-works-button {
    width: 200px;
    margin-top: 20px;
}

.get-appointment-section {
    position: relative;
    top: -200px;
    padding-left: 44px;
}

.ellipse-center-top {
    clip-path: ellipse(125% 100% at center top);
}


/*******************************************************
*                       P A G E S
********************************************************/


/********************
* How It Works Page
********************/
.carousel-content-center {
    position: absolute;
    top: 0;
    left: 10.7%;
    z-index: 20;
    height: 515px;
    align-items: center;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
}

.text-white {
    color: var(--white-color);
}

.primary-color-bg {
    background-color: var(--primary-color);
}

.subtitle {
    font-family: var(--banner-text-title);
    font-size: 35px;
}

.default-blk-btn {
    color: var(--default-button-color);
    border-radius: 7px;
    background-color: var(--default-button);
    transition: all 500ms;
    border: 2px solid var(--default-button);
    padding: 10px 40px;
    font-size: 30px;
}

.default-blk-btn:hover {
    color: var(--primary-color);
}

.title-font{
    font-family: var(--banner-text-title);
}

.font-size16{
    font-size: 16px;
}

.font-size21 {
    font-size: 21px;
}

.font-size24 {
    font-size: 24px;
}

.font-size30 {
    font-size: 30px;
}

.font-size36 {
    font-size: 36px;
}

.font-size44 {
    font-size: 44px;
}

.font-size50 {
    font-size: 50px;
}

.font-size60 {
    font-size: 60px;
}

.text-align-center {
    text-align: center;
}

.height50 {
    height: 50%;
}

.height-145 {
    height: 145px;
}

.mt-10 {
    margin-top: 10%;
}

.mt-14 {
    margin-top: 14%;
}

.mt-18 {
    margin-top: 18%;
}

.float-right {
    float: right;
}

/*************************************************/
.yellow-banner {
    font-size: 30px;
    text-align: center;
    color: #000000;
    font-family: lato;
}

.yellow-border-bottom {
    border-bottom: 8px dotted var(--primary-color);
}

/* <!-- Web-How-It-work-setion-Begin --> */

.steps-text {
    font-size: 24px;
    color: #c4c4c4;
    font-family: Archivo Black;
    margin-bottom: 50px;
}

.steps-number {
    font-size: 67px;
    font-family: Archivo Black;
    -webkit-text-stroke: 2px white;
    -webkit-text-stroke-width: thin;
}

/* .quots {
    content: "\201C";
    font-size: 103px;
    font-family: Arabella;
} */

#a {
    quotes: " '' ";
}


.steps-box {
    height: 319px;
    width: 349px;
    background-size: cover;
}

.black-box-shadow {
    box-shadow: -40px -40px var(--secondary-color);
}


/********************
* Result Page
********************/

.section-subtitle {
    font-weight: 600;
}

.first-video-block {
    height: 300px;
    margin-top: 1rem;
}

.first-video-block .result-video {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    padding: 12px;
    bottom: 0;
    color: white;
    background-color: #0000005c;
    position: absolute;
    z-index: 1;
}


.video-thumbnail {
    height: 100%;
    width: 100%;
    /* filter: grayscale(1); */
    transition: filter ease-in 300ms;
}

.video-thumbnail:hover {
    filter: grayscale(0);
}

.other-video-block {
    height: 136px;
    margin-top: 1rem;
}

.other-video-block .result-video {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 89%;
    padding-left: 12px;
    bottom: 0;
    color: white;
    background-color: #0000005c;
    position: absolute;
    font-size: 16px;
    z-index: 1;
}

.other-video-block .result-video img {
    height: 25px;
}

.modal-video {
    width: 100%;
    height: 60vh;
}

.makeover-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary-color);
}

.makeover-box-before {
    padding-right: 2px;
}

.makeover-box-after {
    padding-left: 2px;
}

.makeover-box-before,
.makeover-box-after {
    filter: grayscale(1);
    transition: filter ease-in 300ms;
}

.makeover-box-before:hover,
.makeover-box-after:hover {
    filter: grayscale(0);
}


.makeover-box figure {
    margin-bottom: 0;
}

.makeover-box figcaption {
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px 5px;
}

.makeover-box-after+figcaption {
    margin-left: 3px;
}

.makeover-box-before+figcaption {
    margin-right: 2px;
}

.web-physmile-transformation-container {
    margin-top: 1rem;
    background-color: var(--secondary-color);
    padding: 30px 25px;
}

.transformation-box {
    border: 2px solid var(--white);
}

.transformation-box-image.before {
    margin-bottom: 10px;
}

.label-transformation-box {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-physmile-transformation .transformation-box-image {
    height: 180px;
    width: 100%;
    background-position: center;
    filter: grayscale(1);
}

.web-physmile-transformation .transformation-box-image:hover {
    filter: grayscale(0);
}

.google-review-box {
    min-height: 309px;
    padding: 50px 30px 30px 30px;
    text-align: justify;
}

/* .google-review-box::before {
    content: "\A";
    border-style: solid;
    border-width: 0px 53px 61px 29px;
    border-color: transparent var(--primary-color) transparent transparent;
    position: absolute;
    bottom: 38px;
    left: 24px;
} */
.review-by-before::before{
    content: "\A";
    border-style: solid;
    border-width: 0px 53px 61px 29px;
    border-color: transparent var(--primary-color) transparent transparent;
    position: absolute;
    bottom: 38px;
    left: 24px;
}
.review-by-before.bg-secondary-review::before {
    border-color: transparent var(--secondary-color) transparent transparent;
}
.google-review-box.bg-secondary-color::before {
    border-color: transparent var(--secondary-color) transparent transparent;
}

.google-review-box p::before {
    content: "\201C";
    font-size: 140px;
    font-family: Arabella;
    color: #dedede;
    line-height: 0;
    vertical-align: bottom;
    margin-right: 6px;
}

.review-by {
    /* margin-left: 100px; */
    margin-top: 5px;
}

.review-patient-name {
    font-size: 21px;
    font-weight: 600;
}

.google-review-label {
    color: #707070;
    font-size: 18px;
}

.google-rating-star {
    margin-top: 0px;
}

.review-star {
    height: 25px;
    width: 25px;
}

.result-footer-subtitle {
    font-size: 2.3rem;
    font-family: var(--banner-text-title);
}

.how-to-see-our-result {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.result-join-button {
    /* margin-top: 80px; Shrikant(08/28/2021): How-it-Works Page. (PPT)*/
    margin-top: 36px;
    width: 200px;
}

.bg-primary-color {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/********************
* Pricing Page
********************/
.pricing-table .card-header {
    padding: .75rem 1.25rem;
}

.pricing-table .card-body {
    padding: 1.25rem;
}

.card-header-bg1 {
    background-color: var(--primary-color);
}

.card-header-bg2 {
    background-color: var(--secondary-color);
}

.strikeout-price {
    text-decoration: line-through;
    color: #757575;
    font-size: 36px;
}

.pricing-table-shadow {
    box-shadow: 1px 0px 3px 1px #dfdfdf;
}

.pricing-table-header-image {
    height: 80px;
}

.pricing-section-name {
    margin-bottom: -5px;
}

.pricing-know-your-plan {
    font-size: 24px;
    font-weight: 600;
}

.your-phi-plan-bullets>li {
    padding-left: .5em !important;
    margin-left: 1em;
    list-style-type: disc !important;
}

/* <--Pricing-table-end--> */

/* <--Discount-banner-begin--> */

.discount-amount {
    color: var(--red);
    font-size: 72px;
    font-family: var(--banner-text-title);
}

.discount-text {
    padding-top: 130px;
}

.discount-img {
    height: 350px;
}

/* <--Discount-banner-end--> */

/* <--plans-incliue-section-begin--> */

.plan-includes-section {
    font-size: 40px;
    font-family: var(--banner-text-title);
}

/* <--plans-incliue-section-end--> */

.tag-line {
    font-size: 48px;
    font-family: var(--banner-text-title);
}

.emi-section {
    padding-top: 93px;
}

/********************
* Why Us Page
********************/

.subtitle {
    font-family: var(--banner-text-title);
}

.mob-whyus-section {
    display: none;
}

.web-whyus-section-row {
    height: 420px;
    align-items: flex-end;
}

.para {
    font-family: var(--font-family);
    font-size: 24px;
    text-align: justify;
}

.yellow-banner {
    font-size: 30px;
    text-align: center;
    color: #000000;
    font-family: var(--font-family);
}

.box {
    height: 319px;
    width: 350px;
    margin: 79px 30px 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: grayscale(1);
    transition: filter ease-in 300ms;
    border-radius: 3px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.box:hover {
    filter: grayscale(0);
}

.yellow-box-shadow {
    box-shadow: -40px -40px var(--primary-color);
}

.yellow-box-shadow-reverse {
    box-shadow: 40px -40px var(--primary-color);
}

.perks-img-box {
    text-align: center;
    margin-top: 45px;
}

.perks-subtitle {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.27rem;
}

.subtitle-mob {
    font-family: var(--banner-text-title);
    font-size: 25px;
}

.para-mob {
    font-family: var(--font-family);
    font-size: 19px;
    text-align: justify;
}

/*********************************
* Login - Registration
**********************************/
.btn-login,
.btn-register,
.btn-login-with-otp {
    background-color: black;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    width: 110px;
}

.btn-login:hover,
.btn-register:hover,
.btn-login-with-otp:hover {
    color: #f7cd29;
    text-decoration: none;
}

.btn-login-with-otp {
    /* Shrikant(09-May-22) */
    /* border-radius: 0px;
    color: #000000;
    padding: 8px 10px;
    border-radius: 7px !important;
    font-size: 18px;
    border: 1px solid #444444 !important; */
}
.login-form-signup-link{
    text-decoration: none;
    padding-left: 0;
    font-size: 18px;
    font-weight: 500;
    color:var(--primary-color);
}
button#resend-otp-btn {
    border: 1px solid black;
    font-size: 14px;
    text-align: center;
    width: 110px;
}

.captcha-box {
    border: 1px solid #cacaca;
    padding-top: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
}
.text-primary-color{
    color:var(--primary-color);
}

/*********************************
* Smile Check - Page
**********************************/
.phismile-today {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}

.phismile-image {
    border: 3px solid var(--notification-banner);
    position: relative;
    top: 65px;
}

.section-smile-check-disclaimer {
    margin-top: 150px;
}

/********************
* FAQ Page
********************/
.w-45 {
    width: 45%;
}

.faq-card {
    box-shadow: 2px 2px 3px 1px #cacaca;
}

.faq-card-header {
    text-align: center;
    padding: 30px 20px 10px 20px;
    background-color: var(--primary-color);
    min-height: 220px;
}

.faq-card-header-title {
    font-family: var(--banner-text-title);
}

.faq-card-header-sub-title {
    font-size: 22px;
}

.faq-card-body {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 9px;
    min-height: 500px;
}

.faq-card-body-item {
    border-bottom: 1px solid #cacaca;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 20px;
}

/* .doctor-faq .faq-card-body-item:last-child {
    border-bottom: none;
} */

.faq-right-icon {
    float: right;
}

/*********************
* FAQ-Doctor
**********************/
.browse-us-our-faq {
    font-size: 22px;
}

.faq-browse-container,
.faq-container {
    margin-top: 25px;
}

.faq-doc-content {
    margin-top: 72px;
    margin-left: 45px;
}

.faq-doc-content-heading {
    font-family: var(--banner-text-title);
    font-size: 22px;
}

.faq-doc-content-list {
    margin-top: 20px;
}

.faq-doc-content-list li {
    padding: 5px 0px;
}

.faq-doc-view-all {
    font-weight: 600;
}

.faq-view-all {
    margin-top: 103px;
}

/********************
* FAQ - Doctor - QA
*********************/
.faq-doctor-qa-card {
    border: 1px solid #cacaca;
}

.faq-doctor-qa-card>.card-header {
    border-radius: 0;
    margin-bottom: -1px;
    background-color: unset;
    border-bottom: 1px solid #cacaca;
}

.faq-doctor-qa-card>.card-header a {
    display: block;
    padding: 10px 10px;
    text-align: left;
    font-size: 20px;
    font-weight: 800;
}

.faq-doctor-qa-card>.card-header a:after {
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
}


.faq-doctor-qa-card >.card-header a[aria-expanded="true"]:after {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-doctor-qa-card>.card-header a[aria-expanded="false"]:after {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq-doctor-qa-card .card-body{
    padding: .75rem 2rem .75rem 3rem;
}

.faq-section-name {
    font-size: 32px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.faq-breadcrumb{
    background: unset;
}

.doctor-qa-accordion-body{
    font-family: var(--banner-text-title);
    font-weight: 300;
}
/***************
* Mobile responsive
****************/

@media (min-width: 1024px) {
    .dento-btn.booking-btn {
        min-width: 100px !important;
        margin: 0px 5px;
        padding: 0px 10px !important;
    }
}

@media (min-width: 1200px) {}

@media (max-width: 768px) {
    .top-header-area {
        height: 60px;
        position: relative;
        z-index: 1;
        height: 40px;
        background-color: var(--notification-banner);
        color: white;
        width: 100%;
        right: 0%;
        left: 0%;
    }

    .header-logo {
        top: 0;
        height: 100%;
    }

    .column-banner-teeth-aligner {
        display: none;
    }

    .column-banner-text {
        text-align: center;
    }

    .copywrite-content nav ul li a {
        padding: 0px 7px !important;
    }
}

@media screen and (max-width: 461px) {
    .dento-btn.booking-btn {
        min-width: 75px;
        margin: auto;
    }

    .copywrite-content nav ul li a {
        justify-content: space-between;
        padding: 0px 5px !important;
    }

    .copyright-column {
        text-align: center;
    }

    .web-pricing-section .bg-pricing-section {
        margin-top: 50px;
    }

    .btn-smile-check,
    .btn-pricing-section {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 430px) {}


/* Iphone 5*/

@media screen and (max-width: 321px) {
    .nav-brand.header-logo {
        height: 70px;
    }

    .top-header-area {
        height: 58px;
    }

    .dento-btn.booking-btn {
        min-width: 56px !important;
        margin: auto;
        padding: 0px !important;
    }

    .btn-upload-selfie {
        margin-top: 5px;
    }

    .copywrite-content nav ul li a {
        padding: 0px 2px !important;
    }

    .bg-pricing-section {
        margin-top: 50px;
    }

    /*****************
    * FAQ-Doctor
    ******************/
    .faq-container .box {
        width: 258px;
    }
    .page-heading-title{
        font-size: 1.8rem !important;
    }
}

.hidden {
    display: none;
}

@media (min-width:320px) and (max-width:641px) {
    .banner-text-title {
        font-size: 25px !important;
    }

    .store-banner-text-title {
        font-size: 22px !important;
    }

    .banner-text-sub-title {
        font-size: 21px !important;
    }

    .dento-btn {
        font-size: 12px !important;
        min-width: auto !important;
        height: 36px !important;
        line-height: 35px !important;
    }

    .btn-upload-selfie {
        margin-top: 0px !important;
    }

    .carousel-content {
        bottom: 40% !important;
    }

    .banner-row,
    .h-575 {
        height: 265px !important;
    }

    .h-450 {
        height: 265px !important;
    }

    .h-455 {
        height: 450px !important;
    }
    .h-475 {
        height: 265px !important;
    }

    .how-it-works-area {
        background-position: center !important;
        width: 100% !important;
        /* height: 415px !important; */
        margin-top: 0 !important;
        background-size: 100% !important;
    }

    .get-appointment-section {
        top: 0 !important;
    }

    .store-section-name {
        font-size: 1.6rem;
        margin-top: -44px;
    }

    .cat-card-image {
        height: auto !important;
    }

    #mobile_share_wishlist {
        font-size: 20px;
    }
    .page-heading-title{
        font-size: 1.8rem !important;
    }
}


@media only screen and (max-width: 823) {
    .cat-card-image {
        height: auto !important;
    }

    #mobile_share_wishlist {
        font-size: 20px !important;
    }
    .page-heading-title{
        font-size: 1.8rem !important;
    }
}

.adjust-footer {
    margin-bottom: 0px !important
}

.bestprod-card-image {
    height: 300px;
    width: 100%;
}

.best-prod-description {
    height: 120px;
    overflow: hidden;
    padding-top: 5px;
    padding: 10px 10px;
    text-align: justify;
}

.cat-card-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 10%;
}

.store-banner-text-title {
    font-family: var(--banner-text-title);
    letter-spacing: 3px;
    color: black;
}

/* Doctors Dictionary */
.directory-section-name {
    font-size: 1.8rem;
    margin-top: -60px;
    font-family: var(--banner-text-title);
    letter-spacing: 5px;
    font-weight: 600;
}

.direcgtory-name-shadow {
    font-size: 3.5rem;
}

.dictonary-search-btn {
    padding: 5px 12px;
    font-size: 16px;
}

.docdic-search-sec {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 1%;
    padding-bottom: 1%;
}

.advlink-sec {
    margin-top: 7px;
    text-decoration: underline;
}

.adv-link {
    cursor: pointer;
    font-size: 16px;
}

.search-fields {
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    font-size: 0.875rem;
}

.search-bar {
    background-color: #f7cd29;
}

.dictionary-description {
    height: 130px;
    overflow: hidden;
    padding-top: 5px;
    padding: 10px 10px;
    text-align: center;
    font-size: 16px;
}

.dictionary-card-body {
    padding: 0px 10px;
    text-align: center;
}

.dictionary-card {
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .125);
    box-shadow: 2px 2px 15px grey;
}

.book-apt {
    font-size: 16px;
}

.book-appointment-btn {
    text-align: center;
}

.dictionary-header {
    background: none;
    font-weight: 600;
}

.dictionary-description p {
    margin-bottom: 10px;
}

.book-apt {
    border-radius: 0%;
    padding: 5px 15px;
}

.grey {
    color: grey;
}

.makeover-figure{
    width: 170px;
    height: 280px;
}
.makeover-figure .makeover-box-before{
    width: 100%;
    height: 85%;
}
.makeover-figure .makeover-box-after{
    width: 100%;
    height: 85%;
}
.border-top-none {
    border-top: none;
}

.makeover-detail-box {
    background-color: black;
    color: white;
    padding: 5px 5px;
    text-align: center;
}

.sub-details {
    font-size: 14px;
}
.section-padding-0-80 {
    padding-top: 0;
    padding-bottom: 80px;
}
.transformation-detail-box{
    /* background-color: black; */
    color: white;
    padding-top: 15px;
    text-align: center;
}
.whyus-mob-blk{
    padding-left: 60px;
}
.mob-dentistsevice{
    display: none;
}
@media (max-width: 823px) {
    .testimonial-description {
        min-height: 140px;
    }
    .whyus-mob-blk .box{
        margin-left: -15px;
        margin-top: 70px;
        width: 290px;
    }
    .whyus-mob-blk .yellow-box-shadow{
        box-shadow: -40px -23px var(--primary-color);
    }
    .whyus-mob-blk .box1{
        margin-top: 40px;
    }
    .perks-img-box{
        margin-top: 20px;
    }
    .mob-dentist-top{
        margin-top: 10%;
    }
    .discount-text{
        padding-top: 20px;
    }
    .pricing-offer-section .discount-img{
        margin-left: 8%;
        height:300px;
    }
    .pricing-emi-section img{
        width: 100%;
        height: 250px;
    }
    .pricing-emi-section{
        padding-top: 25px;
    }
    .pricing-emi-section .emi-section{
        padding-top: 0px;
    }
    .classy-nav-container .classy-navbar .classynav ul li a:focus,
    .classy-nav-container .classy-navbar .classynav ul li a:hover {
        color: #232323;
    }

    .mob-menu-btn-default:focus,.mob-menu-btn-default:hover,.mob-menu-btn-default:visited{
        color: var(--default-button-color);
    }

}
@media (min-width: 768px) {
    .web-quantity{
        margin-top: 5px;
    }
}

.video-play-preview{
    background: url('/public-ui/images/playbutton.jpg');
    background-position: center;
    background-size: cover;
}
.view-cart{
    font-size: 28px !important;
    margin-left: 5px;
    margin-right: 10px;
}

.thank-you-message p i{
    font-size: 50px;
    margin-bottom: 10px;
}
.thank-you-message p{
    text-align: center;
}
.add_to_wishlist.fa-heart::before {
    content: "\f08a" !important;
    color: black;
}
.wishlist-icn{
    background:#fff !important;
}
.public-page-profile-pic{
    padding: 0px;
}
.public-page-profile-pic img{
    width: 100%;
    border-radius: 50%;
}
