@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --head-font: "Poppins", sans-serif;
    --sub-font: "Open Sans", sans-serif;
    --logo-color: #83a7ad;
    --dark-grey: #3c403f;
    --light-logo-color: #e8f3f5;
}

a {
    text-decoration: none !important;
}

.section_padding {
    padding: 60px 0;
}

.padding-LR {
    padding: 0 7% !important;
}

.d-none {
    display: none;
}

.heading {
    font-size: 30px;
    line-height: 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000;
}

.sub-text {
    font-size: 16px;
    font-family: 'Open Sans';
    line-height: 30px;
    color: var(--dark-grey);
}

.header {
    background-color: #ffffff;
    padding: 5px 0px;
}

.header .shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header h4,
.header p {
    color: #000;
    font-size: 20px;
    font-family: var(--sub-font);
    line-height: 22px;
    margin: 0px;
}

.header p a {
    color: var(--dark-grey) !important;
    font-size: 18px;
    font-family: var(--sub-font);
    line-height: 20px;
    margin: 0px;
}

.headerUpdate {
    color: #b40000;
    padding-top: 6px;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}

.header .social_logo {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0 0 10px;
    padding: 0;
}

.header .social_logo li a i,
.header .social_logo li i {
    padding: 10px 14px;
    background: var(--light-logo-color);
    border-radius: 100px;
    color: var(--dark-grey);
}

.header .logo {
    width: auto;
    height: 100%;
    padding: 14px 0px;
}

.header p a i {
    color: #83a7ad;
    margin: 10px 10px 10px 0px;
    font-size: 18px;
}

.header-right-content {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    align-items: flex-end;
}

.header-review-stars {
    cursor: pointer;
}

.header-review-stars ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.headerLink-star,
.testimonial-box ul .rating-star {
    display: flex;
    list-style: none;
}

.headerLink-text {
    margin-right: 6px;
    color: var(--dark-grey);
}

.header-right-content a {
    margin: 5px 0px;
    text-decoration: none;
}

.btn-header {
    width: 100%;
    color: rgb(255, 255, 255);
    background-color: var(--logo-color);
    font-size: 15px;
    box-shadow: rgba(51, 51, 51, 0.14) 3px 3px 20px 0px;
    border-radius: 10px;
    font-family: var(--sub-font);
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-header:hover {
    color: var(--dark-grey);
    background: rgb(255, 255, 255);
}

.header-review-stars ul li i,
.testimonial-box ul .rating-star i {
    color: orange;
    font-size: 26px;
    margin-right: 5px;
}

/* hanburger */
/* Basic reset */
.nav-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Hamburger styling */
.hamburger {
    display: none;
}

.nav {
    background-color: var(--logo-color);
}

.nav ul {
    padding: 0 5px;
    font-size: 1px;
    list-style: none outside none;
    text-align: justify;
    justify-content: space-between;
    /* display: flex; */
    margin: 0;
}

.nav ul li a {
    display: block;
    padding: 12px 0 12px;
    font-size: 16px;
    color: #fff;
    transition: opacity .4s;
    text-decoration: none;
    font-weight: 600;
}

.nav ul li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    font-family: var(--sub-font);
    font-size: 18px;
    font-weight: 500;
    padding: 0 10px;
}

.nav ul li:hover {
    background: #fff;
    color: var(--logo-color);
}

.nav ul li:hover a {
    color: var(--logo-color);
}

.nav ul ul {
    position: absolute;
    top: 100%;
    width: max-content;
    left: 0px;
    z-index: 50;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
    box-shadow: 2px 4px 20px #3333338c;
    padding: 10px;
    flex-direction: column;
    display: flex;
    border-radius: 10px;
}

.nav ul ul li a {
    color: var(--dark-grey);
    text-transform: none;
    font-family: var(--sub-font);
    font-size: 16px;
    font-weight: 400;
}

/* ul.dd-2 {
    display: block !important;
    width: 250px !important;
} */
.nav li ul {
    opacity: 0;
    visibility: hidden;
}

