@font-face {
    font-family: headings;
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: body-normal;
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: sans;
    src: url(../fonts/SourceSansPro-Regular.ttf);
}

@font-face {
    font-family: sans-headings;
    src: url(../fonts/SourceSansPro-Bold.ttf);
}

@font-face {
    font-family: body-medium;
    src: url(../fonts/Yantramanav-Medium.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: body-normal;
    font-weight: 400;
    line-height: 1.5em;
    overflow-x: hidden;
    position: relative;
}

p {
    margin: 0 0 1em;
}

.clr-golden {
    fill: #bd9746;
}

.clr-white.clr-golden {
    fill: white;
}

.clr-black {
    color: #000000
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: headings;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

.wrap {
    max-width: 86%;
    margin: auto;
}

.standard-btn {
    color: #fff;
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
    padding: 1.357em 1.786em;
    background-position: 0 0;
    background-image: linear-gradient(to right, #000000 51%, #bd9746 100%);
    background-size: 200% 100% !important;
    border-radius: 4px;
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
    border: none;
    transition: all 300ms ease
}

.standard-btn:hover {
    box-shadow: 1px 1px 10px 1px rgba(34, 34, 34, .2);
    transform: translateY(-3px);
    background-position: 99% 0;
}

@media all and (max-width:1300px) {
    /* .wrap {
        max-width: 1200px;
    } */

}

article {
    padding: 20px 15px;
}

.upr-nav {
    padding: 4px 15px;
}

.page-header {
    /* background: linear-gradient(to right, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3)), url(../img/black1.jpg); */
    /* background-attachment: fixed; */
    background-size: cover;
}

.page-header .upr-nav {
    background: black;
}

.page-header .sec-nav {
    background: #bd9746;
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
}

.sec-nav.is-sticky {
    width: 100%;
    position: fixed;
    top: 0;
    animation: slideDown 0.35s ease-out;
    z-index: 100;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.upr-nav .navbrand img {
    height: 90px;
    width: auto;
}

.upr-nav .btIconWidgetTitle {
    font-size: 1.4em;
    display: block;
    line-height: 1;
}

.upr-nav .entity-uppr {
    gap: 12px;
}

.upr-nav .entity {
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.upr-nav .entity-uppr svg {
    width: 2.5em;
    width: 2.5em;
}

.upr-nav .btIconWidgetText {
    font-size: .85rem;
    opacity: .8;
    line-height: 1.5;
}

.sec-nav .social-icons {
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
    border-left: 1px solid rgba(34, 34, 34, .1);
}



@keyframes animate {
    0% {
        opacity: 0;
        transform: rotateX(-90deg), translateX(-50px);
    }

    50% {
        transform: rotateX(20deg), translateX(-25px);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg), translateX(0px);
    }

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.page-header.is-sticky {
    width: 100%;
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    /* padding: 8px 0; */
    /* backdrop-filter: blur(10px); */
    background-color: rgba(255, 255, 255, .95);
    animation: slideDown 0.35s ease-out;
    box-shadow: 0 5px 12px #BD9746;
    z-index: 100;
}

.sec-nav {
    box-shadow: 0 9px 5px rgba(34, 34, 34, .1);
    /* background-color: white; */
}

.sec-nav {
    border-top: 1px solid rgba(34, 34, 34, .6);
}

.sec-nav .navbar-nav a.nav-link {
    padding-left: 25px;
    padding-RIGHT: 25px;
    color: white;
}

.sec-nav .social-icons span {
    font-size: 2rem;
    color: white;
    transition: all .2s ease-in;
}

.sec-nav .social-icons span:hover svg {
    /* color: #BD9746; */
    stroke: black;
}

.sec-nav .social-icons span svg {
    stroke: white;
    width: 2rem;
    height: 2rem;
    transition: all .2s ease-in;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: white;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler:hover span,
.navbar-toggler:focus span {
    background: white;
}

/* rotate first span */
.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.navbar-toggler .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: white;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

/* rotate first span */
.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@media all and (min-width:992px) {
    .dropdown {
        /* padding: 20px 40px; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* color: #fff;
        background: #c06162;
        background: #34495e; */
        position: relative;
        /* font-size: 18px; */
        perspective: 1000px;
        /* display: none; */
        z-index: 100;
    }

    .dropdown:hover {
        /* background: #2980b9; */
        cursor: pointer;
    }

    .dropdown:hover .dropdown_menu li {
        display: block;
    }

    .dropdown_menu {
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
        /* width: 100%; */
        perspective: 1000px;
        z-index: -1;
    }

    .dropdown_menu li {
        display: none;
        /* background: rgba(242, 242, 242, 1); */
        background: black;
        /* color: #fff; */
        /* background-color: #34495e; */
        padding: 10px 20px;
        font-size: 16px;
        opacity: 0;
        transition: all .2s ease-in;
    }

    .dropdown_menu li:hover {
        background-color: #BD9746;
    }

    a.dropdown-item {
        color: #BD9746;
        background: none !important;
        transition: all .2s ease-in;
    }

    .dropdown_menu li:hover a.dropdown-item {
        color: rgba(242, 242, 242, 1);
        background: none;
    }

    .dropdown:hover .dropdown_menu--animated {
        display: block;
        border: none;
    }

    .dropdown_menu--animated {
        display: none;
    }

    .dropdown_menu--animated li {
        display: block;
        opacity: 1;
    }

    .dropdown_menu-7 {
        animation: rotateMenu 400ms ease-in-out forwards;
        transform-origin: top center;
    }
}

@media all and (max-width:991px) {
    .sec-nav .social-icons {
        padding: 10px 0;
        gap: 15px;
        border-left: 0;
        justify-content: center;
    }

    .sec-nav .social-icons span {
        font-size: 26px;
    }

    .sec-nav a.nav-link {
        text-align: center;
    }

    .sec-nav .dropdown-menu {
        padding: 0;
        margin-bottom: 10px;
        border: none;
    }

    .sec-nav .navbar.navbar-expand-lg {
        padding: 0;
    }

    .sec-nav {
        border-top: 0;
    }

    .sec-nav .dropdown-menu li {
        opacity: 0;
        background-color: white;
    }

    .sec-nav .navbar-toggler {
        position: absolute;
        right: 10px;
        top: -46px;
    }

    .page-header.is-sticky .sec-nav .navbar-toggler {
        position: fixed;
        right: 10px;
        top: 7px;
    }

    .sec-nav .dropdown-menu li a {
        color: #BD9746;
    }

    .sec-nav li.nav-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(106, 124, 146, 0.10);
    }

    .sec-nav a.nav-link {
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
    }

    .sec-nav li.nav-item:last-child>a.nav-link {
        padding: 1.357em 1.786em;
    }

    .sec-nav .dropdown-menu li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(106, 124, 146, 0.10);
    }

    .sec-nav .dropdown-menu li a {
        padding: 0;
        text-align: center;
    }

    .sec-nav .dropdown-menu.show li:first-child {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: -150ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(2) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 0ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(3) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 150ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(4) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 300ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(5) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 450ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(6) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 600ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(7) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 750ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(8) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 900ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(9) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 1150ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(10) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 1300ms;
    }

    .sec-nav .dropdown-menu.show li:nth-child(11) {
        animation: animate 300ms ease-in-out forwards;
        animation-delay: 1450ms;
    }

    .upr-nav .navbrand img {
        height: 50px;
    }

    /* .upr-nav {
        padding: 4px 38px;
    } */
}

.index-header {
    /* padding: 0 15px; */
    position: relative;
    /* background-color: white; */
    /* background: black; */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .99)), url(../img/new-patterns/4.webp);
    /*background-size: cover !important;*/
    /*background-position: bottom !important;*/
}

.index-header.contactus-header.teethw-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(248, 208, 89, 0.1)), url(../img/new-patterns/4.webp);
    /* background-size: cover; */
    /* color: white; */
}

