/*
Theme Name: whorthodontics Child
Theme URI: https://github.com/elementor/hello-theme/
Description: whorthodontics Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: whorthodontics-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Serif+Display&family=Vollkorn:wght@400;500;600;700;800;900&display=swap');

/*================ Var ====================*/
:root {
    --black_color: #000000;
    --cameo_color: #D8B795;
    --bermuda_color: #76323F;
    --white_color: #FFFFFF;
    --bg-color: #FFF8F1;
    --body_text_color: #222222;
    --vollkorn_font: 'Vollkorn', serif;
    --dm_sans_font: 'DM Sans', sans-serif;
    --desktop_pd_100: 100px;
    --mobile_pd_50: 50px;
    --large_device_pd_80: 80px;
}

/*============================================
= Body CSS
=============================================]*/
* {
    outline: none !important;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box !important;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    position: relative;
    z-index: 1;
    background-color: var(--white_color);
    color: var(--body_text_color);
}

p {
    /*    color: var(--body_text_color);*/
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

span {
    display: inline-block;
    vertical-align: top;
}

a {
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease 0s;
    color: var(--body_text_color);
}

a:hover {
    color: var(--cameo_color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body,
a,
p,
li {
    font-family: var(--dm_sans_font);
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--vollkorn_font);
    color: var(--body_text_color);
    display: inline-block;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

body p:not(:last-of-type) {
    margin-bottom: 12px;
}

p a,
li a {
    word-break: break-word;
    white-space: normal;
    display: inline;
}

@media only screen and (max-width: 991px) {
    body p {
        font-size: 16px;
    }
}

body .plr-0 {
    padding-left: 0;
    padding-right: 0;
}

.padding-box-left {
    padding-right: 25px;
}

.padding-box-right {
    padding-left: 25px;
}

/*.row {
    margin-left: -15px;
    margin-right: -15px;
}*/
@media only screen and (min-width: 576px) {

    body .container,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 100%;
    }
}

@media only screen and (min-width: 650px) {

    body .container,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px) {

    body .container,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 920px;
    }
}

@media only screen and (min-width: 992px) {

    body .container,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 960px;
    }
}

@media only screen and (min-width: 1200px) {

    body .container,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 1140px;
    }
}

/*@media only screen and (min-width: 1300px){
    body .container,
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 1310px;
    }
}
@media only screen and (min-width: 1400px){
    body .container,
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 1340px;
    }
}*/
@media only screen and (min-width: 1700px) {

    body .container,
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 1210px;
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .elementor-section.elementor-top-section>.elementor-container {
        padding-right: 30px;
        padding-left: 30px;
    }

    .padding-box-left {
        padding-right: 15px;
    }

    .padding-box-right {
        padding-left: 15px;
    }
}

.default-cta {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 60px;
    transition: all 0.4s;
    padding: 14px 40px;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    background: var(--bermuda_color);
    color: var(--white_color);
    border: 1px solid var(--bermuda_color);
}

.default-cta:hover {
    background: transparent;
    color: var(--bermuda_color);
}

@media only screen and (max-width: 991px) {
    .default-cta {
        font-size: 14px;
        padding: 13px 40px;
    }
}

@media only screen and (max-width: 575px) {
    .default-cta span {
        display: none;
    }

    .default-cta {
        width: 100%;
        padding: 13px;
    }
}

a:not([href]):not([tabindex]) {
    color: var(--bermuda_color);
}

a.default-cta:not([href]):not([tabindex]):focus,
a.default-cta:not([href]):not([tabindex]):hover {
    color: var(--white_color);
}

.default-heading h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.28;
    text-transform: capitalize;
}

.default-heading h3 {
    font-size: 26px;
    line-height: 1.39;
}

@media only screen and (max-width: 1199px) {
    .default-heading h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 991px) {
    .default-heading h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .default-heading h2 {
        font-size: 25px;
    }

    .default-heading h3 {
        font-size: 20px;
    }

    .padding-box-left {
        padding-right: 0px;
    }

    .padding-box-right {
        padding-left: 0px;
    }
}

.section_padding_more {
    padding: 120px 0;
}

.section_padding {
    padding: 100px 0;

}

@media only screen and (max-width: 1366px) {
    .section_padding_more {
        padding: 100px 0;
    }
}