.nav li:hover ul {
    opacity: 1;
    visibility: visible;
}

.nav li:hover ul li a {
    color: var(--dark-grey);
}

.nav li:hover ul li:hover a {
    color: #fff;
}

.nav li:hover ul li:hover {
    background: var(--logo-color);
    border-radius: 10px;
}

.nav-fixed-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

/* bannerr css */
.banner-slider {
    width: 100%;
    height: 650px;
}

.banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.banner-video,
.banner-image {
    width: -webkit-fill-available;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    background: white;
    padding: 10px 22px;
    border-radius: 100px;
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
    font-size: 18px !important;
    color: var(--logo-color);
    font-weight: 600;
}

.slide-text {
    left: 10%;
    width: 30%;
}

.slide-text,
.slider-text {
    position: absolute;
    text-align: center;
    z-index: 5;
    bottom: 10%;
    left: 13%;
    width: 550px;
}

.slider-text {
    bottom: 25%;
    left: 5%;
}

.invisalign-slider-text {
    position: absolute;
    text-align: center;
    z-index: 5;
    bottom: 25%;
    right: 8%;
}

.invisalign-slider-text img {
    height: 130px;
    width: auto;
}

.slide-text h2,
.slider-text h2 {
    font-size: 25px;
    font-family: var(--sub-font);
    font-weight: 500;
    color: #fff;
}

.slide-text h1,
.invisalign-slider-text h1,
.slider-text h1 {
    font-size: 50px;
    font-family: var(--head-font);
    font-weight: 400;
    color: #fff;
    margin: 0 0 30px;
}

.slide-text h1 {
    margin: 0 0 0px;
}

.slide-text h1 span,
.slider-text h1 span {
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
}

.web_btn {
    color: rgb(255, 255, 255);
    background-color: var(--logo-color);
    font-size: 15px;
    border-radius: 10px;
    font-family: var(--sub-font);
    padding: 10px 20px;
    transition: 0.3s;
}

.web_btn:hover {
    color: var(--dark-grey);
    background: rgb(255, 255, 255);
}

.contact-form input.web_btn {
  color: rgb(255, 255, 255);
  background-color: var(--logo-color);
  font-size: 15px;
  border-radius: 10px;
  font-family: var(--sub-font);
  padding: 10px 20px;
  border: 2px solid transparent;
  transition: 0.3s;
}
 
.contact-form input.web_btn:hover {
  color: var(--dark-grey);
  background: rgb(255, 255, 255);
  border: 2px solid var(--logo-color);
}

.slide-text a {
    margin-top: 20px !important;
}

.slide-text p {
    color: #fff;
    margin-bottom: 20px;
}

.slide-text::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -20%;
    width: 800px;
    height: 450px;
    background-color: rgb(82 113 119);
    z-index: -1;
    border-radius: 1000px 1000px 0 0;
}

.one::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -19%;
    width: 400px;
    height: 450px;
    background-color: rgb(82 113 119);
    z-index: -1;
    border-radius: 1000px 1000px 0 0;
}

/* About Section */
.about_head {
    display: flex;
    align-items: center;
}

.about_head img {
    margin: 0 20px 0 0;
    height: 100px;
}

.about_head .head_text h3 {
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 400;
    margin: 0;
}

.about_head .head_text h1 {
    font-size: 50px;
    font-weight: 600;
    font-family: 'Poppins';
    color: var(--logo-color);
}

.text_about p {
    font-size: 16px;
    font-family: 'Open Sans';
    line-height: 30px;
    color: var(--dark-grey);
}

.sec_image {
    height: 300px;
    width: auto;
    border-radius: 50px;
}

/* Servicce section css */
.Services {
    background: #e8f3f5;
    position: relative;
}

.Services .heading {
    text-align: center;
}

.service_box {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px 15px 15px;
    position: relative;
    overflow: hidden;
    margin: 40px 0 0px;
}