.index-header.change-one {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .7)), url(../img/new-patterns/4.webp);
    background-size: cover;
}

.index-header.change-two {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .7)), url(../img/bg-b-2.jpg);
}

.index-header.change-three {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .7)), url(../img/bg-b-3.jpg);
}

@media all and (max-width:991px) {
    .index-header {
        padding: 20px 15px;
        padding-bottom: 10px;
        /* background-image: url(../img/index-header.jpg); */
        background-size: cover;
    }

    .index-header.change-one {
        /* linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .3)),  */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 45%), url(../img/home-mobile.webp);
        background-position: center;
        background-size: cover;
    }
}

@media all and (max-width:767px) {
    .index-header {
        /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .9)), url(../img/index-header.jpg); */
    }
}

/* .index-header .col-lg-6.content {
    padding: 150px 10px 20px 10px;
} */

.index-header .col-lg-6.img-div img {
    object-fit: cover;
    max-height: 700px;
    object-position: center;
    height: 100%;
}

.index-header .wrap {
    max-width: 93%;
    margin: 0 0 0 auto;
}

.index-header .owl-stage {
    display: flex;
}

.index-header .owl-stage-outer {
    overflow-x: hidden;
}

.index-header .item-3 {
    background: url(../img/index-car3.jpg);
    background-size: cover;
}

/* .index-header .item-1 {
    background: url(../img/index-car1.jpg);
    background-position: right 0;
    background-repeat: no-repeat;
    background-size: 100% 50%;
} */
.index-header .item-1 .content.col-lg-6 {
    /* padding: 200px 0; */
    padding-bottom: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;

}

.index-header.teethw-header .item-1 .content.col-lg-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media all and (min-width:992px) {
    .index-header .item-1 .content.col-lg-6 .btn-div {
        visibility: hidden;
    }
}

@media all and (max-width:991px) {
    .index-header .item-1 .content.col-lg-6 {
        padding-top: 150px;
        padding-bottom: 0;
    }

    .index-header.teethw-header .item-1 .content.col-lg-6 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .index-header .item-1 .content.col-lg-6 h1 {
        text-align: center;
    }

    .index-header.treatment-header .item-1 .content.col-lg-6 h1 {
        font-size: 2.5525em;

    }

    .index-header .item-1 .content.col-lg-6 .btn-div {
        display: none;
    }

    .index-header.treatment-header .item-1 .content.col-lg-6 .btn-div {
        display: flex;
        justify-content: center;
    }
}

.index-header .item-2 {
    background: url(../img/index-car2.jpg);
    background-size: cover;
}

.index-header .index-car {
    position: relative;
}

.index-header .owl-nav {
    display: none;
}

.index-header .owl-dots {
    position: absolute;
    top: 0;
    right: 5px;
    height: 100%;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.index-header .owl-dots .owl-dot {
    position: relative;
    width: 1em;
    height: 1em;
    /* padding: 10px; */
    /* color: transparent; */
    border: none;
    transition: all .3s ease-in;
    background: none;
}

.index-header .owl-dots .owl-dot::before {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: white;
    opacity: .6;
    width: 2px;
    height: calc(100% - 2px);
    /* transform: scale3d(1, .125, 1); */
    transform-origin: 50% 50%;
    transition: 250ms ease all;
}

/* .index-header .item {
    padding: 200px 0;
    display: flex;
    align-items: center;
} */

header h1 {
    font-size: 4.35em;
    letter-spacing: -.03em;
    line-height: 1;
    color: #BD9746;
}

@media all and (max-width:767px) {
    header h1 {
        font-size: 1.5525em;
        letter-spacing: -.02em;
        /* color: #BD9746; */
    }

    header h1 small {
        font-size: 100% !important;
    }
}

.index-header .item .svg-content svg {
    width: 51px;
    height: 52px;
}

.index-header .item .svg-content {
    display: flex;
    gap: 10px;
}

.index-header .content .img-div {
    display: flex;
    justify-content: center;
}

.index-header .content .img-div img {
    width: 300px;
}

header h1 small {
    font-size: 70%;
    color: white;
    font-family: body-normal;
    font-weight: 400;
    /* letter-spacing: -.02em; */
    letter-spacing: .03em;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

.delay-3 {
    animation-delay: .6s;
}

.delay-4 {
    animation-delay: .8s;
}

.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

.index-header .owl-dots .owl-dot.active::before {
    transform: scale3d(.125, 0, 1);
}

.index-header .owl-dots .owl-dot.active {
    background-color: #BD9746;
}


/* book appointment started  */
.book-appointment {
    padding-left: 0;
    padding-right: 0;
}

.book-appointment h2 {
    font-family: body-normal;
    color: #BD9746;
}

.book-appointment label {
    color: white;
}

.book-appointment .heading-div {
    font-size: 2.5rem;
}

.book-appointment {
    margin-top: -157px;
    /* background-color: rgba(242, 242, 242, 1); */
    /* background: linear-gradient(to right, rgba(255, 255, 255, .6), rgba(255, 255, 255, .6)), url(../img/roughly-gold.jpg); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .9)), url(../img/grey1.webp);
    background-size: cover;
    background-attachment: fixed;
}

.book-appointment.change-one {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, .6)), url(../img/grey-pattern.jpg);
}

.book-appointment.change-two {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .9)), url(../img/bg-g-2.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.book-appointment.change-three {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .9)), url(../img/bg-g-3.jpg);
    background-size: cover;
}

.book-appointment.change-four {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5)), url(../img/new-patterns/4.webp);
    background-size: cover;
    background-position: bottom !important;
}

@media all and (max-width:991px) {
    .book-appointment {
        margin-top: 0;
        /* background-color: rgba(242, 242, 242, 1); */
    }

    .book-appointment.change-four {
        background: black;
        background-size: cover;
    }
}

.book-appointment .wrap {
    max-width: 1400px;
    margin: auto;
}

.book-appointment .heading {
    border-bottom: 1px solid rgba(34, 34, 34, .1);
    font-size: 2.5rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.book-appointment .form-img {
    /* background-color: white; */
    background-color: black;
    padding: 20px;
    box-shadow: 1px 1px 10px rgba(255, 255, 255, .6);
}

.book-appointment .form-img .inner .img-div {
    /* width: calc(50% - 5px); */
}

.book-appointment .form-here input:not([type='checkbox']) {
    border-radius: 4px;
    background: inherit;
    color: #BD9746;
    border: 1px solid #BD9746;
    height: 3.25em;
    padding: 1.125em 1.563em;
    font-size: 1em;
    /* border: 0; */
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .6);
}

.book-appointment .form-here input:not([type='checkbox'])::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #BD9746;
    opacity: .7;
    /* Firefox */
}