@media only screen and (max-width: 1199px) {

    .section_padding,
    .section_padding_more {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 991px) {

    .section_padding,
    .section_padding_more {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 767px) {

    .section_padding,
    .section_padding_more {
        padding: 50px 0;
    }
}

.wi-100 {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

/*============================================
= Start Header CSS
===============================================*/
/* top-bar */
.top-bar {
    text-align: center;
    background-color: #222222;
    padding: 8px 0;
}

.top-bar-conetnt {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
    color: var(--white_color);
    text-transform: uppercase;
}

.top-bar p a {
    color: var(--white_color);
    font-weight: 700;
    text-decoration: underline !important;
}

.site-header-sec .site-header-module {
    display: flex;
}

.site-header-sec .site-header-module .site-navigation-main .site-header-navbar-navigation {
    justify-content: space-between;
    margin: 0;
}

.site-header-sec .cta_book_appointment a.btn.cta_anchor_appointment {
    background-color: #76323F;
    padding: 17px 42px;
    border-radius: 30px;
    color: #fff;
    line-height: 1 !important;
    margin-left: 32px;
}

.site-header-sec .cta_book_appointment a.btn.cta_anchor_appointment:hover {
    border-color: #76323F;
    background: transparent;
    color: #76323F;
}

.site-header-sec .cta_book_appointment a.header_cta_call_btn {
    color: #222;
    font-weight: 700;
    line-height: 1;
}

.site-header-sec .cta_book_appointment a.header_cta_call_btn:hover {
    color: #76323F;
}

.site-header-sec .site-header-img-blk a,
.site-header-sec .site-header-img-blk img.custom-logo {
    height: 100%;
    width: 100%;
}

.header-bottom .site-navigation-main .header-btn {
    align-items: center;
}

.header-bottom .site-navigation-main .header-btn a.default-cta.header-btn-info {
    margin-left: 32px;
}

@media only screen and (min-width: 768px) {
    .top-bar p {
        padding-left: 24px;
        margin-left: 24px;
        border-left: 1px solid #FFFFFF;
    }
}

@media only screen and (max-width: 767px) {
    .top-bar-conetnt {
        flex-direction: column;
    }

    .site-header-navbar-navigation .cta_book_appointment {
        display: none;
    }
}

/* top-bar */
header.site-main-header {
    background-color: var(--bg-color);
}

.header-bottom .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.header-bg {
    background-color: var(--white_color);
    box-shadow: rgb(100 100 111 / 10%) 0px 7px 29px 0px;
    transition: all 0.5s;
}

.site-branding {
    max-width: 205px;
    width: 100%;
}

.site-navigation-main .menu {
    margin-bottom: 0;
}

.site-header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-bottom {
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    position: relative;
}

.sticky {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 999;
    transition: ease-in-out 2s linear;
    background: var(--white_color);
}

.header-bottom.sticky {
    box-shadow: rgb(100 100 111 / 10%) 0 7px 29px 0;
}

.sticky .header-top.sticky-top-header {
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.sticky .header-bottom {
    box-shadow: rgb(100 100 111 / 10%) 0px 7px 29px 0px;
    background-color: var(--white_color);
    transition: all 0.5s;
}

.site-navigation-main {
    -webkit-box-flex: 0;
    -ms-flex: auto;
    flex: auto;
}

body .site-navigation {
    flex-grow: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-left: 32px;
}

body .site-navigation ul.menu li a {
    font-size: 14px;
    line-height: 1.17;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: all 0.3s;
    padding: 12px 8px;
    font-family: var(--dm_sans_font);
    color: var(--body_text_color);
}

body .site-navigation .custom-menu-class ul.menu li a {
    color: #3E3E40;
}

body .site-navigation ul.menu li.menu-item-has-children {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

body .site-navigation ul.menu li.menu-item-has-children::after {
    display: none;
}

/* submenu design */
body .site-navigation ul.menu li ul.sub-menu {
    background: var(--white_color);
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    min-width: 250px;
}

body .site-navigation ul.menu li ul.sub-menu li {
    margin: 0;
}

body .site-navigation ul.menu li ul.sub-menu li a {
    font-size: 16px;
    line-height: 1.17;
    color: #6E717C;
    font-weight: 500;
    transition: all 0.3s;
    padding: 12px 12px;
    width: 100%;
}

.header_right_inner {
    display: flex;
    align-items: center;
}

.custom-menu-class {
    margin-right: 14px;
}

.header_right_inner a.header-call-button {
    padding-right: 32px;
    font-size: 14px;
    line-height: 1.17;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: all 0.3s;
}

.header_right_inner a.header-call-button:hover {
    color: var(--bermuda_color);
}

.header-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-btn .default-cta:not(:last-child) {
    margin-right: 24px;
}

.header-top {
    background: #4E8CC7;
    padding: 16px 0;
}

.header-top p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white_color);
    text-transform: uppercase;
}

.header-top p a {
    color: var(--white_color);
    font-weight: 600;
    transition: all 0.4s;
    text-decoration: underline !important;
}

.header-top p a:hover {
    color: #204265;
}

body .site-navigation ul.menu li.menu-item-has-children i::before {
    content: "\f107" !important;
}

body .site-navigation ul.menu li.menu-item-has-children i {
    color: #6E717C;
}

body .site-navigation ul.menu>li.current-menu-item>a,
body .site-navigation ul.menu li ul.sub-menu li.current-menu-item>a {
    color: var(--black_color) !important;
    font-weight: 700 !important;
}

body .site-navigation ul.menu li.menu-item a:hover,
body .site-navigation ul.menu li.menu-item a:hover+i {
    color: var(--black_color);
}

body .site-navigation ul.menu>li.current-menu-item>i,
body .site-navigation ul.menu li ul.sub-menu>li.current-menu-item>i {
    color: var(--black_color) !important;
}

@media only screen and (min-width: 1441px) and (max-width: 1590px) {
    .header_right_inner a.header-call-button {
        font-size: 14px;
        padding-right: 15px;
    }

    .header-btn .default-cta {
        padding: 10px 10px;
    }

    body .site-navigation ul.menu li a,
    .default-cta {
        font-size: 14px;
    }

    body .site-navigation ul.menu li a {
        padding: 12px 3px;
    }
}

@media only screen and (max-width: 1440px) {
    .site-branding {
        max-width: 150px;
    }

    .header-bottom .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    body .site-navigation ul.menu li a {
        padding: 12px 3px;
    }

    body .site-navigation ul.menu li a,
    .default-cta {
        font-size: 13px;
    }

    .header_right_inner a.header-call-button {
        font-size: 13px;
    }
}

@media only screen and (min-width: 1341px) and (max-width: 1440px) {
    .header-btn .default-cta {
        padding: 10px 24px;
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1340px) {
    .header-btn .default-cta {
        padding: 10px 13px;
    }
}

@media only screen and (min-width: 1300px) {
    body .site-navigation ul.menu li ul.sub-menu li i {
        padding-right: 12px;
    }
}

@media only screen and (max-width: 1299px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar p {
        font-size: 14px;
    }

    .site-navigation-main {
        flex: inherit;
    }

    .site-main-header .col-12,
    body .site-navigation {
        position: unset;
        flex-grow: inherit;
    }

    #navbarSupportedContent {
        position: fixed;
        top: 0;
        top: 42px;
        left: 0;
        width: 100%;
        height: 0;
        display: inline-block;
        transition: height 0.3s;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    #navbarSupportedContent.menu-active {
        height: 100%;
        opacity: 1;
        visibility: visible;
    }

    .site-header-sec .site-header-module {
        display: flex;
        justify-content: space-between;
    }

    .site-navigation .menu-main-header-container>ul.menu>li>a {
        color: #6E717C;
    }

    body .site-navigation ul.menu li.menu-item-has-children>i {
        color: #6E717C !important;
    }

    #navbarSupportedContent .menu-main-header-container {
        background: var(--white_color);
        border-top: 1px solid #76323f;
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        overflow: scroll;
    }

    .site-main-header:not(.site-main-header.sticky) #navbarSupportedContent .menu-main-header-container {
        height: calc(100% - 68px) !important;
    }

    body .site-navigation ul.menu li {
        width: 100%;
    }

    .site-navigation .navbar-toggler {
        width: 40px;
        padding: 8px;
        line-height: 0;
        border: 2px solid var(--bermuda_color);
        margin: 0 0 0 15px;
    }

    .bar-icon {
        display: inline-block;
        background: var(--bermuda_color);
        height: 2px;
        width: 100%;
        line-height: 0;
        vertical-align: top;
        margin: 2px 0;
        transition: all 0.3s;
    }

    .site-navigation .navbar-toggler[aria-expanded="true"] span.icon1,
    .site-navigation .menu-active+.header_right_inner+.navbar-toggler span.icon1 {
        transform: translate(0, 6px) rotate(225deg);
    }

    .site-navigation .navbar-toggler[aria-expanded="true"] span.icon2,
    .site-navigation .menu-active+.header_right_inner+.navbar-toggler span.icon2 {
        opacity: 0;
    }

    .site-navigation .navbar-toggler[aria-expanded="true"] span.icon3,
    .site-navigation .menu-active+.header_right_inner+.navbar-toggler span.icon3 {
        transform: translate(0, -6px) rotate(-225deg);
    }

    .site-navigation .navbar-toggler[aria-expanded="false"] span.icon1,
    .site-navigation .navbar-toggler[aria-expanded="false"] span.icon3 {
        transform: translate(0, 0) rotate(0);
    }

    .site-navigation .navbar-toggler[aria-expanded="false"] span.icon2 {
        opacity: 1;
    }

    body .site-navigation ul.menu {
        margin: 0;
    }

    body .site-navigation ul.menu li {
        margin: 0;
        display: inline-block;
    }

    body .site-navigation ul.menu li.current-menu-item {
        background: #F0F1F4;
        color: #515153;
    }

    body .site-navigation ul.menu li ul.sub-menu {
        position: unset;
        width: 100%;
        box-shadow: none;
        display: none;
    }

    body .site-navigation ul.menu li.menu-item-has-children>i {
        content: '';
        position: absolute;
        right: 13px;
        top: 11px;
        transform: translateX(-50%);
        transition: all 0.3s;
    }

    body .site-navigation ul.menu li.menu-item-has-children>i.sub-menu-active {
        transform: rotate(180deg);
        right: 17px;
    }

    body .site-navigation ul.menu li ul.sub-menu li {
        padding: 0;
    }

    body .site-navigation ul.menu li ul.sub-menu li a {
        padding: 12px 30px;
        width: auto;
    }

    body .site-navigation ul.menu li {
        color: #6E717C;
        width: 100%;
    }

    body .site-navigation ul.menu li>a {
        width: auto;
        padding: 10px 15px;
        display: inline-block;
    }

    body .site-navigation ul.menu li ul.sub-menu li.current-menu-item a {
        color: #6E717C;
        width: auto;
        display: inline-block;
        background: transparent;
    }

    .toggle-menu-open {
        overflow: hidden;
    }

    .header-bottom {
        position: relative;
    }

    .header-bottom {
        padding: 10px 0;
    }

    .site-header-wrap .site-navigation .header-mrg {
        margin: 0 25px;
    }

    .custom-menu-class {
        display: none;
    }

    body .site-navigation ul.menu li a,
    body .site-navigation ul.menu li ul.sub-menu li a {
        font-size: 14px;
    }

    body .site-navigation ul.menu li ul.sub-menu ul.sub-menu {
        background: #f0f1f4;
    }
}

@media only screen and (max-width: 767px) {

    .header-btn .header-btn-info,
    .header_right_inner a.header-call-button {
        display: none;
    }

    .header-bottom .container-fluid {
        padding-right: 30px;
        padding-left: 30px;
    }

    .top-bar p {
        font-size: 12px;
    }

    /* .site-main-header:not(.site-main-header.sticky) #navbarSupportedContent .menu-main-header-container{
        height: calc(100% - 150px) !important;
    } */
}

@media only screen and (max-width: 401px) {
    /* .site-main-header:not(.site-main-header.sticky) #navbarSupportedContent .menu-main-header-container{
        height: calc(100% - 165px) !important;
    } */
}

@media only screen and (min-width: 1300px) {
    body .site-navigation ul.menu li.menu-item-has-children i {
        font-weight: 900;
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .header_hide_menu {
        display: none !important;
    }

    body .site-navigation ul.menu li:not(:last-child) {
        margin-right: 8px;
    }
}

@media only screen and (max-width: 1299px) {
    .navbar-collapse {
        flex-basis: 100% !important;
    }

    .navbar-expand-xl .navbar-toggler {
        display: block !important;
    }
}

@media only screen and (max-width: 767px) {
    .top-bar p {
        font-size: 12px;
        padding-top: 8px;
    }

    #navbarSupportedContent .menu-main-header-container {
        top: 59px !important;
    }
}

@media only screen and (min-width: 767px) and (max-width: 1299px) {
    #navbarSupportedContent .menu-main-header-container {
        top: 69px !important;
    }
}

