/*BLUE COLOR: #161c2f;*/
/*GOLDER COLOR: #cbae86;*/



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: norm;
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: rob-bold;
    src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: norm-med;
    src: url(../fonts/Roboto-Medium.ttf);
}

/* 
@font-face {
    font-family: circular;
    src: url(../fonts/circular-std-medium-500.ttf);
} */

@font-face {
    font-family: circular;
    src: url(../fonts/CircularStd-Medium.ttf);
}

@font-face {
    font-family: circular-bold;
    src: url(../fonts/CircularStd-Bold.ttf);
}

@font-face {
    font-family: links;
    src: url(../fonts/texgyreadventor-regular.otf);
}

@font-face {
    font-family: headings;
    src: url(../fonts/texgyreadventor-bold.otf);
}

body {
    font-family: norm;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    transition: all .5s ease-in;
}

body.body-nav {
    overflow: hidden;
    height: 100vh;
}

body.body-nav .navbar-toggler span {
    background-color: white;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: headings;
}

h1,
h2 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

@media all and (max-width:767px) {

    h1,
    h2 {
        font-size: 25px
    }
}

h1 em,
h2 em {
    font-style: normal;
    font-weight: 300;
    letter-spacing: .1em;
    line-height: 1;
}

a {
    text-decoration: none;
}

.wrap {
    max-width: 1600px;
    margin: auto;
}

article {
    padding: 75px 15px;
}

article h2 {
    margin-bottom: 30px;
}

.page-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 115px;
    padding: 5px 15px;
    z-index: 10;
    background: #161c2f;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px #cbae86;
    /* background-color: white; */
    color: #cbae86;
}

.page-header .main-nav a.nav-link {
    color: #cbae86;
}

.index-header .main-nav a.nav-link {
    color: #161c2f;
}

.index-header .page-header {
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.index-header .page-header.is-sticky {
    background: #161c2f;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px #cbae86;
}

/* .page-header .main-nav {
    padding: 20px 15px;
} */

@media all and (max-width:991px) {
    .page-header {
        height: 93px;
        padding: 0;
    }

    /* .page-header .main-nav {
        background: #F5F2EC;
    } */

}

@keyframes translateX {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.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;
    z-index: 100;
}

@media all and (max-width:991px) {
    .dropdown {
        display: block;
    }
}



.dropdown_menu {
    padding: 0;
    perspective: 1000px;
    z-index: -1;
    background: none;
    border: none;
}

@media all and (min-width:992px) {

    .dropdown:hover {
        /* background: #2980b9; */
        cursor: pointer;
    }

    .dropdown_menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 300px;
    }
}

.dropdown_menu li {
    display: none;
    color: #2A221A;
    background-color: #cbae86;
    padding: 10px 20px;
    font-size: 16px;
    opacity: 0;
}

/*ADDED BY MFU NOT HASH STARTS*/
.page-header.is-sticky a.nav-link {
    color: #cbae86;
}

.color-golden {
    color: #cbae86 !important;
}

.color-blue {
    color: #161c2f !important
}

/*ADDED BY MFU NOT HASH STARTS*/
.dropdown:hover .dropdown_menu li {
    display: block;
    position: relative;
    z-index: 10;
}


.dropdown_menu li a.dropdown-item:focus {
    color: white;
    background: inherit;
}

.dropdown_menu li:hover {
    background-color: #161c2f;
}


.dropdown_menu li:hover a {
    color: white;
    background: none;
}