.book-appointment .form-here input:not([type='checkbox']):-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #BD9746;
}

.book-appointment .form-here input:not([type='checkbox'])::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #BD9746;
}

.book-appointment .form-img .inner {
    /* background-color: rgba(255, 255, 255, 1); */
    background-color: black;
    padding: 20px;
}

.book-appointment .form-img .inr-most {
    display: flex;
    gap: 10px;
    /* align-items: center; */
}

@media all and (max-width:767px) {
    .wrap {
        max-width: 100% !important;
    }

    .book-appointment .form-img .inr-most {
        flex-direction: column;
    }

    .book-appointment .form-img .inner .img-div {
        width: 100%;
        margin-bottom: 15px;
    }

    /* .book-appointment .form-img .inner {
        padding: 0;
    } */

    .book-appointment .form-img {
        margin-bottom: 15px;
    }
}

@media all and (min-width:768) {
    .book-appointment .form-img .form-here {
        width: calc(50% - 5px);
    }
}

.book-appointment .car-trust .inner {
    /* background-color: rgba(51, 51, 51, 1); */
    background-color: rgba(0, 0, 0, 1);
    padding: 3.635em 1.875em;
}

@media all and (max-width:768px) {
    .book-appointment .car-trust .inner {
        padding: 3.635em 0.875em;
    }
}

.book-appointment .car-trust .inr-mst {
    position: relative;
    padding: 0.625em 0;
    margin: 0.625em 0;
    color: white;
}

.book-appointment .car-trust .inr-mst p {
    text-align: center;
    color: white;
    line-height: 1.5;
    font-size: 1.563em;
}

.book-appointment .car-trust .inr-mst::before,
.book-appointment .car-trust .inr-mst::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 70px;
    background-color: white;
}

.book-appointment .car-trust .inr-mst::before {
    top: 0;
}

.book-appointment .car-trust .inr-mst::after {
    bottom: 0;
}

/* book appointment ended  */
/* lux australia started  */
.lux-australia {
    /* background-color: black; */
    /* background: url(../img/black5.jpg); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/black3.webp);
    background-size: cover;
    color: #BD9746;
    padding: 0 15px;
    padding-right: 0;
}

.lux-australia .wrap {
    position: relative;
}

.lux-australia .wrap .follow-us {
    position: absolute;
    bottom: 3px;
    left: 0;
    width: calc(50% - 8.3%);
}

.lux-australia .wrap .follow-us .img-div {
    display: flex;
    justify-content: center;
    padding-bottom: 8px;
}

.lux-australia h2.text-center.d-block {
    font-size: 2.375rem;
}

.lux-australia .wrap .follow-us h2 {
    font-size: 30px;
    color: white;
}

.lux-australia .wrap .follow-us .img-div img {
    width: 200px;
}

.lux-australia .extra-padding {
    padding-top: 16px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.lux-australia.change-one {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/bg-b-1.jpg);
    background-size: cover;
}

.lux-australia.change-two {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .9)), url(../img/bg-b-2.jpg);
    background-size: cover;
}

.lux-australia.change-three {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/bg-bg-3.jpg);
    background-size: cover;
}

.lux-australia.change-four {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4)), url(../img/new-patterns/3.webp);
    background-size: cover;
}

.lux-australia .col-lg-5.py-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lux-australia .bg-img {
    /* background-image: url(../img/weare2.webp); */
    /* background-position: center;
    background-size: cover;
    padding-left: 1.875em;
    padding-right: 1.875em;
    min-height: 365px; */
    padding: 0;
}

.lux-australia .bg-img img {
    height: 100%;
    object-fit: cover;
}

.lux-australia .testimonial-car {
    position: relative;
}

.lux-australia .testimonial-car .owl-stage {
    display: flex;
    /* align-items: center; */
}

.lux-australia .testimonial-car .owl-stage-outer {
    overflow-x: hidden;
}

.lux-australia .testimonial-car .item,
.lux-australia .testimonial-car .item .row {
    height: 100%;
}

.lux-australia .testimonial-car .owl-nav {
    display: none;
}

.lux-australia .testimonial-car .owl-dots {
    display: flex;
    justify-content: center;
    gap: 13px;
    /* margin-top: 20px; */
    position: absolute;
    left: 0;
    bottom: 113px;
    width: calc(50% - 8.3%);
}

.lux-australia .testimonial-car .owl-dot {
    border: none;
    transition: all .3s ease-in;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lux-australia .testimonial-car .owl-dot.active {
    background-color: #BD9746;
}

.lux-australia .wrap {
    max-width: 93%;
    margin: 0 0 0 auto;
}

/* 
.lux-australia .wrap {
    height: 70vh;
    align-items: center;
} */

.lux-australia .wrap .row {
    height: 100%;
    /* align-items: center; */
}

.lux-australia .para-div {
    position: relative;
    padding: 1.2em 0;
    /* margin: 50px; */
    margin-bottom: 20px;
}

.lux-australia .para-div p {
    line-height: 1.5;
    font-size: 1.163em;
    font-weight: lighter;
}

.lux-australia .para-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 7.2em;
    background: #bd9746;
}

.lux-australia .para-div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 7.2em;
    background: #bd9746;
}

.lux-australia .heading-div {
    font-size: 4.375rem;
}

.lux-australia h2 {
    color: #bd9746;
    font-size: 60%;
}