.service_box:hover {
    background: #fff;
    border: 2px solid var(--logo-color);
    margin: 20px 0 20px;
    transition: .3s ease-in-out;
}

.service_box img {
    width: -webkit-fill-available;
    border-radius: 20px;
}

.service_box h1 {
    font-size: 25px;
    line-height: 35px;
    font-family: 'Poppins';
    font-weight: 500;
    text-align: center;
}

.service_box .sub-text {
    text-align: center;
    width: 90%;
    margin: 0 auto 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service_box .overlay_btn {
    display: flex;
    flex-direction: column-reverse;
    position: absolute;
    bottom: 0px;
    z-index: 9999;
    height: 100%;
    transform: translateY(555px);
    transition: .3s ease-in-out;
    padding: 20px;
    border-radius: 15px;
    justify-items: center;
    left: 25%;
}

.service_box:hover .overlay_btn {
    transform: translateY(-20px);
    display: flex;
    flex-direction: column-reverse;
}

.map a {
    border: 4px solid #fff;
    z-index: 99999;
    position: absolute;
    right: 45%;
    bottom: 10%;
    box-shadow: 0 0 10px #0000002b;
    font-size: 18px;
}

/* footer css */
.footer_links .toggle-content {
    display: block;
}

.footer_links .arrow-icon {
    display: none;
}

footer {
    /* background: #55787f; */
    background: #648d95;
    padding: 30px 0 !important;
}

footer .logo-img {
    height: 80px;
    width: auto;
}

footer .social_logo,
footer .top_strap {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .top_strap,
footer .sec_strap {
    justify-content: space-between;
}

footer .social_logo li a i {
    font-size: 25px;
    color: #ffffff;
    background: #0000003b;
    padding: 10px 12px;
    border-radius: 100px;
}

footer .social_logo li:first-child a i {
    padding: 10px 14px;
}

footer .social_logo li:hover a i {
    color: var(--logo-color);
    background: #ffffff;
}

footer hr {
    background: #ffffff38;
    border: 1px solid #ffffff38;
}

footer .footer_links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

footer .footer_links li h1 {
    font-size: 20px;
    font-family: 'Poppins';
    color: rgba(255, 255, 255, 0.432);
}

footer .footer_links li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* gap: 20px !important; */
}

footer .footer_links li ul li .sub-text {
    font-size: 15px;
    line-height: 26px;
    color: white;
    border-bottom: 2px solid transparent;
}

.sec_strap .details {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    display: grid;
}

.sec_strap .details li {
    background: #e9f3f5;
    width: fit-content;
    padding: 5px 20px 5px 10px;
    border-radius: 100px;
    height: fit-content;
}

.sec_strap .details li i {
    margin-right: 10px;
    color: var(--logo-color);
    background: white;
    padding: 7px;
    border-radius: 100px;
}

/* footer .footer_links li ul li {
    border-bottom: 2px solid transparent;
} */
footer .footer_links li ul li .sub-text:hover {
    border-bottom: 2px solid #fff;
    transition: 0.3s ease;
}

.sec_strap .details,
footer .sec_strap {
    display: flex !important;
    align-items: center;
}

footer .heading {
    color: white;
    font-size: 25px;
    padding: 0;
    margin: 0;
}

.sec_strap .details li {
    background: #0000001f !important;
    color: #fff;
}

.last_strap {
    background: var(--logo-color);
    padding: 10px 0;
    margin: 0;
}

.last_strap p {
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Contact Us page Css */

.internal_banner .banner {
    width: 100%;
    height: auto;
}

.internal_banner {
    position: relative;
    overflow: hidden !important;
}

.web_banner,
.web-logo {
    display: block;
}

.mobile_banner,
.mobile-logo {
    display: none;
}

.Inter-Banner-text {
    position: absolute;
    width: 30%;
    top: 30%;
    right: 10%;
    justify-items: center;
}

.Inter-Banner-text.emergency_care_page {
    width: 45%;
}

.Inter-Banner-text.invisalign_info {
    width: 42%;
}

.Inter-Banner-text.office_visit{
   width: 40%;
}

.Inter-Banner-text.common_treatment{
    width: 42%;
}

.Inter-Banner-text.demon_system{
    width: 52%;
}

.Inter-Banner-text.contact{
    width: 38%;
}

.Inter-Banner-text h1 {
    font-size: 35px;
    font-weight: 600;
    color: var(--logo-color);
    text-align: center;
}

.Inter-Banner-text p {
    text-align: center;
}

.contact .shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact .shape::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 5%;
    width: 600PX;
    height: 900PX;
    background-color: rgb(255 255 255 / 81%);
    /* z-index: -1; */
    border-radius: 500PX;
    ROTATE: 50DEG;
}

.Connect .align {
    display: flex;
    align-items: center;
}

.Connect .align img {
    width: 100%;
    height: auto;
}

.Connect .align .head_text {
    padding-left: 20px;
}

.Connect .details,
.sec_strap .details {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    display: grid;
}

.Connect .details li,
.sec_strap .details li {
    background: #e9f3f5;
    width: fit-content;
    padding: 5px 20px 5px 10px;
    border-radius: 100px;
    height: fit-content;
}

.Connect .details li i,
.sec_strap .details li i {
    margin-right: 10px;
    color: var(--logo-color);
    background: white;
    padding: 7px;
    border-radius: 100px;
}

.Connect .details li:last-child {
    background: none;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    margin: 30px 0 0;
}

.Connect .details li .web_btn:hover {
    border: 2px solid var(--logo-color);
    color: var(--logo-color);
}

/* form css */
.contact-form {
    padding: 20px;
    background: var(--light-logo-color);
    border-radius: 20px;
}

.contact-form p {
    margin-bottom: 24px;
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    color: #000;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--logo-color, #007bff);
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code-select {
    width: 30% !important;
}

form .row {
    --bs-gutter-x: 10px;
}

.contact-form select,
.contact-form input,
.contact-form textarea,
.phone-group input[type="tel"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    border-color: var(--logo-color, #007bff);
}

.contact-form .web_btn {
    background-color: #83a7ad;
    border: 0;
}

/* About Ortho Page */
.right_banner_text {
    left: 10%;
    right: 0;
    width: 28%;
    top: 25%;
}

.right_banner_text.for_adult_page {
    width: 40%;
    top: 6%;
}

.right_banner_text.why_choose_us {
    width: 42%;
}

.right_banner_text.self_ligating_braces {
    width: 38%;
}

.right_banner_text.retainer {
    width: 36%;
}

.right_banner_text.tads {
    top: 8%;
    width: 42%;
}

.right_banner_text.invisalign_cost {
    width: 40%;
}

.About-ortho-banner .heading {
    color: #000;
}

.statement-text {
    background: linear-gradient(90deg, var(--logo-color), #4d737b);
}

.statement-text p {
    width: 90%;
    margin: 20px auto;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.how-sec .divide,
.Duration-sec .divide,
.Early-treatment .divide,
.retainer .divide {
    align-items: center;
}

.how-sec .divide img,
.Early-treatment .divide img,
.retainer .divide img {
    width: 100%;
    height: auto;
}

.how-sec .divide .txt_area h1,
.how-sec .divide .txt_area p {
    text-align: center;
}

.how-sec .divide .txt_area h1 span,
.Early-treatment .divide .txt_area h1 span {
    color: var(--logo-color);
    text-transform: capitalize;
    font-size: 80px;
    font-weight: 600;
}

.Duration-sec,
.surgical-sec {
    background: var(--light-logo-color);
}

.Duration-sec .divide img {
    width: 100%;
    margin: 20px;
    height: auto;
    border-radius: 20px;
    border: 5px solid #fff;
}

.reverse-row {
    flex-direction: row-reverse;
}

.childer-banner .heading,
.childer-banner .sub-text {
    color: #fff;
}

.Early-treatment .divide .txt_area h1 span,
.retainer .divide .txt_area h1 span {
    color: var(--logo-color);
    text-transform: none;
    font-size: 40px;
    font-weight: 600;
}

.Early-treatment .divide .txt_area ul li p,
.retainer .divide .txt_area ul li p,
.retainer .divide ul li p {
    margin: 0;
}

.child-need .divide .txt_area ul,
.surgical-sec .divide .txt_area ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.child-need .divide .txt_area ul li,
.surgical-sec .divide .txt_area ul li {
    padding: 20px;
    background: white;
    border-radius: 20px;
}

.child-need .divide .txt_area ul li p,
.surgical-sec .divide .txt_area ul li p,
.surgical-sec .divide .txt_area p {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.child-need .divide .heading,
.Why-adult .divide .heading,
.surgical-sec .divide .heading {
    width: 80%;
    margin: 0 auto 20px;
    text-align: center;
}

.child-need .divide p,
.Why-adult .divide .last-p {
    width: 80%;
    margin: 20px auto 0px;
    text-align: center;
}

.treatment-option h1,
.advantage-option h1 {
    padding: 10px;
    background: var(--light-logo-color);
    margin: 20px 0 20px;
    text-align: center;
    border-radius: 20px;
}

.treatment-option ul,
.advantage-option ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-around;
    gap: 20px;
}

.treatment-option ul li .box img,
.Why-adult .divide img,
.Early-treatment .divide img,
.ortho-surgery .sec-align img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.treatment-option ul .box {
    height: 100% !important;
}

.treatment-option ul li .box,
.advantage-option ul li .box {
    padding: 10px;
    border: 2px solid var(--light-logo-color);
    border-radius: 15px;
    background: white;
    transition: 0.3s;
}

.treatment-option ul li .box:hover {
    background: linear-gradient(90deg, var(--logo-color), #4d737b);
    border: 2px solid linear-gradient(90deg, var(--logo-color), #4d737b);
}

.treatment-option ul li .box .sub-text,
.advantage-option ul li .box .sub-text {
    margin: 10px 0 0;
    text-align: center;
    color: #000;
    font-weight: 500;
}

.treatment-option ul li .box:hover .sub-text {
    color: #fff;
}

.difference li h3,
.Why-adult ul li h3,
.care-box .text-box h3,
.surgical-sec .divide .txt_area ul li h3,
h3 {
    font-size: 22px;
    font-family: 'Poppins';
    line-height: 35px;
    text-align: center;
}

.difference {
    margin-top: 20px !important;
}

.difference li {
    margin-top: 20px;
    transition: 0.3s ease-in;
}

.difference li:hover {
    margin-top: 0px;
    background: linear-gradient(90deg, var(--logo-color), #4d737b) !important;
}


.testimonial {
    background-image: url(../images/home-main-banner1.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    padding: 5px 0;
}

.reviews_list {
    width: 90%;
    background: white;
    padding: 40px;
    border-radius: 60px 0;
}

.testimonial-slide {
    padding-bottom: 30px !important;
}

.testimonial-slider .swiper-wrapper {
    margin-bottom: 30px;
}

.testimonial-box img {
    margin: 9px 20px;
    width: 129px;
}

.testimonial-slider .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 0px !important;
}

.testimonial-box {
    background: #fff;
    padding: 18px 20px;
    border-radius: 30px;
    border: 4px solid #83a7ad17;
    text-align: center;
    margin: 0 auto;
    height: auto;
}

.testimonial-box p {
    margin-bottom: 20px;
}

.testimonial-box h4 {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    color: var(--logo-color);
}

.testimonial-box span {
    color: #777;
    font-size: 14px;
}

.testimonial-box ul .rating-star {
    justify-content: center;
}


.braces_circleui ul li>div b {
    color: var(--logo-color);
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 5px;
}

.braces_circleui ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.braces_circleui ul li {
    list-style: none;
    width: 280px;
    height: 280px;
    border: 10px solid #dddddd;
    border-radius: 50%;
    margin: 0 -15px;
    background: #fff;
    position: relative;
    transition: 600ms all;
}

.braces_circleui ul li>div {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    transition: 600ms all;
}

.braces_circleui ul li>div span {
    color: #454445;
    font-size: 17px;
}

.braces_circleui ul li>div * {
    display: block;
}

.invisalign-worksec {
    background: #fbf9ff;
    padding: 40px 0;
}

.step_box {
    display: flex;
    border: 1px solid #dcdcdc;
    align-items: stretch;
    margin: 20px 0;
    min-height: 108px;
    position: relative;
    background: #fff;
    transition: 600ms all;
}

.step_box::before {
    content: "";
    width: 1px;
    height: 100%;
    left: 100px;
    background: #dcdcdc;
    position: absolute;
}

.step_box b {
    padding: 15px;
    width: 100px;
    text-align: center;
    font-size: 25px;
    line-height: 20px;
    transition: 600ms all;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.step_box b small {
    display: block;
    font-size: 13px;
    width: 100%;
}

.step_box p {
    margin: 0;
    padding: 15px;
    width: calc(100% - 100px);
    color: #4c4b4b;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
}

img.img-responsive {
    max-width: 100%;
    display: block;
    border-radius: 0;
}

.before-after-swiper .swiper-wrapper {
    height: auto;
    overflow: visible;
}

.beforeafte_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    margin-bottom: 30px;
    background: #fff;
}

.beforeafte_box .beforeafte_block {
    padding: 10px;
    margin: 0px -5px;
}

.beforeafte_box .beforeafte_block h4 {
    text-align: center;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.beforeafter_sec .swiper-button-next,
.beforeafter_sec .swiper-button-prev {
    display: none;
}

.beforeafter_sec .swiper-pagination {
    text-align: center;
    margin-top: 15px;
}

.beforeafter_sec .swiper-pagination-bullet {
    background: #999;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.beforeafter_sec .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
    transform: scale(1.2);
}


.before-after-swiper .owl-dots button {
    width: 10px;
    height: 10px;
    background: #8875a9;
    margin: 0 5px;
    border-radius: 10px;
    opacity: .5;
    border: 0;
    outline: none;
}

.before-after-swiper .owl-dots button.active {
    background: #554375;
    opacity: 1;
    border: 0;
}

.before-after-swiper .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.before-after-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.2) !important;
    z-index: 2;
    position: relative;
}

.before-after-swiper .swiper-fade .swiper-slide {
    transition-property: opacity !important;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


.testimonial_slider .heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0px;
}

#testimonial .testimonial-box h5 {
    text-align: left;
    color: #181818;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

#testimonial.owl-carousel .owl-item .testimonial-box {
    z-index: -22;
    opacity: 0.3;
}

#testimonial .testimonial-box {
    padding: 15px 0;
}

.testimonial-section .owl-item>div {
    cursor: pointer;
    margin: 6% 1%;
    min-height: 155px;
    padding: 7px 1px;
    z-index: -1;
    transition: margin 0.4s ease;
}

#testimonial .testimonial-box p {
    font-family: 'Open Sans', sans-serif;
    color: #212121;
    font-weight: 400;
    /* padding: 5px 3px; */
    font-size: 15px;
    line-height: 27px;
    text-align: center;
    margin-top: 12px;
}

.testimonial-section {
    margin: 20px 0px 0px;
}

#testimonial .testimonial-box h4 {
    text-transform: uppercase;
    text-align: center;
    color: #e72d2e;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.testimonial-box h2 {
    text-align: center !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin: 17px 0px 10px;
    font-size: 17px;
}

#testimonial .owl-item {
    top: 8px;
}

#testimonial .owl-item.active.center .testimonial-box {
    padding: 30px 20px 10px;
    z-index: 22;
    min-height: 250px;
    margin: 5px -70px;
    opacity: 1;
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0px 0px 5px -1px rgb(171 169 171);
    -moz-box-shadow: 0px 0px 5px -1px rgba(171, 169, 171, 1);
    box-shadow: 0px 0px 5px -1px rgb(171 169 171);
    transition: 0.3s;
    width: 100%;
    margin: auto;
}

#testimonial .owl-item img {
    display: block;
    width: 39%;
    margin: auto;
}