/*============================================
= End Header CSS
===============================================*/
/*============================================
= Start Footer CSS
===============================================*/
.site-main-footer {
    background-color: #1A3743;
    position: relative;
}

/* .main-footer-bottom::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(171, 212, 210, 1) 0%, rgba(171, 212, 210, 1) 20%, rgb(38 78 94) 20%, rgb(38 78 94) 40%, rgb(38 78 94) 40%, rgba(181, 153, 124, 1) 40%, rgba(181, 153, 124, 1) 60%, rgb(38 78 94) 60%, rgb(38 78 94) 60%, rgb(38 78 94) 80%, rgba(239, 199, 175, 1) 80%, rgba(239, 199, 175, 1) 100%);
} */

.footer-content img.image {
    margin-bottom: 25px;
    width: 200px;
}

.footer-content .textwidget p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white_color);
    font-family: var(--dm_sans_font);
    padding-top: 16px;
    width: 100%;
    max-width: 425px;
    /* text-transform: capitalize; */
    margin-bottom: 0;
}

.footer-bottom-info p {
    font-size: 16px;
}

.footer-content .textwidget p:first-child {
    padding-top: 0;
}

.footer-menu h3.widget-title {
    padding-bottom: 24px;
}

.footer-menu h3.widget-title,
.footer-content .textwidget ul li,
.footer-menu ul li a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    font-family: var(--dm_sans_font);
}

.footer-content .textwidget ul li:not(:last-child),
.footer-content ul.menu li:not(:last-child) {
    padding-bottom: 16px;
}

.footer-menu ul li a:hover {
    color: var(--cameo_color);
}

.footer-content ul.menu li {
    line-height: 0;
}

.main-footer-bottom {
    background-color: #264e5e;
    padding: 16px 0;
    text-align: center;
    position: relative;
}

.footer-bottom-info p {
    color: var(--white_color);
}

.footer-bottom-info p a {
    color: var(--white_color);
}

.footer-bottom-info p a:hover {
    color: var(--cameo_color);
}