@media all and (max-width:991px) {
    .lux-australia .extra-padding {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .lux-australia .wrap {
        max-width: 100%;
        padding-bottom: 120px;
    }

    .lux-australia {
        padding-right: 15px;
    }

    .lux-australia .testimonial-car .owl-dots {
        bottom: -20px;
        width: 100%;
    }

    .lux-australia .wrap .follow-us {
        width: 100%;
    }
}

@media all and (max-width:394px) {
    .lux-australia .wrap {
        padding-bottom: 154px;
    }
}

/* lux australia ended  */
/* Bianca Goodarzi started  */
.bianca-goodarzi {
    /* background-color: black; */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/black3.webp);
}

.bianca-goodarzi.change-one {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .6)), url(../img/bg-b-1.jpg);
}

.bianca-goodarzi.change-two {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .6)), url(../img/bg-b-2.jpg);
}

.bianca-goodarzi.change-three {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .5)), url(../img/bg-b-3.jpg);
    background-size: cover;
}

.bianca-goodarzi.change-four {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4)), url(../img/new-patterns/3.webp);
    background-size: cover;
}

.bianca-goodarzi .wrap {
    /* background-color: rgba(242, 242, 242, 1); */
    /* background: linear-gradient(to right, rgba(255, 255, 255, .5), rgba(255, 255, 255, .5)), url(../img/yellow-wall.jpg); */
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    padding: 0 15px;
    padding-bottom: 20px;
}

.bianca-goodarzi .heading-div {
    padding: 15px 0;
    position: relative;
    margin-bottom: 15px;
}

.bianca-goodarzi p {
    font-size: 1rem;
}

.bianca-goodarzi .social-icons span {
    color: black;
    font-size: 16px;
}

.bianca-goodarzi .heading-div::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 3px;
    width: 70px;
    background-color: white;

}

.bianca-goodarzi h2 {
    font-size: 1.875rem;
    margin-bottom: 0;
}

@media all and (max-width:500px) {
    .bianca-goodarzi h2 {
        font-size: 1.4rem;
    }
}

.bianca-goodarzi .main-anchor {
    position: relative;
    display: flex;
    justify-content: center;
    transition: all .3s ease-in;
    /* height: 100%; */
}

.bianca-goodarzi .img-div {
    transition: all .3s ease-in;
}

.bianca-goodarzi .main-anchor img {
    transition: all .3s;
}

.bianca-goodarzi .dynamic-anchor {
    position: absolute;
    bottom: 40px;
    left: 0;
    /* transform: translateX(-50%); */
    opacity: 0;
    /* z-index: 1; */
    width: 100%;
    display: flex;
    justify-content: center;
}

.bianca-goodarzi .dynamic-anchor .read-more {
    background-color: #bd9746;
    color: #ffffff;
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
    background-image: linear-gradient(to right, #bd9746 51%, #000000 100%);
    transition: all .3s ease-in;
    background-position: 0 0;
    background-size: 200% 100%;
    padding: 1.357em 1.786em;

    border-radius: 4px;
}

.bianca-goodarzi .dynamic-anchor .read-more:hover {
    background-image: linear-gradient(to right, #bd9746 51%, #000000 100%);
    background-position: 99% 0;
    box-shadow: 1px 1px 10px 1px rgba(34, 34, 34, .2);
    transform: translateY(-6px);
}

.bianca-goodarzi .img-div:hover img {
    /* filter: brightness(1.09); */
    opacity: .73;
}

.bianca-goodarzi .img-div:hover .dynamic-anchor {
    opacity: 1;
}

.bianca-goodarzi .insta-link svg {
    stroke: black;
    width: 2rem;
    height: 2rem;
    transition: all .2s ease-in;
}

.bianca-goodarzi .insta-link:hover svg {
    stroke: white;
}

/* Bianca Goodarzi ended  */

/* book visit started  */
.book-visit {
    background-image: linear-gradient(90deg, rgba(162, 113, 56, .7) 15%, rgba(248, 208, 89, .8), rgba(162, 113, 56, .7)), url(../img/book-visit-index.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.book-visit h2 {
    font-size: 3.5rem;
}

.book-visit h2 small {
    font-size: 50%;
    color: black;
}

.book-visit .col-lg-6,
.book-visit .col-lg-12 {
    margin-bottom: 1em;
}

.book-visit form label {
    margin-bottom: .6em;
}

.book-visit form label span {
    color: black;
    font-weight: bold;
    font-size: 20px;
}

.benefits-service .book-visit form label span {
    color: #BD9746;
}

.book-visit form input:not([type='checkbox']) {
    background: #fff;
    color: #181818;
    height: 3.25em;
    padding: 1.125em 1.563em;
    border: 0;
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
}

.book-visit form textarea {
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
    border: none;
    border-radius: 4px;
    padding: 1.125em 1.563em;
    font-size: 1em;
}

.book-visit form button {
    color: #fff;
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
    padding: 1.357em 3.786em;
    background-position: 0 0;
    background-image: linear-gradient(to right, #000000 51%, #bd9746 100%);
    background-size: 200% 100% !important;
    border-radius: 4px;
    border: none;
    transition: all 300ms ease;
}

.book-visit form button:hover {
    box-shadow: 1px 1px 10px 1px rgba(34, 34, 34, .2);
    transform: translateY(-3px);
    background-position: 99% 0;
}

/* book visit end  */
/* Contact lux started  */
.contact-lux {
    /* background: linear-gradient(to right, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), url(../img/grey1.webp);
    background-size: cover;
    background-attachment: fixed; */
    /* background-color: #f2f2f2; */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .9)), url(../img/grey1.webp);
    background-size: cover;
    background-attachment: fixed;
}

.contact-lux.change-one {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .1)), url(../img/bg-g-1.webp);
    background-size: cover !important;
    padding: 25px 15px;
}

.contact-lux.change-two {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/bg-g-2.jpg);
    background-size: cover;
}

.contact-lux.change-three {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, .9)), url(../img/bg-g-3.jpg);
}

.contact-lux h2 {
    text-align: center;
    /* max-width: 500px; */
    font-size: 3.775rem;
    color: white;
}

@media all and (max-width:767px) {
    .contact-lux h2 {
        font-size: 2.375rem;
    }
}

.contact-lux h2 b {
    /* color: white; */
    color: #BD9746;
}