.dropdown:hover .dropdown_menu--animated {
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.dropdown_menu--animated {
    display: none;
}

.dropdown_menu--animated li {
    display: block;
    opacity: 0;
}

/* .dropdown-menu li:first-child {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.dropdown-menu li:last-child {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
} */


.dropdown_menu-5 .dropdown_item-1 {
    transform-origin: top center;
    animation: translateX 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-2 {
    transform-origin: top center;
    animation: translateX 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-3 {
    transform-origin: top center;
    animation: translateX 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-4 {
    transform-origin: top center;
    animation: translateX 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-5 {
    transform-origin: top center;
    animation: translateX 300ms 300ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-6 {
    transform-origin: top center;
    animation: translateX 300ms 600ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-7 {
    transform-origin: top center;
    animation: translateX 300ms 750ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-8 {
    transform-origin: top center;
    animation: translateX 300ms 900ms ease-in-out forwards;
}

.banner {
    overflow: hidden;
}

.dropdown_menu-5 .dropdown_item-9 {
    transform-origin: top center;
    animation: translateX 300ms 1150ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-10 {
    transform-origin: top center;
    animation: translateX 300ms 1300ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-11 {
    transform-origin: top center;
    animation: translateX 300ms 1450ms ease-in-out forwards;
}

@media all and (min-width:992px) {
    .main-nav .navbar-nav a.nav-link {
        padding: 10px 30px;
    }
}


.khail-div {
    height: 115px;
}

@media all and (max-width:991px) {
    .khail-div {
        height: 86px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* .index-header .main-nav {
    background: inherit;
    border-radius: 0;
    box-shadow: none;
} */

/* .main-nav {
    background: #F5F2EC;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
} */

.index-header .banner-img {}

@media all and (max-width:991px) {
    .index-header .page-header {
        background: #161c2f;
        border-radius: 0 0 40px 40px;
        box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    }
}

.page-header.is-sticky {
    position: fixed;
    /* padding: 8px 0; */
    /* backdrop-filter: blur(10px); */
    animation: slideDown 0.35s ease-out;
    /* background: #F5F2EC; */
    z-index: 100;
}

/* .page-header.is-sticky .main-nav {
    background: #F5F2EC;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.index-header .page-header.is-sticky .main-nav {
    background: #F5F2EC;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
} */

.main-nav a.navbar-brand img {
    width: 80px;
}

.main-nav a.nav-link {
    color: #161c2f;
    font-size: 19px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.09px;
    font-family: links;
}

.main-nav .two-btns {
    display: flex;
    gap: 15px;
}

.main-nav .two-btns a:first-child {
    font-size: 17px;
    display: inline-block;
    /* font-weight: 500; */
    background-color: #2A221A;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #2A221A;
    padding: 7px 25px;
    color: white;
    border-radius: 5px;
}

.main-nav .two-btns a:last-child {
    font-size: 17px;
    display: inline-block;
    /* font-weight: 500; */
    fill: #cbae86;
    color: #cbae86;
    background-color: #161c2f;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #cbae86;
    padding: 7px 25px;
    border-radius: 5px;
}

.main-nav .two-btns a span {
    margin-right: 7px
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: #cbae86;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}

.navbar-toggler:hover span,
.navbar-toggler:focus span {
    background: #cbae86;
}

/* 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: rgba(44, 48, 103, 1);
    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;
}

.index-header {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: url(../img/index-header.webp);
    background-size: cover;
}

@media all and (max-width:991px) {
    .index-header {
        height: auto;
        /* background: none; */
    }
}

@media all and (min-width:767px) and (max-width:991px) {
    .index-header {
        background: url(../img/index-header-tab.webp);
        background-size: cover;
    }
}

@media all and (max-width:767px) {
    .index-header {
        background: none;
    }
}

.index-header .content-header .svg-div {
    padding-bottom: 30px;
}

.index-header .content-header .svg-div img {
    max-width: 278px;
}

@media all and (min-width:992px) {
    .index-header .content-header .svg-div img {
        max-width: 100%;
    }

    .index-header .content-header .btn-div {
        text-align: center;
    }
}

.index-header .content-header {
    padding: 15px;
    flex-grow: 1;

}

.index-header .content-header h1 {
    margin-bottom: 30px;
}

.index-header .content-header h1 span {
    color: #cbae86;
}

.index-header .content-header p {
    margin-bottom: 30px;
}

.index-header .content-header .wrap,
.index-header .content-header .row {
    height: 100%;
}

.index-header .content-header .row {
    align-items: center;
}

.index-header .content-header p {
    font-size: 26px;
    /* font-weight: 300; */
    line-height: 54px;
    text-align: center;
}

.index-header .content-header .btn-div button {
    background-color: #161c2f;
    border-style: solid;
    color: #cbae86;
    border-width: 0px 0px 0px 0px;
    padding: 10px 70px;
    font-size: 18px;
    border-radius: 5px;
}

.index-header .content-header .btn-div button svg {
    width: 23px;
    height: 23px;
}

.index-header .content-header .btn-div button span {
    /* display: inline-block; */
    margin-right: 10px;
}

@media all and (max-width:767px) {
    .index-header .content-header {
        padding: 10px;
        background-color: #cbae86;
    }

    .index-header .content-header h1 {
        font-size: 25px;
        color: white;
        text-align: center;
        margin-bottom: 5px;
    }

    .index-header .content-header .svg-div {
        display: none;

    }

    .index-header .content-header p {
        font-size: 20px;
        line-height: 23px;
        text-align: center;
        color: white;
        margin-bottom: 0;
    }

    .index-header .content-header .btn-div {
        display: none;
    }

    .index-header .content-header h1 span {
        color: #161c2f;
    }
}

@media all and (max-width:991px) {
    .main-nav .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 18px;
        z-index: 2;
        transition: all .3s ease-in;
    }

    body.body-nav .main-nav .navbar-toggler {
        top: 36px;

    }

    .navbar-collapse {
        /* background-color: rgba(0, 0, 0, 0.8); */
        display: flex;
        flex-direction: column;
        position: fixed;
        right: 0;
        width: 0;
        /* height: 101vh; */
        overflow-y: auto;
        padding: 0 15px;
        top: 0;
        padding-bottom: 15px;
        /* padding-top: 50px;
        padding-left: 30px;
        padding-right: 15px;
        padding-bottom: 15px; */
        /* width: 20em; */
        height: 100vh;
        transition: all .5s ease-in;
        /* box-shadow: 5px 0 0 #000; */
    }

    .navbar-collapse.collapsing {
        height: auto;
        /* width: 100vw; */
        -webkit-transition: right 0.3s ease;
        -o-transition: right 0.3s ease;
        -moz-transition: right 0.3s ease;
        transition: right 0.3s ease;
        right: -20.3em;
        height: 100vh;
    }

    .navbar-collapse.show {
        padding: 10px 0;
        width: 100vw;
        background-color: #161c2f;
        box-shadow: 0 0 3px 20px #161c2f;
        color: #cbae86;
        right: 0;
        z-index: 1;
        -webkit-transition: right 0.3s ease-in;
        -o-transition: right 0.3s ease-in;
        -moz-transition: right 0.3s ease-in;
        transition: right 0.3s ease-in;
    }

    .navbar-collapse:not(.show) {
        transition: all .5s ease-out;
    }

    .navbar-collapse.show .navbar-nav {
        width: 100%;
    }

    .navbar-collapse.show .navbar-nav a.nav-link {
        color: #cbae86;
        text-align: center;

    }

    .navbar-collapse.show .dropdown-menu {
        padding: 0;
    }

    .navbar-collapse.show .dropdown-menu li {
        background-color: white;
        color: #625548;
    }

    .navbar-collapse.show .dropdown-menu a {
        color: #625548;
        text-align: center;
    }

    .navbar-collapse .logo-div {
        width: 100%;
    }

    .navbar-collapse .logo-div img {
        width: 80px;
        padding: 26px 15px;
    }

    .page-header .main-nav .navbar-nav li.nav-item {
        /* border-bottom: 1px solid white; */
        position: relative;
    }

    .page-header .main-nav .navbar-nav li.nav-item::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        height: 1px;
        background-color: #cbae86;

    }

    .main-nav .two-btns {
        flex-direction: column;
        /* gap: .5rem; */
    }

    .main-nav .two-btns a:first-child {
        margin-top: .5rem;
    }

}

.family-dental {
    position: relative;
}

.family-dental::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 30%;
    height: calc(100% - 170px);
    /* border-radius: 300px 0px 0px 0px; */
    background-color: #cbae86;
}

.family-dental .small-para ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.family-dental .small-para ul li {
    display: flex;
    gap: 10px;
    color: #66696F;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
}

.family-dental .small-para ul img {
    width: 60px;
    height: 60px;
}

@media all and (max-width:1600px) {
    .family-dental::before {
        display: none;
    }
}

@media all and (max-width:767px) {
    .family-dental {
        padding: 50px 15px;
    }
}

.special-svg.svg-div {
    max-width: 180px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.family-dental .small-para p {
    color: #66696F;
    /* font-family: "Roboto", Sans-serif; */
    font-size: 20px;
    font-weight: 300;
}

.special-svg.svg-div::before,
.special-svg.svg-div::after {
    content: "";
    position: relative;
    width: 60px;
    height: 1px;
    display: inline-block;
    background-color: #cbae86;
}

.family-dental h2 {
    margin-bottom: 30px;
    color: #cbae86;
}

.special-svg.svg-div svg {
    width: 16px;
    height: 16px;
}

.family-dental .heading-div {
    max-width: 525px;
}

.family-dental .small-para {
    max-width: 525px;
}

.family-dental .large-para p {
    font-size: 24px;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 30px;
}

.family-dental .img-div img {
    max-width: 700px;
    border-radius: 0px 0px 300px 0px;
}

.family-dental .dynamic-img {
    position: absolute;
    left: -100px;
    bottom: -50px;
}

.family-dental .dynamic-img img {
    max-width: 200px;
    border-radius: 0px 0px 80px 0px;
}

@media all and (max-width:1290px) {
    .family-dental .dynamic-img {
        left: 0;
        bottom: -98px;
    }
}

.family-dental .inner {
    position: relative;
    padding: 100px 0;
}

@media all and (max-width:767px) {
    .family-dental .inner {
        padding-top: 30px;
        margin-bottom: 30px;
    }
}



.family-dental .inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 300px 0px 0px 0px;
    background-color: #cbae86;
}

@media all and (max-width:767px) {
    .family-dental .inner {
        margin-bottom: 30px;
    }

    .family-dental .inner::before {
        display: none;
    }
}

.puts-need {
    position: relative;
    color: white;
    background: url(../img/team-bg-index.webp);
    background-size: cover;
}

@media all and (max-width:767px) {
    .puts-need {
        padding: 50px 15px;
    }
}

.puts-need h2 {
    font-size: 40px;
}

@media all and (max-width:767px) {
    .puts-need h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.puts-need .img-divs {
    display: flex;
    gap: 10px;
}

.puts-need .img-divs img {
    object-fit: cover;
    height: 100%;
}

/* .puts-need .img-div img {
    flex-grow: 1;
} */

.puts-need::before {
    content: '';
    background: linear-gradient(0deg, #cbae86 70%, rgb(255 255 255 / 0%) 65%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: calc(100% - 200px);
}

.puts-need .team-car .col-lg-5 {
    align-self: center;
}

@media all and (max-width:991px) {
    .puts-need::before {
        display: none;
    }
}

.puts-need .wrap {
    max-width: 100%;
}

.puts-need .owl-stage {
    display: flex;
}

.puts-need .owl-nav,
.puts-need .owl-dots {
    display: none;
}

.puts-need .inner {
    margin-left: -130px;
}

@media all and (max-width:991px) {
    .puts-need .inner {
        margin-left: 0;
    }

    .puts-need .img-divs {
        margin-left: -20px;
    }
}

.puts-need .special-svg.svg-div svg {
    fill: white;
}

.puts-need .btn-div {
    padding-top: 30px;
}

@media all and (max-width:767px) {
    .puts-need .btn-div {
        display: flex;
        justify-content: center;
    }
}

.puts-need .btn-div a {
    color: #161c2f;
    background-color: #cbae86;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 105px 20px 105px;
    font-size: 18px;
    font-family: norm-med;
}

.puts-need h2 {
    margin-bottom: 30px;
}

.puts-need p {
    font-size: 20px;
}

/* .puts-need .item {
    width: 400px;
} */
.bg-simple-div {
    background-color: #ECE8E2;
    /* padding: 10px; */
    height: 40px;
}

.bg-simple-div.white {
    background-color: white;
    /* padding: 10px; */
    /* height: 40px; */
}

.bespoke-beautiful {
    padding: 85px 15px;
    background-color: #cbae86;
}

@media all and (max-width:767px) {
    .bespoke-beautiful {
        padding: 50px 15px;
    }
}

.bespoke-beautiful .upr-para {
    max-width: 800px;
    margin: auto
}

.bespoke-beautiful .upr-para p {
    font-size: 27px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 0;
}

@media all and (max-width:767px) {
    .bespoke-beautiful .upr-para p {
        font-size: 22px;
    }
}

.bespoke-beautiful .grid {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    row-gap: 50px;
    justify-content: center;
}

@media all and (max-width:991px) {
    .bespoke-beautiful .grid {
        grid-template-columns: repeat(2, 1fr);
        place-content: center;
    }
}

/* 
@media all and (max-width:992px) {
    .bespoke-beautiful .grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media all and (max-width:767px) {
    .bespoke-beautiful .grid {
        grid-template-columns: 1fr;
    }
}

.bespoke-beautiful .svg-div svg {
    width: 3em;
    height: 3em;
    fill: white;
}

.bespoke-beautiful .svg-div {
    /* padding: 30px; */
    width: 5em;
    height: 5em;
    margin: -92px auto 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
}

.bespoke-beautiful .main-svg {
    padding-bottom: 30px;
}

.bespoke-beautiful .entity:nth-child(2n) .svg-div {
    background-color: #161c2f;
}

.bespoke-beautiful .entity:nth-child(2n+1) .svg-div {
    background-color: #161c2f;
}

.bespoke-beautiful .entity {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 60px 25px 25px 25px;
    background-color: white;
    border-radius: 25px;
    transition: all 0.5s;
}

.bespoke-beautiful .entity:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.bespoke-beautiful h3 {
    white-space: wrap;
    font-family: rob-bold;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    color: #2A221A;
}

.bespoke-beautiful h3 a {
    color: #2A221A;
}

.bespoke-beautiful .entity p {
    font-size: 20px;
    color: #66696f;
    font-family: circular;
}

.bespoke-beautiful .btn-center {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.bespoke-beautiful .btn-center button {
    background-color: #161c2f;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 95px 20px 95px;
    color: white;
    border-radius: 5px;
    font-family: norm-med;
    font-size: 18px;
}

@media all and (max-width:767px) {
    .bespoke-beautiful .btn-center button {
        padding: 10px 30px;
    }
}

/* Contact lux started  */
.contact-lux {
    background-color: #161c2f;
    padding: 100px 15px;
    border-radius: 125px 125px 0px 0px;
}

.contact-lux .btn-wkhra {
    padding: 40px;
}

.contact-lux .btn-wkhra button {
    color: #161c2f;
    background-color: #cbae86;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 75px 20px 74px;
    font-size: 18px;
    font-family: norm-med;
}

.contact-lux .contact-map h3 {
    color: #161c2f;
    font-size: 1.75rem;
    text-align: start;
}

.contact-lux .contact-map {
    background: inherit;
    padding: 0;
    border-radius: 0;
}

.contact-lux .contact-map h2 {
    max-width: 100%;
}

@media all and (max-width:767px) {
    .contact-lux {
        padding: 50px 15px;
        border-radius: 50px 50px 0px 0px;
    }
}

.contact-lux h2 {
    text-align: center;
    max-width: 700px;
    color: #2A221A;
}

/* .contact-lux h2 b {
    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 .upr-para {
    font-size: 27px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 30px;
    max-width: 800px;

}

@media all and (max-width:767px) {
    .contact-lux .upr-para {
        font-size: 20px;
    }
}

.contact-lux .innr {
    padding: 10px 25px;
    /* padding: 10px 25px; */
    background-color: white;
    border-radius: 20px;
    border: 2px solid #cbae86;
    box-shadow: 0 3px 10px rgba(203, 174, 134, 0.9);
}

@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: 120px;
    margin: 0 auto 15px auto;

}

.contact-lux h3 {
    font-family: norm;
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
    color: #161c2f;
    text-align: center;
}

.contact-lux .innr p {
    font-size: 16px;
    color: #66696f;
    font-family: circular;
    text-align: center;
}

.contact-lux .inner p {
    font-size: 16px;
    color: #66696f;
    font-family: circular;
    text-align: center;
}

.contact-lux .innr p a {
    font-size: 16px;
    color: #66696f;
    font-family: circular;
    text-align: center;
}

/* Contact lux ended  */
footer {
    background-color: #cbae86;
    color: #161c2f;
    padding: 10px 15px;
}

footer p {
    color: #161c2f;
    /* font-family: "Roboto", Sans-serif; */
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

.smile-header .content-header {
    margin-top: -30px;
    padding: 150px 15px;
    background-color: #cbae86;
}

.smile-header.about-header .content-header {
    padding-top: 75px;
    padding-bottom: 0;
}

.smile-header.about-header.nitime-header .content-header {
    padding: 70px 15px;
}

.smile-header h1 {
    font-size: 35px;
    color: #161c2f;
}

.smile-header h2 {
    font-size: 14px;
    /* font-weight: 300; */
    line-height: 51px;
    letter-spacing: 9px;
    font-family: circular;
    margin: 0;
    padding: 10px 0;
    color: #161c2f;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media all and (max-width:767px) {
    .smile-header h2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.smile-header h2 .line-white {
    width: 250px;
    background-color: #161c2f;
    height: 1px;
}

.before-after {
    padding: 0 15px;
}

.before-after .wrap {
    max-width: 1400px;
}

.before-after .row {
    padding: 70px 0;
    justify-content: space-between;
}

.before-after .img-divs {
    display: flex;
    /* gap: 20px; */

}

.before-after .content {
    padding: 10px;
}

.before-after .content p {
    color: #252F42;
    /* font-family: "Roboto", Sans-serif; */
    font-size: 20px;
}

.before-after .img-divs .img-div {
    padding: 10px;
    position: relative;
    /* border: 1px solid; */
}

.before-after .img-divs .img-div img {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #DDDDDD;
}

.before-after .img-divs .img-div:nth-child(2):before {
    content: 'After';
    position: absolute;
    left: 10px;
    bottom: 20px;
    z-index: 0;
    padding: 10px 20px;
    background: rgb(58 57 68 / 40%);
    color: #fff;
}

.before-after .img-divs .img-div:nth-child(1):before {
    content: 'Before';
    position: absolute;
    left: 10px;
    bottom: 20px;
    z-index: 0;
    padding: 10px 20px;
    background: rgb(58 57 68 / 40%);
    color: #fff;
}

@media all and (max-width:991px) {

    .before-after .row .col-lg-5:nth-child(1),
    .before-after .row .col-lg-4:nth-child(1) {
        margin-bottom: 70px;
    }

    .before-after .row:last-child .col-lg-5:nth-child(1),
    .before-after .row:last-child .col-lg-4:nth-child(1) {
        margin-bottom: 0;
    }
}

.before-after .inner {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
    padding: 25px 25px;
    height: 100%;
}

.before-after .btn-div {
    padding: 40px 0 70px 0;
    display: flex;
    justify-content: center;
}

.before-after .btn-div button {
    color: #FFFFFF;
    background-color: #161c2f;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 75px 20px 75px;
    font-size: 18px;
    border-radius: 5px;
    font-family: norm-med;
}

.services-header {
    background: url(../img/treatments-header-v1.webp);
    background-size: cover;
    background-position: right;
}

@media all and (max-width:767px) {
    .services-header {
        background: url(../img/treatments-header-v1-mb.webp);
    }
}

.services-header .content-header {
    padding: 120px 15px;
}

.services-header .content-header h2 {
    font-size: 14px;
    /* font-weight: 300; */
    line-height: 51px;
    letter-spacing: 9px;
    font-family: circular;
    margin: 0;
    padding: 10px 0;
    color: #161c2f;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media all and (max-width:767px) {
    .services-header .content-header h2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.services-header .content-header h2 .line-white {
    width: 250px;
    background-color: #161c2f;
    height: 1px;
}

.services-header .content-header h1 {
    font-size: 54px;
    /* font-weight: 700; */
    color: #161c2f;
}

.dramatic-radiant {
    background-color: #FBF9F6;
    padding: 70px 15px;
}

@media all and (max-width:767px) {
    .dramatic-radiant {
        padding: 50px 15px;
    }
}

.dramatic-radiant .heading-div {
    max-width: 900px;
    margin: auto;
}

.dramatic-radiant .heading-div h2 {
    font-size: 41px;
    margin-bottom: 30px;
    color: #2A221A;
    line-height: 1;
    text-align: center;
}

.dramatic-radiant .para-div {
    max-width: 825px;
    margin: auto;
}

.dramatic-radiant .para-div p {
    text-align: center;
    color: #66696F;
    /* font-family: "Roboto", Sans-serif; */
    line-height: 1.5;
    font-size: 20px;
}

.dramatic-radiant .img-div {
    max-width: 700px;
    margin: auto;
}

.dramatic-radiant .video-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dramatic-radiant .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;
}

.dramatic-radiant .play-button-wrapper .play-gif {
    cursor: pointer;
    pointer-events: auto;
}

.dramatic-radiant .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;
}

.faq-section {
    padding: 90px 15px;
}



.faq-section h2 {
    font-size: 39px;
    font-weight: 700;
    color: #cbae86;
    line-height: 1;
    margin-bottom: 30px;
    text-align: center;
}

@media all and (max-width:767px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-section h2 {
        font-size: 25px;
    }
}

.faq-section .upper-para {
    text-align: center;
    font-size: 22px;
    color: #2A221A;
    line-height: 1;
    margin-bottom: 30px;
}

.faq-section .accordion-item {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #d5d8dc;
}

.faq-section h2.accordion-header {
    margin-bottom: 0;
}

.faq-section h2.accordion-header {
    font-family: rob-bold;
}

.faq-section button.accordion-button {
    font-size: 24px;
    /* font-weight: 400; */
    letter-spacing: -0.96px;
    color: #2A221A;
    line-height: 1;
    font-family: norm;
    font-weight: bold;
}



.faq-section .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.faq-section .accordion-body p {
    font-size: 20px;
    line-height: 1.5;
    color: #66696F;
}

@media all and (max-width:767px) {
    .faq-section button.accordion-button {
        font-size: 20px;
    }

    .faq-section .accordion-body p {
        font-size: 17px;
    }
}

.faq-section button.accordion-button:focus {
    box-shadow: none;
    background: none;
}

.faq-section button.accordion-button:not(.collapsed)::after {
    background: url(../img/minus.svg);
    background-size: 20px 20px;
    float: right;
    font-size: 12px;
    color: white;
    transform: rotate(0);
    /* margin-top: 5px; */
}

.faq-section button.accordion-button::after {
    background: url(../img/plus.svg);
    float: right;
    font-size: 12px;
    color: white;
    transition: opacity .3s ease;
    /* margin-top: 5px; */
}

.benefits-services {
    background-color: #231C15;
    padding: 90px 15px;
    color: white;
}

.benefits-services h2 {
    font-size: 54px;
    text-align: center;
    color: white;
    line-height: 1;
    margin-bottom: 30px;
}

@media all and (max-width:767px) {

    .benefits-services {
        padding: 50px 15px;
    }

    .benefits-services h2 {
        font-size: 25px;
    }
}

.benefits-services .upper-para {
    max-width: 880px;
    margin: auto;
}

.benefits-services .upper-para p {
    text-align: center;
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 20px;
}

.benefits-services .ul-div {
    max-width: 1024px;
    margin: auto;
}

.benefits-services .ul-div ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.benefits-services .ul-div li {
    font-size: 20px;
    display: flex;
    font-weight: 300;
    letter-spacing: 0px;
    color: #FFFFFF;
    padding-bottom: calc(20px/2);
    position: relative;
    /* padding-left: 1.5em; */
}

.benefits-services .ul-div li span img {
    width: 18px;
    height: 18px;
}

.benefits-services .ul-div li b {
    font-family: norm-med;
}

.benefits-services .ul-div li span {
    padding-right: 16px;
}

.benefits-services .btn-div {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.benefits-services .btn-div button {
    color: #2A221A;
    background-color: #FBF9F6;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 75px 20px 74px;
    font-size: 18px;
    font-family: norm-med;
}

.contact-map {
    background-color: #161c2f;
    padding: 90px 15px;
    border-radius: 125px 125px 0px 0px;
}

.contact-map h2 {
    font-size: 48px;
    line-height: 46px;
    color: #cbae86;
    margin-bottom: 30px;
    text-align: center;
}


@media all and (max-width:767px) {
    .contact-map {
        padding: 50px 15px;
        border-radius: 50px 50px 0px 0px;
    }

    .contact-map h2 {
        font-size: 25px;
    }
}

.contact-map .time-book {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #161c2f;
}

.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;
}

.contact-map .time-book button {
    font-size: 15px;
    padding: 4px 10px;
}

.contact-map .grid {
    display: grid;
    grid-template-columns: 8fr 3fr;
}

@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: #cbae86;
    border-radius: 0 0 50px 0;
    color: #161c2f;
}

.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: 1200px;
    margin: auto;
}

@media all and (max-width:767px) {
    .contact-map .wrap {
        padding: 10px 0;
    }
}

.contact-map button:hover {
    transform: translateY(-4px);
}

/* contact map ended  */
.dramatic-radiant.composite .para-div p:last-child {
    margin-bottom: 50px;
}

.dramatic-radiant.composite .para-div:last-child p {
    margin-bottom: 1rem;
}

/* .dramatic-radiant.composite .para-div p {
    margin-bottom: 0;
} */
.long-lasting {
    position: relative;
    padding: 100px 15px;
}

.long-lasting::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 30%;
    height: calc(100% - 200px);
    /* border-radius: 300px 0px 0px 0px; */
    background-color: #cbae86;
}

@media all and (max-width:1600px) {
    .long-lasting::before {
        display: none;
    }
}

.long-lasting .inner {
    position: relative;
    padding: 100px 0;
}

.long-lasting .inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 300px 0px 0px 0px;
    background-color: #cbae86;
}

.long-lasting .inner img {
    border-radius: 0px 0px 0px 200px;
    position: relative;
    width: calc(100% - 100px);
}

.long-lasting .inner .img-div {
    margin-left: -50px;
}

.long-lasting .heading {
    max-width: 500px;
}

.long-lasting h2 {
    font-size: 39px;
    color: #cbae86;
    line-height: 1;
    margin-bottom: 30px;
}

.long-lasting .ul-div {
    max-width: 500px;
}

.long-lasting .ul-div ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.long-lasting .ul-div ul li {
    display: flex;
    gap: 22px;
    font-size: 20px;
    color: #252F42;
    padding-bottom: calc(20px/2);
    letter-spacing: 0px;
}

.long-lasting ul li img {
    width: 18px;
    height: 18px;

}

.contact-section {
    padding-top: 75px;
}

.contact-section .inner .d-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section .row {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.12)
}

@media all and (max-width:767px) {
    .contact-section .row {
        padding: 30px 15px;
    }

    .contact-section .row .col-lg-5 {
        padding: 0;
    }
}

.contact-section .nav.nav-pills {
    background-color: #cbae86;
    border-radius: 30px;
    padding: 10px;
}

.contact-section .nav.nav-pills button.nav-link {
    border-radius: 17px;
    color: white;
}

.contact-section .nav.nav-pills button.nav-link.active {
    color: #2A221A;
    background-color: white;
}

.contact-section .inner {
    background: url(../img/contact-bg.jpg);
    height: 100%;
    background-size: cover;
    border-radius: 30px;
    padding: 30px;
}

.contact-section .inner .upper-para {
    font-size: 20px;
}

.contact-section .entity {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-section .entity span svg {
    width: 30px;
    height: 30px;
}

.contact-section .entity p {
    color: white;
    margin-bottom: 0;
    font-size: 17px;
}

.contact-section form .checks-div>.form-check {
    flex-grow: 1;
}

.contact-section form input.form-control {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
}

.contact-section form .form-label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #161c2f;
}

.contact-section form .form-check-label {
    font-size: 16px;
    color: #161c2f;
}

/* .contact-section form .form-check-input[type=radio] {
    vertical-align: middle;
} */
.contact-section form .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-section form input.form-control:focus {
    box-shadow: none;
}

.contact-section form textarea.form-control {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
}

.contact-section form textarea.form-control:focus {
    box-shadow: none;
}

.contact-section form .btn-div button {
    background-color: #cbae86;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 95px 20px 95px;
    color: white;
    border-radius: 5px;
    font-family: norm-med;
    font-size: 18px;
}

.contact-section p.text-center.upper-para {
    font-size: 24px;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 30px;
}

.invalid-cap {
    display: none;
    color: red;
}

.ascunde {
    display: none;
}

.page-content .font-weight-bold {
    font-weight: bold;
}

.text-whiteMFU {
    color: white !important;
}

.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: #161c2f !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;
}

.about-header.nitime-header .nitime-car .owl-stage {
    display: flex;
}

.about-header.nitime-header .nitime-car .owl-stage-outer {
    overflow-x: hidden;
}

.about-header.nitime-header .owl-nav {
    display: none;
}

.about-header.nitime-header .btn-div {
    margin-top: 20px;
}

.about-header.nitime-header h2 {
    font-size: 24px;
    /* font-weight: 700; */
    font-family: headings;
    letter-spacing: 1px;
}

.about-header.nitime-header p {
    font-family: norm;
    font-size: 18px;
    color: white;
}

.about-header.nitime-header .btn-div a {
    color: #2A221A;
    background-color: #FBF9F6;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    padding: 20px 50px;
    border-radius: 5px;
    font-size: 18px;
    font-family: norm-med;
}

.self-care {
    background-color: #161c2f;
    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 {
    font-size: 54px;
    color: white;
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
}

.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: #66696f;
    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;
    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-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container video {
    width: 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: #cbae86;
    /* stroke: #B0653C;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9; */
}