.testimonial_slider p {
    font-family: 'Open Sans', sans-serif;
    color: #212121;
    font-weight: 400;
    /* padding: 5px 3px; */
    font-size: 15px;
    line-height: 27px;
    text-align: center;
}

.difference li:hover h3,
.difference li:hover p {
    color: white;
}

.Why-adult ul,
.retainer .divide .txt_area ul,
.retainer .divide ul {
    list-style: none;
    padding: 0;
}

.Why-adult ul li h3 {
    text-align: left;
    margin: 0;
}

.Why-adult ul li h3 i,
.treatment-box h3 i,
.retainer .divide .txt_area ul li p i,
.retainer .divide ul li p i {
    color: var(--logo-color);
    font-size: 16px;
    margin-right: 10px;
}

.Why-adult ul li:last-child p {
    margin: 0;
}

.Why-adult .sec-align,
.ortho-surgery .sec-align {
    align-items: center;
}

.Early-treatment .divide img {
    margin-right: 20px;
}

.care-box,
.treatment-box {
    display: flex;
    gap: 20px;
    padding: 15px;
    border: 2px solid var(--light-logo-color);
    border-radius: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.care-box img {
    border-radius: 10px;
    width: auto;
    height: 100%;
}

.care-box .text-box h3 {
    text-align: left;
}

.care-box:hover {
    background: var(--light-logo-color);
}

.care-box:hover h3 {
    color: var(--logo-color);
}

.treatment-box h3 {
    min-width: 300px;
    width: 400px !important;
    max-width: 400px;
    height: 100%;
    background: var(--light-logo-color);
    padding: 20px;
    font-size: 20px;
    border-radius: 15px;
    margin: 0;
    font-family: 'Poppins';
    font-weight: 500;
    text-align: center;
}

.surgical {
    width: 54%;
    top: 20%;
}

.statement-text h1 {
    text-align: center;
    color: #fff;
}

.surgical-sec .divide .txt_area p {
    margin-bottom: 30px;
}

/* doctor info page */
.doctor_banner,
.BA-Banner {
    padding: 40px 0 0;
    background: linear-gradient(90deg, var(--logo-color), #4d737b);
}

.doctor_banner .align {
    align-items: center;
}

.doctor_banner img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0px 0px;
}

.doctor_banner .align .dr-Banner-text {
    padding-left: 40px;
}

.doctor_banner .align .dr-Banner-text .name,
.BA-Banner .align .Banner-text .name {
    font-size: 70px;
    line-height: 90px;
    color: white;
}

.doctor_banner .align .dr-Banner-text p,
.BA-Banner .align .Banner-text p {
    color: #fff;
}

.Doctor-detail .treatment-box {
    display: block;
}

.Doctor-detail .treatment-box h3 {
    max-width: none;
    min-width: none;
    width: 100% !important;
    text-align: left;
}

.Doctor-detail .treatment-box .sub-text {
    margin: 20px auto 0;
}

/* Before and after page */
.BA-Banner {
    padding: 40px;
}

.BA-Box {
    background: var(--light-logo-color);
    border-radius: 15px;
    padding: 10px 10px 0;
}

.BA-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.BA-Box .heads {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.BA-Box .heads p {
    margin: 0;
}

.BA-Banner .align .Banner-text .name,
.BA-Banner .align .Banner-text p {
    text-align: center;
}

.life-braces .last-p {
    width: 100%;
}

.life-braces-sec .c-text {
    margin-bottom: 20px !important;
}

.TOA .care-box img {
    border-radius: 10px;
    width: 200px;
    height: auto;
}

img {
    border-radius: 10px;
}

.internal_banner img {
    border-radius: 0;
}

.retainer .divide .txt_area ul li,
.retainer .divide ul li {
    padding-bottom: 8px;
}

.advantage-option p {
    text-align: center;
}

.advantage-option .last-p {
    margin-top: 20px;
}

.advantage-option ul li .box .sub-text {
    margin: 0;
}

.internal_banner .Inter-Banner-text h3 {
    font-size: 22px;
    font-style: italic;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #000;
}

/* FAQ Page */

.faq .accordion .accordion-item {
    position: relative;
    text-align: left;
    width: 100%;
    padding: 10px 20px;
    border: none;
    background: var(--light-logo-color);
    margin: 0 0 10px;
    border-radius: 10px !important;
}

.faq .accordion button {
    background: none;
    border: 0;
}

.faq .accordion button .accordion-title {
    color: #000 !important;
    font-weight: 500 !important;
}

.faq .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 14px;
    right: 20px;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.faq .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.faq .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.faq .accordion button[aria-expanded='true'] {
    color: var(--logo-color);
}

.faq .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.faq .accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.faq .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.faq .accordion .accordion-content p {
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 10px;
    margin: 10px 0 0;
}

.faq .accordion .accordion-content ul {
    list-style: none;
    padding: 0;
}

.In-BA-Box {
    margin: 0 0 10px;
}





.braces_circleui ul li>div b {
    color: var(--logo-color);
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 5px;
}

.braces_circleui ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.braces_circleui ul li {
    list-style: none;
    width: 280px;
    height: 280px;
    border: 10px solid #dddddd;
    border-radius: 50%;
    margin: 0 -15px;
    background: #fff;
    position: relative;
    transition: 600ms all;
}

.braces_circleui ul li>div {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    transition: 600ms all;
}

.braces_circleui ul li>div span {
    color: #454445;
    font-size: 17px;
}

.braces_circleui ul li>div * {
    display: block;
}

.invisalign-worksec {
    background: #fbf9ff;
    padding: 40px 0;
}

.step_box {
    display: flex;
    border: 1px solid #dcdcdc;
    align-items: stretch;
    margin: 20px 0;
    min-height: 108px;
    position: relative;
    background: #fff;
    transition: 600ms all;
}

.step_box::before {
    content: "";
    width: 1px;
    height: 100%;
    left: 100px;
    background: #dcdcdc;
    position: absolute;
}

.step_box b {
    padding: 15px;
    width: 100px;
    text-align: center;
    font-size: 25px;
    line-height: 20px;
    transition: 600ms all;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.step_box b small {
    display: block;
    font-size: 13px;
    width: 100%;
}

.step_box p {
    margin: 0;
    padding: 15px;
    width: calc(100% - 100px);
    color: #4c4b4b;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
}

img.img-responsive {
    max-width: 100%;
    display: block;
    border-radius: 0;
}

.before-after-swiper .swiper-wrapper {
    height: auto;
    overflow: visible;
}

.beforeafte_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    margin-bottom: 30px;
    background: #fff;
}

.beforeafte_box .beforeafte_block {
    padding: 10px;
    margin: 0px -5px;
}

.beforeafte_box .beforeafte_block h4 {
    text-align: center;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.beforeafter_sec .swiper-button-next,
.beforeafter_sec .swiper-button-prev {
    display: none;
}

.beforeafter_sec .swiper-pagination {
    text-align: center;
    margin-top: 15px;
}

.beforeafter_sec .swiper-pagination-bullet {
    background: #999;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.beforeafter_sec .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
    transform: scale(1.2);
}


.before-after-swiper .owl-dots button {
    width: 10px;
    height: 10px;
    background: #8875a9;
    margin: 0 5px;
    border-radius: 10px;
    opacity: .5;
    border: 0;
    outline: none;
}

.before-after-swiper .owl-dots button.active {
    background: #554375;
    opacity: 1;
    border: 0;
}

.before-after-swiper .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.before-after-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.2) !important;
    z-index: 2;
    position: relative;
}

.before-after-swiper .swiper-fade .swiper-slide {
    transition-property: opacity !important;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}