.contact-lux .svg-div {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.contact-lux .svg-div svg {
    width: 40px;
    height: 40px;
}

.contact-lux .innr {
    padding: 10px 25px;
    /* padding: 10px 25px; */
    background: linear-gradient(to bottom, #fff, #000 50%);
    border-radius: 20px;
}

@media all and (min-width:992px) {
    .contact-lux .inner {
        border-right: 1px solid rgba(34, 34, 34, .1);

    }

}

.contact-lux .inner {
    padding: 10px 25px;
    border-right: 1px solid rgba(34, 34, 34, .1);
    height: 100%;
    /* padding: 10px 25px; */
    /* background-color: white;
    border-radius: 20px; */
}

.contact-lux .col-lg-3:last-child .inner {
    border-right: 0;
}

@media all and (max-width:991px) {
    .contact-lux .col-lg-3 .inner {
        border-bottom: 1px solid rgba(34, 34, 34, .1);
        border-right: 0;
    }

    .contact-lux .col-lg-3:last-child .inner {
        border-bottom: 0;
    }
}

.contact-lux .innr .img-div {
    max-width: 180px;
    margin: 0 auto 0 auto;

}

.contact-lux h3 {
    font-size: 1.6em;
    text-align: center;
    color: #BD9746;
}

.contact-lux .innr p {
    color: #BD9746;
    /* opacity: .7; */
    font-size: 1rem;
    text-align: center;
}

.contact-lux .inner p {
    /* opacity: .7; */
    font-size: 1.2rem;
    text-align: center;
}

.contact-lux .innr p a {
    color: #BD9746;
    /* opacity: .7; */
    /* font-size: .9375rem; */
    font-size: 1.2rem;
    text-align: center;
}

.contact-lux .inner p a {
    color: black;
    opacity: .7;
    /* font-size: .9375rem; */
    font-size: 1.2rem;
    text-align: center;
}

/* Contact lux ended  */

/* services index started  */
.eight-services {
    /* background-color: #f2f2f2; */
    /* background: linear-gradient(to right, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), url(../img/grey5.jpg);
    background-size: cover;
    background-attachment: fixed; */
    color: white;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, .1)), url(../img/yellow-textures.png);
    background-size: cover;
    background-attachment: fixed;
}

.eight-services.change-one {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .9)), url(../img/black-gloden.webp);
    background-size: cover;
    background-attachment: fixed;
}

.eight-services.change-two {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/bg-gb-1.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.eight-services.change-three {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .9)), url(../img/bg-b-4.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.eight-services.change-four {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .8)), url(../img/new-patterns/1.webp);
    background-size: cover;
    background-attachment: fixed;
}

.eight-services svg {
    fill: #BD9746;
}

.eight-services .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    row-gap: 30px;
}

@media all and (max-width:991px) {
    .eight-services .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:767px) {
    .eight-services .grid {
        grid-template-columns: 1fr;
    }
}

.eight-services .grid>div {
    display: flex;
    gap: 10px;
}

.eight-services .grid>div h3 {
    font-size: 22px;
}

.eight-services .grid>div p {
    font-size: 15px;
    opacity: .7;
}

.eight-services .grid>div svg {
    width: 40px;
    height: 40px;
}

/* services index ended  */
/* logos carousel started  */
.logos-health {
    background-color: #BD9746;
    /* background-color: #f2f2f2; */
}

.logos-health .owl-stage {
    display: flex;
}

.logos-health .owl-stage-outer {
    overflow-x: hidden;
}

.logos-health .owl-nav,
.logos-health .owl-dots {
    display: none;
}

/* logos carousel endeed  */
/* foooter started  */
footer {
    padding: 10px 15px;
    background-color: black;
    color: #BD9746;
}

footer.footer-one {
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    color: black;
    font-size: 14px;
}

footer.footer-sec {
    background: none;
    padding: 0;
}

footer.footer-sec .sec-part {
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    color: black;
    font-size: 14px;
}

footer.footer-sec .first-part {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4)), url(../img/new-patterns/3.webp);
    background-size: cover;
}

footer.footer-sec .first-part .social-links a {
    font-size: 30px;
    color: #bd9746;
}

footer.footer-sec.footer-third .first-part .social-links a {
    color: black;
}

@media all and (min-width:992px) {
    footer.footer-one .sec-part p {
        margin-bottom: 0;
    }
}

@media all and (max-width:991px) {
    footer .sec-part .d-flex {
        flex-direction: column;
    }

    footer.footer-one .sec-part p {
        margin-bottom: 0;
    }

    footer.footer-one .sec-part p:nth-child(1) {
        margin-bottom: 16px;
    }
}

@media all and (max-width:992px) {}

footer p {
    margin: 0 0 .5em;
}

footer .first-part {
    background-color: #F2F2F2;
    padding: 30px 15px;

}

footer .first-part h3 {
    margin-bottom: 0;
    font-size: 1.5625rem;
}

footer .first-part ul {
    list-style: none;
    padding-left: 0;
}

footer .first-part a {
    color: black;
}

footer .first-part .heading-div {
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

footer .first-part .heading-div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 3px;
    background-color: #BD9746;
}

footer .first-part .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.footer-sec.footer-third {
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
}

.footer-sec.footer-third .first-part {
    background: inherit;
    color: black;
}

footer .first-part .entity {
    padding: 10px 0;
}

footer .first-part ul li {
    margin-bottom: 10px;
}

footer .first-part .social-icons {
    gap: 10px;
}

footer .first-part .social-icons span {
    font-size: 16px;
}

footer .fb-insta svg {
    stroke: black;
    transition: all .2s ease-in;
    width: 2rem;
    height: 2rem;
}

footer .social-links:hover svg {
    stroke: white;
}

/* foooter ended  */

/* contact map started  */
.contact-map {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4)), url(../img/new-patterns/3.webp);
    background-size: cover;
}


/* .contact-map.change-four {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4)), url(../img/new-patterns/3.webp);
    background-size: cover;
} */

.contact-map .time-book {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.contact-map .time-book:last-child {
    border: none;
}

/* .contact-map .time-book>div {
    width: 33.33%;

} */

.contact-map .time-book>div:nth-child(2) {
    text-align: center;

}

.contact-map .time-book>div:nth-child(3) {
    text-align: end;

}


.contact-map .time-book p {
    margin-bottom: 0;
}

/* .flexible-time {
    padding-top: 20px;
} */

.flexible-time {
    background-position: 0 0;
    background-image: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    background-size: 200% 100% !important;
    border-radius: 4px;
    color: white;
    box-shadow: 1px 1px 3px 1px rgba(34, 34, 34, .2);
    /* padding: 1.357em 1.786em; */
    padding: 1em 2em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    transition: all .3s ease-in;
}

.flexible-time span {
    transition: all .3s ease-in;
    display: inline-block;
}

.flexible-time:hover {
    transform: translateY(-3px);
    background-position: 99% 0;
}

.flexible-time:hover span {
    transform: scale(1.3);
}

.contact-map .time-book button {
    font-size: 15px;
    padding: 4px 10px;
}

.contact-map .grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
}