@media only screen and (max-width: 1199px) {
    .footer-content.footer-col-1 {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-content .textwidget p {
        margin: 0 auto;
    }

    .main-footer-bottom::before {
        height: 8px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 768px) {
    .footer-content {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width:767px) {

    .footer-col-2,
    .footer-col-3 {
        border-bottom: 1px solid #FFFFFF;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-content {
        text-align: center;
    }

    .main-footer-bottom::before {
        height: 6px;
    }

    .main-footer-bottom {
        padding: 22px 0;
    }

    .footer-bottom-info p {
        font-size: 14px !important;
    }
}

/*============================================
= End Footer CSS
===============================================*/
/*============================================
= Start Banner CSS
===============================================*/
.hero-banner {
    background-color: var(--bg-color);
}

.hero-banner .banner-content {
    width: 100%;
    max-width: 490px;
    margin: 0px auto 0 0;
}

.star-design {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-banner .banner-content h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-banner .banner-content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--body_text_color);
    margin-bottom: 24px;
    font-family: var(--dm_sans_font);
    text-transform: capitalize;
}

.hero-banner .banner-content .default-btn {
    margin-top: 16px;
}

/*.hero-banner .banner-content .default-btn a.default-cta {
    padding: 14px 32px;
}*/
.hero-banner .banner-content p {
    color: #454B4B;
}

.hero-banner .banner-content p a {
    font-weight: 700;
}

img.page-image,
.contact-map iframe,
.inner-img img,
.team-image:hover::before {
    width: 100%;
    border-radius: 70px;
}

@media only screen and (max-width: 1200px) {

    img.page-image,
    .contact-map iframe,
    .inner-img img,
    .team-image:hover::before {
        border-radius: 50px;
    }
}

@media only screen and (min-width: 768px) {
    .hero-banner {
        position: relative;
        min-height: 750px;
        display: flex;
        overflow: hidden;
    }

    .hero_bg_vd {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
    }

    .hero_bg_vd-sec {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero_bg_vd-sec img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero_bg_vd-sec iframe {
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        aspect-ratio: 1;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
    }

    .hero-banner .banner-content {
        z-index: 1;
        position: relative;
    }

    .hero-banner .row {
        height: 100%;
    }

    .hero-banner .banner-content h1,
    .hero-banner .banner-content h4,
    .hero-banner .banner-content .default-btn a:hover {
        color: #fff;
    }

    /* .hero-banner:before {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        background: var(--black_color);
        content: "";
        z-index: 1;
        opacity: 0.5;
    } */

    .hero_content_info {
        z-index: 2;
    }

    .hero_content_info p {
        color: var(--white_color) !important;
    }

    .hero_content_info h1.elementor-heading-title {
        color: var(--white_color) !important;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1420px) {
    .hero-banner {
        min-height: 690px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .hero-banner {
        min-height: 650px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero_bg_vd-sec iframe {
        min-width: 135%;
    }
}

@media only screen and (min-width: 1024px) {
    .full_img_wrapper .col_pad_inner {
        margin-left: 0px;
        margin-right: 0px;
    }

    .full_img_wrapper .container-fluid,
    .full_img_wrapper .col_pad_inner>* {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 1024px) {

    img.page-image,
    .contact-map iframe,
    .inner-img img,
    .team-image:hover::before {
        border-radius: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-banner .banner-content {
        max-width: 100%;
    }

    .hero-banner .banner-content h1 {
        font-size: 40px;
    }

    .hero-banner .banner-content h4 {
        font-size: 16px;
    }

    img.page-image,
    .contact-map iframe,
    .inner-img img,
    .team-image:hover::before {
        border-radius: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-banner .banner-content h1 {
        font-size: 28px;
    }

    .hero-banner .banner-content h4 {
        margin-bottom: 10px;
    }

    .default-btn a.default-cta {
        padding: 10px 30px;
    }

    .hero-banner .banner-content {
        padding: 30px 0 0;
    }

    .hero-banner {
        padding-top: 20px !important;
    }

    img.page-image,
    .contact-map iframe,
    .inner-img img,
    .team-image:hover::before {
        border-radius: 15px;
    }
}

/*============================================
= End Banner CSS
===============================================*/
/*============================================
= Start Services CSS
===============================================*/
.services-content ul {
    padding-top: 24px;
    padding-bottom: 32px;
}

.services-menu li {
    padding-left: 44px;
    position: relative;
    font-weight: 500;
    text-transform: capitalize;
}

.services-menu li:not(:last-child) {
    margin-bottom: 24px;
}

.services-menu li::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    background-image: url("/wp-content/uploads/2023/08/star-design.svg");
    width: 20px;
    height: 20px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.services-btn a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    padding: 0 2px;
}

.services-btn a::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background-color: #9FEDE8;
    z-index: -1;
    transition: all 0.3s ease 0s;
}

.services-btn a:hover::before {
    height: 50%;
}

.ul_li_services li {
    text-transform: inherit;
}

@media only screen and (max-width: 767px) {
    .services-img {
        padding-bottom: 30px;
    }

    .services-menu li:not(:last-child) {
        margin-bottom: 14px;
    }

    .services-content ul {
        padding-bottom: 24px;
    }

    .services-menu li {
        padding-left: 34px;
    }

    .services-menu li::before {
        width: 16px;
        height: 16px;
    }
}

/*============================================
= End Services CSS
===============================================*/
/*============================================
= Start Gallery CSS
===============================================*/
section.gallery-sec {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-sec::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    width: 100%;
    height: 50%;
    z-index: -1;
}

.gallery-sec .gallery-heading {
    position: relative;
}

.gallery-heading {
    text-align: center;
    padding-bottom: 50px;
}

.gallery-heading .star-design {
    justify-content: center;
    gap: 28px;
}

.gallery-image img {
    max-width: 0 auto;
    width: 100%;
}

.image-slider .slick-prev {
    left: 0;
}

.image-slider .slick-next {
    right: 0;
}

.gallery-sec .col_pad_inner {
    margin-left: 0px;
    margin-right: 0px;
}

.gallery-sec .container-fluid,
.gallery-sec .col_pad_inner>* {
    padding-left: 0;
    padding-right: 0;
}

.image-slider-inner.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1);
}

.image-slider-inner.slick-slide {
    transform: scale(0.8, 0.8);
}

.gallery-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: 99;
    bottom: 0;
}

.gallery-arrows .slick-arrow {
    padding: 0;
    border: unset;
    background-color: transparent;
    transition: all 0.3s;
}

.gallery-arrows .slick-arrow:hover,
.gallery-arrows .slick-arrow:focus {
    filter: brightness(0) saturate(100%) invert(87%) sepia(42%) saturate(413%) hue-rotate(111deg) brightness(91%) contrast(82%);
    background-color: transparent;
    border: unset;
}

@media only screen and (min-width: 1200px) {
    .image-slider-inner.slick-slide .gallery-image img {
        height: 645px !important;
        width: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 1024px) {
    .star-design .first-image {
        width: 28px;
    }

    .star-design .second-image {
        width: 45px;
    }
}

@media only screen and (max-width: 991px) {
    .gallery-heading {
        padding-bottom: 40px;
    }

    .gallery-heading .star-design {
        gap: 20px;
    }

    .star-design .first-image {
        width: 22px;
    }

    .star-design .second-image {
        width: 32px;
    }

    .gallery-arrows .slick-arrow img {
        width: 28px;
        height: 28px;
    }

    .image-slider-inner.slick-slide.slick-current.slick-active.slick-center {
        transform: scale(0.9);
    }
}

@media only screen and (max-width: 767px) {
    .gallery-heading {
        padding-bottom: 30px;
    }

    .gallery-heading .star-design {
        gap: 15px;
    }

    .star-design .first-image {
        width: 20px;
        height: 20px;
    }

    .star-design .second-image {
        width: 30px;
    }

    /*
    .gallery-arrows{
        position: unset;
    }*/
    .gallery-arrows .slick-arrow img {
        width: 24px;
        height: 24px;
    }
}

@media only screen and (max-width: 475px) {
    .gallery-image {
        margin: 0 30px;
    }

    .image-slider-inner.slick-slide {
        transform: unset;
    }

    .gallery-arrows {
        justify-content: center;
    }
}

/*============================================
= End Gallery CSS
===============================================*/
/*============ Choose CSS ============*/
.choose-sec,
.services-sec {
    background-color: var(--bg-color);
}

.choose-heading p {
    font-weight: 700;
    padding-top: 16px;
}

.services-sec.section_padding {
    padding-top: 50px;
}

/*============ Welcome CSS ============*/
.welcome-heading p {
    padding-top: 16px;
    padding-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
    /* text-transform: capitalize; */
}

@media only screen and (max-width: 767px) {
    .welcome-heading p {
        padding-bottom: 30px;
    }
}

/*============ Team CSS ============*/
.team-heading p {
    max-width: 670px;
    margin: 0 auto;
    font-weight: 500;
    padding-top: 16px;
    /*  text-transform: capitalize; */
}

.team-image {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.team-image:hover::before {
    position: absolute;
    content: "";
    background-color: rgb(3 3 3 / 63%);
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.doctor-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    visibility: hidden;
    /*    transition: all 0.5s;*/
}

.team-image:hover .doctor-info {
    visibility: visible;
    transition: all 0.5s;

}

.doctor-info h4 {
    color: var(--white_color);
}

.doctor-info p {
    color: var(--white_color);
}

@media only screen and (max-width: 767px) {
    .team-image {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .team-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 430px) {
    .team-image {
        text-align: center;
    }

    .team-image img {
        height: 400px;
        width: 100%;
        object-fit: cover;
    }
}

/*============================================
= Review Section CSS
============================================*/
.review-sec {
    background-color: var(--bg-color);
}

.review-slider {
    margin: 0 -15px;
}

.review-tab-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(81 81 83 / 20%);
    margin-top: 25px;
    position: relative;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.responsive-tabs>i {
    display: none;
}

.review-tab-navigation ul li a {
    font-size: 17px;
    line-height: 1.66;
    color: var(--body_text_color);
    font-weight: 500;
    font-family: var(--dm_sans_font);
    padding-bottom: 12px;
}

.review-tab-navigation ul li a.active {
    font-weight: 700;
    border-bottom: 2px solid var(--cameo_color);
}

.review-tab-navigation ul li:not(:last-child) {
    margin-right: 32px;
}

.review-slider {
    margin-top: 40px;
}

.review-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.review-slider-content {
    background: #FCFEFF;
    padding: 32px 28px 100px;
    margin: 0 15px;
    height: inherit;
    border-radius: 8px;
    transition: all 0.4s;
    margin-top: 28px;
}

.review-slider-content:hover {
    margin-top: 0;
    border-bottom: 5px solid var(--bermuda_color);
}

.review-slider-content h3 {
    font-size: 20px;
    color: var(--black_color);
    font-weight: 700;
    margin-bottom: 10px;
}

.review-slider .tesimonial_revire_sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.review-rating ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.review-rating ul li:not(:last-child) {
    margin-right: 8px
}

.review-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    padding: 0 15px 0 0 !important;
    /*    display: inline-block;*/
}

.review-description p:not(:last-child) {
    margin-bottom: 10px;
}

.google-review {
    position: absolute;
    bottom: 0;
    padding: 40px 0;
}

.morecontent span {
    display: none;
}

.more-text {
    display: none;
}

a.read-more {
    line-height: 1.6;
    color: var(--Teal_blue);
    font-weight: 600;
}

.review-section-content {
    position: relative;
    overflow: hidden;
}

.review-section-content .container {
    max-width: 1600px;
}

.review-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.review-prev::before {
    background-image: url(/wp-content/uploads/2023/08/chevron-left.svg);
}

.review-next::before {
    background-image: url("/wp-content/uploads/2023/08/chevron-right.svg");
}

.review-prev:hover,
.review-next:hover,
.review-prev:focus,
.review-next:focus {
    background-color: rgb(255 255 255 / 60%);
}

.review-description .more-text {
    display: none;
}

.review-description .moreless-button {
    display: inline-block;
    font-weight: 600;
    color: #676769;
}

.read_more_txt p {
    color: #515b5b;
    margin-bottom: 20px;
}

.review-section-content .review-description .scrollbar-active {
    max-height: 120px !important;
}

.review-description .read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--black_color);
}

.review-slider-tab .review-description .read-more {
    position: absolute;
    width: 100%;
    bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .review-tab-navigation ul li a {
        font-size: 17px;
    }

    .google-review {
        padding: 30px 0;
    }

    .review-slider {
        margin-bottom: 30px !important;
    }
}

@media only screen and (max-width: 991px) {
    .review-slider-content {
        margin: 0 16px;
        padding: 40px 30px 90px;
    }

    .review-slider-content:hover {
        border-bottom: unset;
    }

    .review-tab-navigation ul {
        border: none;
        width: 100%;
    }

    .review-tab-navigation ul li {
        display: none;
        width: 100%;
        padding: 8px 0;
        margin: 0 !important;
        border-bottom: 1px solid rgb(81 81 83 / 20%);
    }

    .review-tab-navigation ul li a {
        padding-bottom: 0;
        width: 100%;
        font-size: 16px;
    }

    .review-tab-navigation ul li a.active {
        border: none;
    }

    .review-tab-navigation ul.open li {
        display: block;
    }

    .review-tab-navigation ul li.active {
        display: block;
    }

    .responsive-tabs>i {
        position: absolute;
        top: 10px;
        font-size: 20px;
        right: 20px;
        display: block;
        padding: 0 5px;
        color: var(--cameo_color);
    }

    .review-slider {
        margin: 30px 0 0 0 !important;
    }

    .google_search img {
        width: 44px;
        height: 44px;
    }
}

@media only screen and (max-width: 767px) {
    .review-section>.container-fluid {
        padding: 0;
    }

    .review-tab-navigation ul {
        margin-top: 0px;
    }

    .google_search img {
        width: 34px;
        height: 34px;
    }
}

@media only screen and (max-width: 640px) {
    .review-slider-content {
        margin: 0px;
    }

    .google_search img {
        width: 24px;
        height: 24px;
    }
}

@media only screen and (max-width: 425px) {
    .review-btn .default-cta {
        margin: 0 0 0 15px;
    }
}

/*============================================
= End Review Section CSS
============================================*/
/*===============================================
= logo Section CSS
============================================*/
.logo_slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo_slider .slick-dots {
    left: 0;
}

.logo-image img {
    filter: grayscale(1);
    height: 60px;
    width: auto;
    margin: auto;
}

.gold_logo img {
    height: 110px !important;
}

.slick-dots li,
.slick-dots li button,
.slick-dots li button::before {
    width: 10px;
    height: 10px;
    padding: 0;
}

.slick-dots li.slick-active button::before {
    opacity: 1;
}

.slick-dots li button::before {
    font-size: 10px;
    line-height: 12px;
    color: var(--bermuda_color) !important;
}

.logo_sec {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .logo-image img {
        height: 60px;
    }
}

/*===============================================
= End Logo  Section CSS
============================================*/
/*============================================
= Start Patient Section CSS
============================================*/
.patient-box {
    text-align: center;
}

.patient-box h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--dm_sans_font);
    padding-top: 32px;
    padding-bottom: 12px;
}

.patient-box h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #BC8247;
    font-family: 'DM Serif Display', serif;
    padding-bottom: 16px;
}

.patient-box p {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 40px;
    /* text-transform: capitalize; */
}

@media only screen and (max-width: 1024px) {
    .patient-box h5 {
        font-size: 20px;
        padding-top: 24px;
    }

    .patient-box h3 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .patient-box h5 {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .patient-box h3 {
        padding-bottom: 10px;
    }

    .patient-box p {
        padding-bottom: 30px;
    }
}

/*============================================
= End Patient Section CSS
============================================*/
@media only screen and (max-width: 767px) {

    .matters-sec .welcome-heading p,
    .technology-sec .welcome-heading p {
        padding-bottom: 0;
    }
}

/*============ Contact CSS ============*/
.contact-content .default-btn {
    padding-top: 8px;
}

.services-menu li.address::before {
    background-image: url("/wp-content/uploads/2023/08/map-pin.svg");
}

.services-menu li.number::before {
    background-image: url("/wp-content/uploads/2023/08/call-icon.svg");
}

@media only screen and (max-width: 991px) {
    .contact-content .default-btn {
        padding-top: 0px;
    }

    .contact-map iframe {
        height: 350px;
    }
}

@media only screen and (max-width: 475px) {
    .contact-map iframe {
        height: 300px;
    }
}

/*============================================
= Start Inner Page CSS
============================================*/
h1 span,
h2 span,
h3 span {
    color: var(--cameo_color);
}

.icon_list .elementor-icon-box-title {
    display: none;
}

.icon_list .elementor-icon-box-wrapper {
    align-items: start !important;
}

.icon_list .elementor-icon-box-icon {
    margin-top: 2px;
}

.white-icon .elementor-icon-box-icon svg,
.white-icon .elementor-icon-list-icon svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(33%) hue-rotate(294deg) brightness(111%) contrast(107%);
}

.table-sec table td,
.table-sec table th {
    padding: 15px !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.table-sec table tfoot th,
.table-sec table thead th {
    font-size: 16px !important;
    background-color: var(--cameo_color) !important;
}

.table-sec table th {
    font-weight: 700;
}

.table-sec table tbody>tr:nth-child(odd)>td,
.table-sec table tbody>tr:nth-child(odd)>th {
    background-color: var(--bg-color) !important;
}

.table-sec table.table {
    margin-bottom: 10px;
}

.button-width:first-of-type .elementor-button-wrapper span.elementor-button-text {
    width: 100% !important;
    max-width: 110px;
}

@media only screen and (min-width: 768px) {
    .salmon-team.elementor-widget-html .row .col-md-3:nth-last-child(-n + 4) .team-image {
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .text-sec {
        background-color: var(--bermuda_color);
    }

    /*table td, table th, table tfoot th, table thead th{
        font-size: 14px !important;
    }*/
    .salmon-team.elementor-widget-html .row .col-md-3:last-child .team-image {
        margin-bottom: 0px;
    }

    .elementor-widget-container .star-design {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) {
    .call_now_btn .elementor-button-wrapper .elementor-button-text .btn_txt {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .elementor-button-wrapper .elementor-button {
        width: 100% !important;
    }

    .elementor-location-popup .popup_btn .elementor-button-content-wrapper .elementor-button-text span {
        display: none;
    }

    .call_now_btn .elementor-button-wrapper .elementor-button-text .btn_number {
        display: none;
    }
}

.button-width .elementor-button-wrapper a {
    width: 100%;
    max-width: 250px;
}

.terms-text p a {
    display: inline-block;
}

/*============================================
= End Inner Page CSS
============================================*/
/*===============================================
= New Service page CSS
===============================================*/
.box-content-info {
    margin-top: 30px !important;
}

.post-box-wrapper {
    background-color: var(--color-white);
    box-shadow: 0px 8px 24px 0px rgb(132 163 180 / 10%);
    transition: all 0.5s;
    height: 100%;
    position: relative;
}

.post-box-img {
    margin-bottom: 24px;
}

.post-box-img img {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.service_page_box .post-box-body {
    padding-bottom: 70px;
}

.post-box-body {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 20px;
}

.post-box-title {
    margin-bottom: 15px;
}

.post-box-desc p {
    margin-bottom: 25px;
}

.post-box-cta {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
}

.post-box-cta a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.box-content-info {
    margin-top: 30px;
}

.post-box-body .default-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 25px 30px;
}

.post-box-title h3 {
    font-size: 24px;
    transition: all 0.4s;
    margin: 0;
}

.post-box-title a:hover h3 {
    color: var(--light_blue);
}

.post-box-desc p {
    margin-bottom: 10px !important;
}

@media screen and (max-width: 1199px) {
    .post-box-desc p {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) and (min-width: 576px) {

    .box-content-info:first-child,
    .box-content-info:nth-child(2) {
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 576px) {
    .post-box-body .default-btn .default-cta {
        width: 100% !important;
        max-width: 100%;
    }

    .post-box-title h3 {
        font-size: 20px;
    }

    .box-content-info:first-child {
        margin-top: 10px !important;
    }
}

/*===============================================
= End New Service page CSS
===============================================*/
/* video-css */
.vd-sec {
    position: relative;
    padding-top: 56.66%;
    overflow: hidden;
    background-color: #222222;
}

.vd-sec iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-slide,
.vd-sec,
.vd-sec iframe {
    border-radius: 60px;
}

@media screen and (max-width: 1200px) {

    .testimonial-slide,
    .vd-sec,
    .vd-sec iframe {
        border-radius: 50px;
    }
}

@media screen and (max-width: 1024px) {

    .testimonial-slide,
    .vd-sec,
    .vd-sec iframe {
        border-radius: 40px;
    }
}

@media screen and (max-width: 991px) {

    .testimonial-slide,
    .vd-sec,
    .vd-sec iframe {
        border-radius: 30px;
    }
}

@media screen and (max-width: 767px) {

    .testimonial-slide,
    .vd-sec,
    .vd-sec iframe {
        border-radius: 15px;
    }

    .hero-banner .vd-sec {
        /* padding-top: 56.40%; */
        padding-top: 0;
    }
}

.testimonial-slide {
    overflow: hidden;
}

.testimonial-slider .slick-dots li,
.testimonial-slider .slick-dots li button {
    padding: 0;
    width: 12px;
    height: 12px;
}

.testimonial-slider .slick-dots li button {
    opacity: 0.6;
    background-color: #000000;
}

.testimonial-slider .slick-dots li button::before {
    display: none;
}

.testimonial-slider .slick-dots li.slick-active button,
.testimonial-slider .slick-dots li button:hover {
    opacity: 1;
    background-color: #7bd6d0;
}

.testimonial-slider ul.slick-dots {
    bottom: -35px;
}

/******* invisalign-payment-option css ********/
.header-divider {
    text-align: center;
}

.form-row-first {
    padding-bottom: 50px;
}

.invisalign-form label {
    padding-right: 10px;
    display: inline-block;
    vertical-align: bottom;
    float: left;
}

.rf-form-input-main {
    display: block;
    overflow: hidden;
}

.coupen-week strong {
    float: left;
}

.expires-date {
    display: inline-block;
    padding-left: 15px;
}

.expires-date p {
    color: var(--bermuda_color);
}

.highlight-text span,
.entry-content td strong span,
.entry-content td h4 span {
    color: var(--cameo_color);
}

.invisalign-form input {
    border: 0;
    padding: 0;
    border-bottom: 1px solid #6b6b6b;
    border-radius: 0;
}

.entry-content table tbody>tr:nth-child(odd)>td,
.entry-content table tbody>tr:nth-child(odd)>th,
.entry-content table tbody tr:hover>td,
.entry-content table tbody tr:hover>th {
    background-color: transparent;
}

.entry-content table td,
.entry-content table th {
    border: 0;
    border-bottom: 1px solid #6b6b6b;
    vertical-align: middle;
    font-size: 16px;
}

.funding-option {
    padding-top: 50px;
}

.funding-option h2 {
    text-align: center;
    padding-bottom: 30px;
}

.entry-content p {
    font-size: 16px;
}

.faqs_desctiptiion h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faqs_content_area h3 {
    background: var(--bg-color);
    padding: 20px;
    border-bottom: 1px solid var(--cameo_color);
    font-size: 26px;
    color: var(--black_color);
}

.faqs_desctiptiion {
    padding: 25px 20px;
}

.insurance-payment {
    display: flex;
}

.insurance-4 {
    width: 50%;
}

.insurance-4 .rf-form-input-main p {
    font-size: 14px;
}

.faqs_content_area h3 {
    line-height: 26px;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.faqs_content_area h3:before {
    content: "\f067";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--bermuda_color);
    transition: all 0.4s;
}

.faqs_content_area.active h3:before {
    content: "\f068";
}

.do-it-sec {
    text-align: center;
}

.faqs_desctiptiion table td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.downmsg {
    text-align: center;
    font-size: 14px;
    color: red;
    margin-top: 20px;
}

.faqs_desctiptiion p {
    font-size: 16px;
}

.faqs_content_area h3 span {
    color: #c4a07c;
}

@media only screen and (max-width: 1200px) {
    .faqs_content_area h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1024px) {
    .faqs_content_area h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .faqs_content_area h3 {
        font-size: 20px;
    }

    .funding-option {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .funding-option {
        padding-top: 30px;
    }

    .entry-content table td,
    .entry-content table th {
        padding: 15px 5px;
    }

    .faqs_content_area h3 {
        padding: 20px 28px 20px 20px;
    }

    .faqs_content_area h3:before {
        right: 15px;
    }

    .faqs_desctiptiion {
        padding: 15px;
    }

    .insurance-payment {
        display: block;
    }

    .insurance-4 {
        width: 100%;
    }

    .insurance-4:first-child {
        padding-bottom: 12px;
    }
}

/******* invisalign-payment-option css ********/

/*===============================================
= Pay Now page CSS
===============================================*/
.pay_now_form form input#Submit {
    margin: auto;
    margin-top: 20px;
    width: 100%;
}

.paynow-step .next {
    width: 100%;
}

.paynow-step .next i {
    margin-left: 5px;
}

.g-recaptcha>* {
    margin: 0 auto;
}

.label1 {
    font-weight: 600;
    color: #ff0000;
    position: absolute;
    bottom: -16px;
    font-size: 12px;
    left: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.g-recaptcha-main {
    position: relative;
    margin: 0 0 30px;
}

@media only screen and (min-width: 768px) {
    body .site-navigation ul.menu li.pay_now_menu {
        display: none;
    }
}

/*===============================================
= End Pay Now page CSS
===============================================*/
/*===============================================
= 404 Page CSS
===============================================*/
body.error404 .header-bottom {
    background: var(--bg-color);
}

.error-404 {
    padding: 100px 0;
    text-align: center;
}

.error-404 .page-header .page-title {
    font-size: 15.7vw;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: rgba(26, 33, 90, 0.08);
    font-weight: 600;

}

.error-404 .page-header h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    padding: 0;
    margin: 20px 0 14px;
}

.error-404 .page-content p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.error-404 .page-content .error-btn {
    font-size: 16px;
    background: var(--bermuda_color);
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
    border: 1px solid var(--bermuda_color);
    border-radius: 60px;
    transition: all 0.4s;
    padding: 14px 24px;
    line-height: 1;
    display: inline-block;
    margin-top: 25px;
}

.error-404 .page-content .error-btn:hover {
    color: var(--bermuda_color);
    background: transparent;
}

/* .error-404.not-found .page-header {
    padding-top: 90px;
} */
@media only screen and (max-width: 1440px) {
    .error-404 .page-header .page-title {
        font-size: 270px;
    }

    .error-404 .page-header h2 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 1366px) {
    .error-404 {
        padding: 90px 0;
    }

    .error-404 .page-header .page-title {
        font-size: 250px;
    }

    .error-404 .page-header h2 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 1199px) {
    .error-404 {
        padding: 80px 0;
    }

    .error-404 .page-header .page-title {
        font-size: 220px;
    }

    .error-404 .page-header h2 {
        font-size: 34px;
    }

    .error-404 .page-content p {
        font-size: 17px;
        max-width: 460px;
    }

    .error404 header#masthead nav.navbar #main-nav {
        top: calc(100% + 12px);
        box-shadow: 0px 8px 30px rgb(30 43 143 / 10%);
    }

    .error-404.not-found .page-header {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 991px) {
    .error-404 {
        padding: 70px 0;
    }

    .error-404 .page-header .page-title {
        font-size: 190px;
    }

    .error-404 .page-header h2 {
        font-size: 32px;
    }

    .error-404 .page-content p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .page-header .page-title {
        font-size: 160px;
    }

    .error-404 .page-header h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .error-404 {
        padding: 50px 0;
    }

    .error-404 .page-header .page-title {
        font-size: 130px;
    }

    .error-404 .page-header h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 480px) {
    .error-404 {
        padding: 40px 0;
    }

    .error-404 .page-header .page-title {
        font-size: 100px;
    }

    .error-404 .page-header h2 {
        font-size: 26px;
    }
}

/*===============================================
= 404 Page CSS
===============================================*/
@media only screen and (min-width: 576px) {
    .icon-listbox ul {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
}

@media only screen and (min-width: 992px) {
    .icon-listbox ul {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

/*------------------------------------------
----Privacy & Tearm and conditions Pages----
------------------------------------------*/


.htag_txt h2 {
    font-weight: 600;
}

.privacy_txt_block h2:not(:first-child) {
    margin-top: 35px;
}

.privacy_txt_block h2,
.privacy_txt_block h3 {
    padding-bottom: 0;
    margin-bottom: 20px;
    color: #222222;
}

.privacy-text-info p {
    color: #333 !important;
    font-size: 20px;
}

.privacy-text-info ul li {
    color: #333 !important;
    font-size: 20px;
}

.privacy-text-info h3:nth-child(3) {
    padding-top: 30px !important;
}

.privacy-text-info ul {
    list-style: disc;
    margin-left: 22px;
    padding-bottom: 20px;
}

.privacy-text-info ul li::marker {
    font-size: 24px;
    color: #333;
}

.privacy-text-info p {
    margin-bottom: 15px;
    display: block;
}

.privacy-text-info p:last-child {
    margin-bottom: 0 !important;
}

.privacy-text-info font {
    font-size: 21px;
    margin-bottom: 15px;
    display: block;
    line-height: 1.2;
    color: var(--black_color);
}

@media only screen and (min-width: 981px) and (max-width: 1140px) {
    .privacy-text-info font {
        font-size: 20px;
    }
}

@media (max-width: 980px) {

    .privacy_main_sec_blk .elementor-container.elementor-column-gap-no {
        max-width: 100%;
        padding: 0 30px;
    }

    .privacy-text-info ul li,
    .privacy-text-info p {
        font-size: 18px;
    }

    .privacy-text-info font {
        font-size: 19px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1130px) {
    .privacy_main_sec_blk .elementor-container.elementor-column-gap-no {
        max-width: 100%;
        padding: 0 40px;
    }

    .sameapdd_num3 {
        max-width: 100% !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/*=========================================
= End Privacy & Tearm and conditions Pages
=========================================*/

/*------------------------------------------
------------Inner Banner Section------------
------------------------------------------*/
.inner_page_banner_sec {
    position: relative;
    top: 0;
    width: 100%;
    height: 738px;
    display: flex;
    background-image: url(/wp-content/uploads/2023/08/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% 100%;
}

.inner_page_banner_sec:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
}

.inner_page_banner_sec .elementor-widget-wrap.elementor-element-populated {
    align-items: center;
    flex-wrap: unset;
    z-index: 10;
}

.banner-content_heading {
    margin-bottom: 40px;
}

.banner-content_heading h1 {
    color: #fff;
}

.padd_top100 {
    padding-top: 100px;
}

.padd_botm100 {
    padding-bottom: 100px;
}

.banner-content .more_infor_btn .header-btn.bord_white {
    justify-content: center;
}

.page-content .inner_page_banner_img_blk .banner-content .header-btn a:hover {
    border-color: #fff;
    color: #fff;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .mobile_bkg_img_blk img {
        height: 250px;
        object-fit: cover;
        object-position: 73%;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .mobile_bkg_img_blk img {
        height: 450px;
        object-fit: cover;
        object-position: 73%;
    }
}

@media (max-width: 767px) {
    .more_infor_btn .header-btn.bord_white a {
        display: block !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
    .mobile_bkg_img_blk img {
        height: 500px;
        object-fit: cover;
        object-position: 80%;
    }
}

@media (max-width: 980px) {
    .inner_page_banner_sec {
        background-image: unset !important;
        height: 100%;
    }

    .mobile_bkg_img_blk {
        display: block !important;
        height: 100%;
    }

    .inner_page_banner_sec .elementor-container.elementor-column-gap-no {
        padding: 0 !important;
    }

    .inner_page_banner_img_blk .banner-content.htag_txt {
        padding: 50px;
        background-color: #1a3743;
    }

    .banner-content_heading.htag_txt {
        text-align: center;
    }

    .more_infor_btn .header-btn.bord_white {
        justify-content: center;
    }

    .padd_top100 {
        padding-top: 50px;
    }

    .padd_botm100 {
        padding-bottom: 50px;
    }

    .privacy_main_sec_blk .elementor-container.elementor-column-gap-no {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1024px) {
    .inner_page_banner_sec {
        height: 600px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {
    .inner_page_banner_sec {
        height: 600px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1140px) {
    .privacy_main_sec_blk .elementor-container.elementor-column-gap-no {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (min-width: 1141px) and (max-width: 1280px) {
    .inner_page_banner_sec {
        height: 650px;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .inner_page_banner_sec {
        height: 650px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1680px) {
    .inner_page_banner_sec {
        height: 700px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1880px) {
    .padd_top100 {
        padding-top: 70px;
    }

    .padd_botm100 {
        padding-bottom: 70px;
    }
}