@media all and (max-width:850px) {
    .contact-map .grid {
        grid-template-columns: 1fr !important;
    }

    .contact-map {
        padding: 15px;
        /* margin-bottom: 15px; */
    }

    .contact-map .map-here {
        margin-bottom: 15px;
    }

    .contact-map .c-here {
        padding: 0 !important;
    }

    .contact-map .inr-wrap {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}

.contact-map .map-here iframe {
    width: 100%;
    min-height: 300px;
    max-height: 700px;
    height: 100%;
}

.contact-map .c-here {
    padding: 60px 0;
}

.contact-map .inr-wrap {
    margin-left: -20px;
    padding: 2.5em 40px;
    /* background-color: rgba(51, 51, 51, 1); */
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    color: black;
}

.contact-map input {
    height: 3.25em;
    background: #fff;
    color: #181818;
    outline: none;
    font: inherit;
    width: 100%;
    line-height: 1;
    width: 100%;
    display: block;
    padding: 1.125em 1.563em;
    /* background: transparent; */
    color: inherit;
    font-size: 1em;
}

.contact-map textarea {
    padding: 1.125em 1.563em;
}

.contact-map button {
    padding: 0.5em 0.8em;
    background-color: white;
    color: #bd9746;
    border: none;
    border-radius: 4px;
    transition: all .2s ease-in;
}

.contact-map .wrap {
    max-width: 93%;
    margin: 0 auto 0 0;
}

@media all and (min-width:768px) {
    .contact-map.change-four .wrap {
        max-width: 70%;
        margin: auto;
    }

    .contact-map.change-four .grid {
        grid-template-columns: 6fr 6fr;
    }

    .contact-map.change-four .c-here {
        padding: 0;
    }

    .contact-map.change-four .map-here {
        padding: 30px 0;
    }

    .contact-map.change-three .wrap {
        max-width: 80%;
        /* margin: auto; */
    }

    .contact-map.change-three .grid {
        grid-template-columns: 4fr 4fr;
    }

    .contact-map.change-three .wrap {
        width: 80%;
    }

    .contact-map.change-three .c-here {
        padding: 0;
    }

    .contact-map.change-three .map-here {
        padding: 30px 0;
    }

    .contact-map.change-two .wrap {
        /* max-width: 80%; */
        /* margin: auto; */
    }

    .contact-map.change-two .grid {
        grid-template-columns: 4fr 3fr 2fr;
    }

    .contact-map.change-two .social-icons {
        align-items: center;
        color: #BD9746;
        gap: 40px;
        position: relative;
    }

    .contact-map.change-two .social-icons::before {
        content: "";
        width: 2px;
        height: 25px;
        background-color: white;
        position: absolute;
        top: 50%;
        left: calc(50% - 5px);
        transform: translate(-50%, -50%);
    }

    .contact-map.change-two .social-icons::after {
        content: "";
        width: 2px;
        height: 25px;
        background-color: white;
        position: absolute;
        top: 50%;
        left: calc(50% + 5px);
        transform: translate(-50%, -50%);
    }

    .contact-map.change-two .social-icons a {
        font-size: 40px;
        color: #BD9746;
    }

    .contact-map.change-two .c-here {
        padding: 30px 0;
    }

    .contact-map.change-one .wrap {
        max-width: 80%;
        margin: 0 0 0 auto;
    }

    .contact-map.change-one .grid {
        grid-template-columns: 4fr 4fr;
    }

    .contact-map.change-one .c-here {
        padding: 0;
    }

    .contact-map.change-one .map-here {
        padding: 30px 0;
    }
}

@media all and (max-width:767px) {
    .contact-map .wrap {
        max-width: 100%;
    }
}

.contact-map button:hover {
    transform: translateY(-4px);
}

/* contact map ended  */
.committed-to .span-content {
    background-color: #333333;
    padding-bottom: 1.25em;
    padding-left: 20px;
    padding-right: 20px;
}

.committed-to .span-content span {
    padding: 30px;
    background-color: white;
    display: inline-block;
}

.committed-to .span-content span svg {
    width: 60px;
    height: 60px;
}

.error-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: transparent;
}

.popup-wrap {
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138) !important;
    border-radius: 5px;
    /*   box-shadow: 0 0 5px 5px rgba(0,0,0,0.2); */
    padding: 5px 10px;
    max-width: 500px;
    margin: auto;
}

.hide-popup {
    color: white;
    text-align: right;
    cursor: pointer;
    font-weight: bold;
}

.popup-text {
    padding: 10px 30px 30px;
    text-align: center;
    color: white;
}

.invalid-cap {
    display: none;
    color: red;
}

.index-header.teethw-header .wrap {
    margin: 0 auto 0 0;
}

.index-header.teethw-header p {
    font-size: 18px;
}

@media all and (max-width:991px) {
    .index-header.teethw-header p {
        text-align: center;
        /* font-size: 16px; */
    }

    .index-header.teethw-header .nitime-car * {
        text-align: center;
    }

    .index-header.teethw-header .wrap {
        margin: auto;
    }
}

.index-header.teethw-header h1 {
    color: #BD9746;
}

@media all and (min-width: 992px) {
    .index-header.teethw-header .item-1 .content.col-lg-6 .btn-div {
        visibility: visible;
    }
}

.index-header.teethw-header {
    background-color: #F2F2F2;
    color: white;
}

.index-header.teethw-header .para {
    max-width: 600px;

}

@media all and (max-width:991px) {
    .index-header.teethw-header .para {
        margin: auto;
    }
}

.teethw-second {
    padding: 40px 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .8)), url(../img/new-patterns/1.webp);
    background-size: cover;
    color: white;
}

.teethw-second .testimonial-car .owl-stage {
    display: flex;
}

.teethw-second .testimonial-car .owl-stage-outer {
    overflow-x: hidden;
}

.teethw-second .testimonial-car .owl-nav {
    display: none;
}

.teethw-second .video-testimonial {
    background: inherit;
}

.teethw-second .video-testimonial .img-div {
    padding-bottom: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
    height: auto !important;

}

.teethw-second .testimonial-car .owl-dots {
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.teethw-second .testimonial-car img {
    width: 100%;
}

.teethw-second .testimonial-car .owl-dot {
    border: none;
    transition: all .3s ease-in;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.teethw-second .testimonial-car .owl-dot.active {
    background-color: #BD9746;
}

.teethw-second .main-car-sports {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.teethw-second video {
    width: 100%;
}

.teethw-second .video-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teethw-second .first-content>* {
    margin-bottom: 15px;
}

.teethw-second .row {
    padding-top: 15px;
    align-items: center;
}

.teethw-second h3 {
    color: #BD9746;
}

@media all and (max-width:991px) {
    .teethw-second .col-lg-9 h3 {
        text-align: center;
    }

    .teethw-second .first-content p {
        text-align: center;
    }

}

.teethw-second p {
    font-size: 18px;
}

.teethw-second .row ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.teethw-second .row ul li {
    margin-bottom: 15px;
    font-size: 18px;
}

.teethw-second .row ul li:last-child {
    margin-bottom: 0;
}

.teethw-second .row .img-div {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.teethw-second.nitime ul li {
    display: flex;
    /* font-size: 20px;
    font-weight: 300; */
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.teethw-second.nitime ul li img {
    width: 60px;
    height: 60px;
}

.teethw-second .row .img-div img {
    object-fit: cover;
    height: 100%;
}

@media all and (max-width:991px) {
    .teethw-second .col-lg-9 {
        margin-bottom: 1rem;
    }

    .teethw-second .row .img-div {
        margin: auto;
    }

    .teethw-second.nitime h3,
    .teethw-second.nitime p {
        text-align: center;
    }
}


.faq-section {
    padding: 40px 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, .1)), url(../img/new-patterns/1.webp);
    /* background: url(../img/12.webp); */
    background-size: cover;
}

.faq-section.change {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .9)), url(../img/new-patterns/4.webp);
}

.faq-section .accordion-item {
    margin-bottom: 1rem;
}

#accordionExample {
    padding: 0 15px;
}

.faq-section button.accordion-button {
    /* background-color: #BD9746; */
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    color: white;
    display: block;
}

.faq-section .accordion-collapse {
    background-color: rgba(51, 51, 51, 1);
    color: white;
}

.faq-section button.accordion-button::after {
    transition: opacity .3s ease;
}

.faq-section button.accordion-button::after {
    background: none;
    font-family: 'Font Awesome 5 Free';
    content: "\f067";
    font-weight: 900;
    float: right;
    font-size: 12px;
    color: white;
    /* margin-top: 5px; */
}

.faq-section button.accordion-button:not(.collapsed)::after {
    font-family: 'Font Awesome 5 Free';
    content: "\f068";
    font-weight: 900;
    float: right;
    font-size: 12px;
    color: white;
    transform: rotate(0);
    /* margin-top: 5px; */
}

.faq-section button.accordion-button:focus {
    box-shadow: none;
}

.benefits-service {
    background: url(../img/background-4.jpg);
    background-size: cover;
    padding: 0;
}

.benefits-service .col-lg-6:not(.not-col) {
    padding: 0;
}

/* .benefits-service .book-visit .col-lg-6 {
    padding: initial;
} */

.benefits-service .col-lg-6.content {
    background-color: rgba(38, 38, 38, .9);
    color: white;
}

.benefits-service.contact-form .col-lg-6.content {
    background-image: linear-gradient(90deg, rgba(162, 113, 56, .99) 15%, rgba(248, 208, 89, .99), rgba(162, 113, 56, .99)), url(../img/index-header1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
}

.benefits-service.contact-form .col-lg-6.content h2 small {
    color: black;
}

.benefits-service.contact-form .invisible-custom {
    visibility: hidden;
}

@media all and (max-width:991px) {
    .benefits-service.contact-form .invisible-custom {
        display: none;
    }
}

.benefits-service .col-lg-6.content .content-inner {
    padding: 3.75em 2.75em;
    max-width: 700px;
    margin-left: auto;
}

@media all and (max-width:991px) {
    .benefits-service .col-lg-6.content .content-inner.book-visit {
        padding: 1.5em 1.5em;
    }
}

.benefits-service .col-lg-6.content .content-inner.book-visit {
    background-image: none;
}

.benefits-service .col-lg-6.content .content-inner.book-visit h2 {
    color: black;
}

.benefits-service .col-lg-6.content .content-inner.book-visit input:not([type='checkbox']) {
    height: 2.25em;
    padding: .525em .663em;
}

.benefits-service .col-lg-6.content .content-inner.book-visit textarea {
    padding: .525em .663em;
}

@media all and (max-width:767px) {
    .benefits-service .col-lg-6.content .content-inner * {
        text-align: center;
    }
}

.benefits-service .book-visit h2 small {
    color: #BD9746;
}

.benefits-service h2 {
    font-size: 3.5rem;
    /*line-height: .9;*/
    /*hash*/
    line-height: 1;
    /*MFU*/
    margin-bottom: 0.45em;
    color: #BD9746;
}

@media all and (max-width:991px) {
    .benefits-service h2 {
        line-height: 1.1;
        font-size: 2.5rem;
    }
}

@media all and (max-width:767px) {
    .benefits-service h2 {
        line-height: 1.1;
        font-size: 1.9rem;
    }
}

.benefits-service h2 small {
    font-size: 50%;
}

.benefits-service p,
.benefits-service h4 {
    /* font-family: sans; */
    line-height: 1.2em;
    margin-bottom: 1em;
    font-size: 16px;
}

.benefits-service p {
    font-size: 18px;
}

.benefits-service p strong {
    /* font-family: sans-headings; */
    color: #BD9746;
    font-size: 22px;
    font-family: headings;
    font-weight: normal;
}

.benefits-service h4 {
    font-weight: bold;
}

.benefits-service .col-lg-6.img-div img {
    object-fit: cover;
    height: 100%;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper .play-gif {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper .play-gif svg {
    width: 100px;
    height: 100px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}

.ascunde {
    display: none;
}

.smile-gdiv {
    background-color: rgba(51, 51, 51, 1);
    padding: 40px 15px;
}

.smile-gdiv .wrap {
    max-width: 800px;
    margin: auto;

}

.smile-gdiv .row {
    border-radius: 30px;
    border: 1px solid #BD9746;
    padding: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.smile-gdiv .row .col-lg-6 {
    padding: 0 15px;
}

.smile-gdiv .row .img-div {
    margin-bottom: 15px;
}

.smile-gdiv .row p {
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.smile-g2div {
    background-color: rgba(51, 51, 51, 1);
    padding: 40px 15px;
}

.smile-g2div .row {
    justify-content: space-between;
    /* margin-bottom: 16px; */
}

.smile-g2div .row .col-lg-3,
.smile-g2div .row .col-lg-4 {
    padding-bottom: 40px;
}

.gallery-insta {
    background: black;
    color: white;
}

.gallery-insta.change-four {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .9)), url(../img/new-patterns/3.webp);
    background-size: cover;
}

.gallery-insta .img-div {
    max-width: 185px;
    margin: auto;
}

.self-care {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .1)), url(../img/bg-g-1.webp);
    background-size: cover;
    padding: 75px 15px;
    /*border-radius: 0px 0px 125px 125px;*/
    /* margin-bottom: 35px; */
}

.self-care .btn-div {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

/* .self-care .btn-div a {
    display: inline-block;
    color: #2a221a;
    background-color: #fff;
    border-style: solid;
    border-width: 0;
    padding: 20px 75px 20px 74px;
    font-family: norm-med;
    border-radius: 5px 5px 5px 5px;
    font-size: 18px;
} */

.self-care .heading-div {
    padding-bottom: 30px;
}

.self-care .heading-div h2 {
    color: #BD9746;
    font-size: 54px;
    /* color: white; */
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
}

@media all and (max-width:767px) {
    .self-care .heading-div h2 {
        font-size: 1.9rem;
    }
}

.self-care .para-upr {
    max-width: 880px;
    margin: auto;
    padding-bottom: 20px;
}

.self-care .para-upr p {
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: .9rem;
}

.self-care .down-para {
    max-width: 880px;
    margin: auto;
}

.self-care .down-para p {
    text-align: center;
    color: #fff;
    font-family: norm;
    font-size: 29px;
}

.self-care .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 150px 0 60px;
    column-gap: 30px;
    row-gap: 100px;
}

.self-care .grid.grid-four {
    grid-template-columns: repeat(4, 1fr);
    padding: 70px 0 60px;
}

@media all and (max-width:1250px) {

    .self-care .grid.grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width:991px) {
    .self-care .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-handling {
        margin-top: 40px;
    }
}

@media all and (max-width:767px) {
    .self-care .grid {
        grid-template-columns: 1fr;
    }

    .self-care .grid.grid-four {
        grid-template-columns: 1fr;
    }
}

.self-care .entity .heading {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.self-care .entity .para {
    padding-bottom: 40px;
}

.self-care .entity .para p {
    font-size: 20px;
    color: white;
    /* font-family: norm; */
}

.self-care .entity .heading-main {

    display: flex;
    align-items: center;
    height: 80px;

}

.self-care .grid-four .entity .heading-main {

    display: flex;
    align-items: center;
    height: 120px;

}

.self-care .entity .heading h3 {
    /* font-family: circular-bold; */
    /* font-family: headings; */
    font-size: 30px;
    margin-bottom: 0;
}

.self-care .grid-four .entity .heading h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.self-care .entity {
    padding: 0 15px;
    /* background-color: white; */
    background: linear-gradient(90deg, #A27138 15%, #F8D059, #A27138);
    border-radius: 25px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .12);
}

.self-care .heading-div h2 {
    margin-bottom: 0;
}

.self-care .entity .main-svg {
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.self-care .entity .svg-div {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .23);
    border-radius: 100px;
    width: 205px;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -57px;
}

.self-care .entity .svg-div svg {
    width: 55px;
    height: 55px;
}

.self-care .entity .svg-div.brown {
    background-color: #8cc9dd;
}

.self-care .entity .svg-div {
    background-color: #fff;
}

/* .video-testimonial .wrap {
    max-width: 1200px;
    margin: auto;
} */
.video-testimonial {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .8)), url(../img/new-patterns/1.webp);
    background-size: cover;
    padding: 40px 15px;
}

.video-testimonial .row a {
    display: block;
    position: relative;
    border: 4px solid #BD9746;
}

.video-testimonial h2 {
    color: #BD9746;
    margin-bottom: 40px;
    font-size: 4.375rem;
}

@media all and (max-width:767px) {
    .video-testimonial h2 {
        font-size: 2.375rem;
    }
}

.video-testimonial .row .img-div {
    padding-bottom: 40px;
}

@media all and (min-width:992px) {
    .video-testimonial .row:nth-child(3) .img-div {
        padding-bottom: 0;
    }

    /* .video-testimonial .row:nth-child(1) .img-div {
        padding-bottom: 40px;
    } */
}

.video-testimonial .row a .dynamic-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-testimonial .row a .dynamic-icon span {
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    color: #fff;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.what-dimplants .col-lg-6 .dynamic-icon span i {
    position: relative;
    z-index: 1;
}

.waves-block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}


.waves {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(200, 163, 71, .4);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    /* right: -50px;
    bottom: -50px; */
    left: 0%;
    top: 0%;
    /* transform: translate(-50%, -50%); */
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        background: rgba(200, 163, 71, .4);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
        background: rgba(200, 163, 71, .5);
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        background: rgba(200, 163, 71, .6);
    }
}

.page-content {
    background: black;
    color: #BD9746;
}

.page-content h4 {
    color: white;
}

.page-content a {
    color: #BD9746;
    text-decoration: underline;
}

.withpatients {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .1)), url(../img/bg-g-1.webp);
    background-size: cover;

}

.withpatients .owl-stage {
    display: flex;
    position: relative;
}

.withpatients .with-patient-car {
    position: relative;
    padding: 0 50px;
}

.withpatients .owl-dots {
    display: none;
}

.withpatients .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.withpatients .owl-nav button {
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 25px;
    background: inherit;
    border: 1px solid white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.withpatients .owl-stage-outer {
    overflow-x: hidden;
}

.smile-g2div .row img {
    border: 4px solid #BD9746;
    border-radius: 5px;
}

/*.smile-g2div .wrap .row .col-lg-4 img,*/
/*.smile-g2div .wrap .row .col-md-6 img {*/
/*    border: 5px solid blue;*/
/*    border-radius: 5px;*/
/*}*/
.grecaptcha-badge {
    display: none !important;
}

.lux-australia.change-four.simple-img .wrap {
    max-width: 480px;
    margin: auto;
}

.lux-australia.change-four.simple-img .wrap .follow-us {
    position: relative;
    margin-top: 25px;
    bottom: 0;
    width: 100%;
}

.lux-australia.change-four.simple-img .testimonial-car .owl-dots {
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 15px;
}

.podcast-main {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .7)), url(../img/new-patterns/4.webp);
    background-size: cover;
    color: white;
}

.podcast-main a.flexible-time {
    display: flex;
    gap: 10px;
}

.podcast-main .buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.podcast-main a.flexible-time img {
    width: 30px;
    height: 30px;
}

.podcast-main .buttons a h3 {
    margin-bottom: 0;
    font-size: 20px;
}

.collab .collab-car .owl-stage {
    display: flex;
}

.collab .collab-car .owl-stage-outer {
    overflow-x: hidden;
}

.collab {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .8)), url(../img/new-patterns/1.webp);
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.collab .collab-car .owl-nav,
.collab .collab-car .owl-dots {
    display: none;
}