@charset "utf-8";


@font-face {
    font-family: 'CabinetGrotesk-Light';
    src: url('../fonts/CabinetGrotesk-Light.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Light.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Light.eot') format('eot'),
        url('../fonts/CabinetGrotesk-Light.ttf') format('ttf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GeneralSans-Light';
    src: url('../fonts/GeneralSans-Light.woff2') format('woff2'),
        url('../fonts/GeneralSans-Light.woff') format('woff'),
        url('../fonts/GeneralSans-Light.eot') format('eot'),
        url('../fonts/GeneralSans-Light.ttf') format('ttf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    /* font-family */
    --primary-font: "futura-pt", sans-serif;
    ;
    --secondary-font: "futura-pt", sans-serif;

    /* color */
    --pink: #C882B1;
    --lightpink: #FFEAEF;
    --darkpink: #DB0095;
    --white: #fff;
    --black: #000;


    /* size */
    --font-40: 40px;
    --font-32: 32px;
    --font-22: 22px;
    --font-24: 24px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 14px;

    /* space */
    --space-10: 10px;
    --space-20: 20px;
    --space-30: 30px;
    --space-40: 40px;
    --space-50: 50px;
    --space-60: 60px;
    --space-70: 70px;
    --space-80: 80px;
    --space-90: 90px;
    --space-100: 100px;
    --space-120: 120px;
}


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

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    /* 1 */
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

progress {
    vertical-align: baseline;
}

template,
[hidden] {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
    text-decoration: none;
    outline: none;
}

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: var(--black);
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

button,
input,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: bold;
}

button,
input,
select {
    /* 2 */
    overflow: visible;
}

button,
input,
select,
textarea {
    /* 1 */
    margin: 0;
}

button,
select {
    /* 1 */
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

textarea {
    overflow: auto;
}

/** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/** Correct the odd appearance of search inputs in Chrome and Safari. */
[type="search"] {
    -webkit-appearance: textfield;
}

/** Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X. */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote *:last-child {
    margin: 0;
}

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

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='url'],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 1px solid #d1d1d1;
    border-radius: .4rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: .6rem 1.0rem;
    width: 100%;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='tel']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
    border: 1px solid #f2a1ad;
    outline: 0;
}

textarea {
    padding-bottom: .6rem;
    padding-top: .6rem;
}

label,
legend {
    font-size: 16px;
    display: block;
    margin-bottom: .5rem;
    color: #302C2E;
}

fieldset {
    border-width: 0;
    padding: 0;
}

input[type='checkbox'],
input[type='radio'] {
    display: inline;
}

input[type='submit']:focus {
    outline: none;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: rgba(47, 45, 45, 0.7);
}

input::-moz-placeholder,
select::-moz-placeholder {
    color: rgba(47, 45, 45, 0.7);
}

input:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: rgba(47, 45, 45, 0.7);
}

input:-moz-placeholder,
select:-moz-placeholder {
    color: rgba(47, 45, 45, 0.7);
}

input:focus {
    outline: none;
}

dl,
ol,
ul {
    margin-top: 0;
    padding-left: 0;
}

dl dl ul,
dl ol,
ol dl ul,
ol ol,
ul dl ul,
ul ol {
    font-size: 90%;
    margin: 1.5rem 0 1.5rem 3.0rem;
}

dl {
    list-style: none;
}

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

li {
    padding-left: 0px;
    background-repeat: no-repeat;
    background-position: 0 8px;
    background-size: 7px;
    list-style: disc;
    font-family: 'futura-pt', sans-serif;
}

ol {
    list-style: decimal inside;
}

dt,
dd,
li {
    margin-bottom: 10px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1rem;
}

input:last-child,
textarea:last-child,
select:last-child,
fieldset:last-child {
    margin-bottom: 0;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 0.8rem;
}

pre:last-child,
blockquote:last-child,
dl:last-child,
figure:last-child,
table:last-child,
p:last-child,
ul:last-child,
ol:last-child,
form:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
}

.flex,
.flex-row,
.flex-column,
.flex-start,
.flex-end,
.flex-center,
.flex-stratch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-stratch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .background-image img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        height: 100%;
    }
}

.clearfix {
    zoom: 1;
}

.clearfix:after,
.clearfix:before {
    content: '';
    display: table;
}

.clearfix:after {
    clear: both;
}

body,
html {
    margin: 0px;
    padding: 0px;
    position: relative;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin: 0px;
    margin-bottom: 20px;
    font-family: var(--secondary-font);
}

h1 {
    font-size: 48px;
    line-height: 50px;
}

h2 {
    font-size: 36px;
    line-height: 36px;
}

h3 {
    font-size: 32px;
    line-height: 32px;
}

h4 {
    font-size: 26px;
    line-height: 30px;
}

h5 {
    font-size: 22px;
    line-height: 28px;
}

h6 {
    font-size: 16px;
    line-height: 21px;
}

h2 span {
    color: var(--pink);
}
.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-10 {
    padding-bottom: var(--space-10) !important;
}

.pb-20 {
    padding-bottom: var(--space-20) !important;
}

.pb-30 {
    padding-bottom: var(--space-30) !important;
}

.pb-40 {
    padding-bottom: var(--space-40) !important;
}

.pb-50 {
    padding-bottom: var(--space-50) !important;
}

.pb-60 {
    padding-bottom: var(--space-60) !important;
}

.pb-70 {
    padding-bottom: var(--space-70) !important;
}

.pb-80 {
    padding-bottom: var(--space-80) !important;
}

.pb-90 {
    padding-bottom: var(--space-90) !important;
}

.pb-100 {
    padding-bottom: var(--space-100) !important;
}

.pb-120 {
    padding-bottom: var(--space-120) !important;
}

.pt-10 {
    padding-top: var(--space-10) !important;
}

.pt-20 {
    padding-top: var(--space-20) !important;
}

.pt-30 {
    padding-top: var(--space-30) !important;
}

.pt-40 {
    padding-top: var(--space-40) !important;
}

.pt-50 {
    padding-top: var(--space-50) !important;
}

.pt-60 {
    padding-top: var(--space-60) !important;
}

.pt-70 {
    padding-top: var(--space-70) !important;
}

.pt-80 {
    padding-top: var(--space-80) !important;
}

.pt-90 {
    padding-top: var(--space-90) !important;
}

.pt-100 {
    padding-top: var(--space-100) !important;
}

.pt-120 {
    padding-top: var(--space-120) !important;
}


.mt-10 {
    margin-top: var(--space-10) !important;
}

.mt-20 {
    margin-top: var(--space-20) !important;
}

.mt-30 {
    margin-top: var(--space-30) !important;
}

.mt-40 {
    margin-top: var(--space-40) !important;
}

.mt-50 {
    margin-top: var(--space-50) !important;
}

.mt-60 {
    margin-top: var(--space-60) !important;
}

.mt-70 {
    margin-top: var(--space-70) !important;
}

.mt-80 {
    margin-top: var(--space-80) !important;
}

.mt-90 {
    margin-top: var(--space-90) !important;
}

.mt-100 {
    margin-top: var(--space-100) !important;
}

.mt-120 {
    margin-top: var(--space-120) !important;
}


.mb-10 {
    margin-bottom: var(--space-10) !important;
}

.mb-20 {
    margin-bottom: var(--space-20) !important;
}

.mb-30 {
    margin-bottom: var(--space-30) !important;
}

.mb-40 {
    margin-bottom: var(--space-40) !important;
}

.mb-50 {
    margin-bottom: var(--space-50) !important;
}

.mb-60 {
    margin-bottom: var(--space-60) !important;
}

.mb-70 {
    margin-bottom: var(--space-70) !important;
}

.mb-80 {
    margin-bottom: var(--space-80) !important;
}

.mb-90 {
    margin-bottom: var(--space-90) !important;
}

.mb-100 {
    margin-bottom: var(--space-100) !important;
}

.mb-120 {
    margin-bottom: var(--space-120) !important;
}


.grid-layout {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px
}

.grid-layout.column-1 .item {
    width: calc(100% - 20px);
    margin: 0 10px;
}

.grid-layout.column-2 .item {
    width: calc(50% - 50px);
    margin: 0 25px;
}

.grid-layout.column-3 .item {
    width: calc(33% - 20px);
    margin: 0 10px;
}

.grid-layout.column-4 .item {
    width: calc(25% - 20px);
    margin: 0 10px;
}

.primary_btn {
    font-size: var(--font-16);
    line-height: 26px;
    background: var(--white);
    color: var(--black);
    padding: 9px 25px 8px 25px;
    min-width: 153px;
    outline: 0 !important;
    box-shadow: none !important;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 50px;
    line-height: normal;
    height: 46px;
    text-decoration: none;
}

a {
    text-decoration: underline;
    cursor: pointer;
    color: var(--darkpink);
    transition: all 0.3s ease-in-out;
}

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

p {
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 32px;
    color: var(--black);
}

img {
    max-width: 100%;
    height: auto;
}

.img-responsive {
    max-width: 100%;
    display: block;
    height: auto;
    margin: 0 auto;
}

.gform_wrapper .validation_message {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-top: 0px;
    color: #F00;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background: none !important;
    border: none !important;
}

.ie8 * {
    outline: none;
}

img {
    border: none;
}

body {
    color: var(--black);
    font-size: var(--font-18);
    line-height: 32px;
    overflow-x: hidden;
    position: relative;
    background: var(--white);
    font-weight: 300;
    font-family: var(--primary-font);
}



/*form*/
.gform_validation_errors {
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.gfield_validation_message {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    color: var(--white) !important;
}

.gform_validation_errors h2 {
    color: var(--white) !important;
}

.gfield_error input {
    border-color: #c02b0a !important;
}

search .search-no-results .search form {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.search-no-results .search input {
    margin-bottom: 0;
    border: 1px solid #182c61 !important;
    border-radius: 0 !important;
    height: 50px;
    transition: all 0.5s ease-in-out;
    padding: 0.6rem 1rem;
    width: 100%;
}

.search-no-results .search input#searchsubmit {
    width: 160px;
    height: 50px;
    background-color: #182c61;
    border: 0 none;
    color: var(--white);
    border-radius: 0 !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}




/*----- html5 tags ------*/
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    display: block;
}

/*----- Wrapper Part ------*/
.container {
    max-width: 1440px;
    height: auto;
    display: block;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto
}

.container-full {
    max-width: 1800px;
    height: auto;
    display: block;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto
}

.container-inner {
    max-width: 1200px;
    height: auto;
    display: block;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto
}

.sub-container {
    max-width: 1540px;
    height: auto;
    display: block;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto
}
.quote-container {
    max-width: 1020px;
    height: auto;
    display: block;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto
}


/* CSS Styles */


header {
    position: fixed;
    width: 100%;
    top: 22px;
    z-index: 99;
}

header .header_wrapper {
    background-color: rgb(255 255 255 / 80%);
    padding: 16px 42px 16px 35px;
    border-radius: 5px;
}

header .header_wrapper .icon_block ul {
    display: flex;
    justify-content: flex-end;
}

header .header_wrapper .icon_block ul li {
    padding: 0px;
    margin-left: 40px;
    margin-bottom: 0px;
    list-style: none;
}

header .header_wrapper .icon_block ul li:first-child {
    margin-left: 0px;
}

header .header_wrapper .menu_bar {
    width: 20%;
    display: flex;
    align-items: center;
}

header .header_wrapper .icon_block {
    width: 20%;
}

header .header_wrapper .site_logo {
    width: 60%;
    text-align: center;
}

header .header_wrapper .icon_block ul li a {
    display: block;
}

header .header_wrapper .icon_block ul li a img {
    height: 25px;
    width: auto;
    display: block;
    transition: all 0.3s ease-in-out;
}

header .header_wrapper .icon_block ul li a:hover img {
    transform: scale(1.1);
}


header .header_wrapper .site_logo a img {
    display: block;
    margin: auto;
    max-width: 265px;
}

header .header_wrapper .site_logo a {
    display: inline-block;
}

header .header_wrapper .humburger {
    width: 50px;
    height: 50px;
    background-color: var(--pink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: center;
    border: none;
}

header .header_wrapper .menu_c h3 {
    margin: 0;
    font-weight: 300;
    margin-left: 23px;
    font-size: 26px;
    line-height: 32px;
}

header .header_wrapper .humburger span {
    width: 24px;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    margin: 4px;
}

.menu_open {
    overflow: hidden;
    padding-right: 19px;
}

header .manu-list .current_page_item>a,
header .manu-list .current-menu-ancestor>a,
header .manu-list .current-menu-item>a {
    color: var(--black) !important;
}

.banner_section {
    height: 90vh;
    position: relative;
    background-color: #FFEAEF;
}

.banner_section:after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner_section .full_image img {
    height: 62vh;

    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    object-position: top;
}

.banner_section .full_image {
    height: 100%;
    position: relative;
    top: 185px;
    border-radius: 25px;
}

.banner_section .full_image:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: inset 0px -375px 95px rgba(0, 0, 0, .64);
    border-radius: 25px;
}

.banner_section .container-full {
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 1;
}

.banner_section .banner_content h1 {
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.banner_section .banner_content h1 span {
    font-size: 46px;
    line-height: 52px;
    font-weight: 400;
    display: block;
    margin-top: 20px;
}

.banner_section .banner_content {
    max-width: 1800px;
    margin: auto;
    position: relative;
    bottom: 75px;
}

.banner_section .mouse_scroll {
    position: absolute;
    bottom: 5px;
    width: 50px;
    height: 70px;
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    cursor: pointer;
}

.split_section {
    padding-top: 59px;
}

.split_section .title {
    text-align: center;
}

.split_section .title p {
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
}

.split_section .title {
    max-width: 1140px;
    margin: auto;
}

.split_section .two_column.flex {
    max-width: 1250px;
    margin: auto;
}

.split_section .split_block {
    padding: 38px 20px;
}

.split_section .split_block .item:first-child {
    width: 60%;
}

.split_section .split_block .item:nth-child(2) {
    width: 40%;
}

.split_section .split_block .item .img img {
    height: 425px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.split_section .split_block:nth-child(even) {
    background-color: #F6F6F6;
}

.split_section .split_block:nth-child(even) .item:nth-child(2) {
    padding-left: 0;
    padding-right: 50px;
}

.split_section .split_block .item:nth-child(2) {
    padding-left: 50px;
}

.split_section .split_block:nth-child(even) .two_column {
    flex-direction: row-reverse;
}

.split_section .split_block:nth-child(even) .two_column .item:nth-child(2) {
    padding-left: 38px;
}

.split_section .health_list ul li {
    font-size: 18px;
    line-height: 32px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    /* background-image: url('../images/plus.svg');
    background-size: 18px;
    padding-left: 34px; */
    list-style: disc inside;

}
.split_section .health_list ul li::marker {
    font-size: 24px;
    color: #C882B1;
}

.split_section .health_list ul li i {
    padding-right: 15px;
}

.split_section .health_list {
    margin-top: 30px;
    margin-bottom: 30px;
}

.link a {
    font-size: 20px;
    line-height: 42px;
    font-weight: 500;
    color: var(--darkpink);
    text-decoration: none;
}

.link {
    display: inline-block;
    position: relative;
}

.link a {
    position: relative;
}

.link a:after {
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background-color: var(--darkpink);
    left: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}

.link a:hover {
    color: #000;
}

.link a:hover:after {
    background-color: #000;
}

.header_menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--pink);
    padding: 30px 0px 49px 24px;
    width: 460px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translateX(-100%);
    padding-right: 15px;
}

.menu_open .header_menu {
    transform: none;
}

.header_menu .close_icon {
    display: flex;
    align-items: center;
}

.header_menu .close_icon img {
    cursor: pointer;
}

.header_menu .close_icon span {
    font-size: 32px;
    line-height: 41px;
    margin-left: 26px;
    color: #fff;
    font-family: var(--secondary-font);
}

.header_menu .header_top {
    height: 100%;
}

.header_menu .navigation {
    padding-top: 30px;
    padding-left: 56px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    padding-bottom: 49px;
}

.header_menu .navigation {
    padding-top: 30px;
    padding-left: 56px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    padding-bottom: 49px;
}

.header_menu .manu-list {
    padding-right: 20px;
    padding-bottom: 60px;
}

.header_menu .appointment_section {
    padding-right: 20px;
}

.header_menu .manu-list ul li a:hover {
    color: #000;
}

.header_menu .manu-list ul li a {
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--secondary-font);
}

.header_menu .manu-list ul li {
    margin-bottom: 21px;
    padding-left: 0px;
    list-style: none;
}

.header_menu .appointment_section ul li {
    padding: 0px;
}

.header_menu .appointment_section ul li h5 {
    color: #fff;
    margin-bottom: 12px;
}

.header_menu .appointment_section ul li h6 {
    margin: 0px;
    color: #fff;
    font-weight: 300;
}

.header_menu .appointment_section ul li {
    margin-bottom: 27px;
    list-style: none;
}

.header_menu .appointment_section ul li:last-child {
    margin-bottom: 0px;
}

.header_menu .appointment_section ul {
    margin-bottom: 36px;
}

.header_menu .appin_btn a {
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    background-color: var(--lightpink);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-family: var(--secondary-font);
    color: var(--black);
}

.header_menu .appin_btn a:hover {
    background-color: var(--darkpink);
    color: #fff;
}

.header_menu .manu-list .sub-menu ul li a {
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
}

.header_menu .manu-list .sub-menu ul li a:hover {
    color: var(--black);
}

.header_menu .manu-list .sub-menu ul li {
    margin-bottom: 15px;
}

.header_menu .manu-list .sub-menu {
    padding-left: 28px;
    padding-top: 20px;
    display: none;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children.active>span {
    background-image: url(../images/Minu-menu-icon.svg);
}

.menu-item-has-children>span {
    width: 20px;
    height: 22px;
    background-image: url(../images/plus-menu-icon.svg);
    display: inline-block;
    margin-left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 5px;
}

.header_menu .manu-list .sub-menu .sub-menu {
    padding-left: 28px;
    position: relative;
}

.header_menu .manu-list .sub-menu .sub-menu:after {
    content: "";
    width: 1px;
    height: calc(100% - 50px);
    background-color: #DB0095;
    left: 8px;
    top: 30px;
    position: absolute;
}

.header_menu .manu-list .sub-menu .sub-menu li a {
    font-size: 16px;
    line-height: 21px;
}

.header_menu .manu-list .sub-menu .sub-menu li {
    margin-bottom: 10px;
}

.header_menu .manu-list .sub-menu .sub-menu {
    padding-bottom: 5px;
}

.three_column_section {
    background-color: var(--lightpink);
    padding: 70px 0px 90px;
}

.three_column_section .wrapper.flex .column {
    width: 33.33%;
}

.three_column_section .wrapper.flex .column .content p {
    font-size: 18px;
    line-height: 32px;
}

.three_column_section .wrapper.flex .column .content p strong {
    color: #C882B1;
}

.three_column_section .column .img img {
    height: 830px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    display: block;
}

.three_column_section .column .img {
    position: relative;
    padding-top: 44px;
    padding-left: 56px;
}

.three_column_section .wrapper.flex .column:nth-child(1) h2 span {
    display: block;
}

.three_column_section .wrapper.flex .column:nth-child(1) {
    padding-right: 44px;
}

.three_column_section .wrapper.flex .column:nth-child(3) {
    padding-left: 95px;
}

.three_column_section .column .img:after {
    content: "";
    width: 80%;
    height: 795px;
    background-color: var(--pink);
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 25px;
}

.treatment_section .container {
    width: calc(1800px + ((100% - 1800px) / 2));
    margin-right: inherit;
    padding-right: 0px;
    max-width: 100%;
}

.treatment_section {
    padding: 111px 0px 31px;
    background-color: #FFC5D2;
    position: relative;
    overflow: hidden;
}

.treatment_section:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 48%;
    background-color: var(--lightpink);
    bottom: 0;
    left: 0;
}

.treatment_section .title h2 {
    margin-bottom: 0px;
}

.title {
    margin-bottom: 52px;
}

.treatment_section .treatment_slider .img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease-in-out;
    border-radius: 25px
}

.treatment_section .treatment_slider .img {
    margin-bottom: 39px;
    overflow: hidden;
    border-radius: 25px
}

.treatment_section .treatment_slider .left_content {
    width: 50%;
    padding-right: 10px;
}

.treatment_section .treatment_slider .right_content {
    width: 50%;
}

.treatment_section .treatment_slider .flex {
    align-items: flex-start;
}

.treatment_section .treatment_slider .flex h3 {
    color: var(--black);
}

.treatment_section .treatment_slider a:hover .img img {
    transform: scale(1.1);
}

.treatment_section .treatment_slider a {
    text-decoration: none;
}

.treatment_section .treatment_slider .right_content p {
    margin-top: 0px;
}

.treatment_section .treatment_slider .owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.treatment_section .treatment_slider .owl-nav button:hover {
    background-color: var(--darkpink) !important;
}

.treatment_section .treatment_slider .owl-nav button {
    width: 60px;
    height: 60px;
    background-color: var(--pink) !important;
    border-radius: 50%;
    margin: 0px 8px;
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-in-out;
}

.treatment_section .treatment_slider .owl-nav button span {
    color: transparent;
}

.treatment_section .treatment_slider .owl-nav {
    position: absolute;
    top: -150px;
    right: 7%;
}

.treatment_section .treatment_slider .owl-dot span {
    border: 8px solid #FFC5D2;
    width: 25px;
    height: 25px;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.treatment_section .treatment_slider .owl-dot.active span {
    border: 6px solid #FFC5D2;
}

.treatment_section .treatment_slider .owl-dot {
    margin: 0px 5px;
}

.treatment_section .treatment_slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.Journeys_slider_section {
    padding-top: 50px;
    background-color: var(--lightpink);
    position: relative;
}

.Journeys_slider_section .slider_left {
    width: 45%;
    padding-right: 120px;
    padding-bottom: 213px;
}

.Journeys_slider_section .slider_right .img {
    position: absolute;
    bottom: 0;
}

.Journeys_slider_section .slider_right {
    width: 55%;
}

.Journeys_slider_section .slider_wrapper {
    display: flex;
    align-items: flex-end;
}

.Journeys_slider_section .slider_right .img {
    position: relative;
    height: 825px;
}

.Journeys_slider_section .slider_right img {
    height: 825px;
    display: block;
    width: 100%;
    border-radius: 500px 500px 0px 0px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
}

.Journeys_slider_section .slider_left .title span {
    font-size: 72px;
    line-height: 82px;
    font-family: var(--secondary-font);
}

.Journeys_slider_section .slider_left .title h2 {
    margin-bottom: 20px;
}

.Journeys_slider_section .slider_left .description p {
    font-size: 18px;
    line-height: 24px;
}

.Journeys_slider_section .slider_left .description p strong {
    font-weight: 400;
}

.Journeys_slider_section .slider_left .description {
    max-width: 649px;
}

.Journeys_slider_section .slider_arrow_count {
    position: absolute;
    bottom: 97px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 1;
    width: 100%;
    justify-content: center;
}

.Journeys_slider_section .slider_arrow_count {
    display: flex;
    align-items: center;
}

.Journeys_slider_section .custom-prev-arrow,
.Journeys_slider_section .custom-next-arrow {
    width: 60px;
    height: 60px;
    background-color: var(--pink);
    display: flex;
    color: transparent;
    border-radius: 50%;
    background-image: url('../images/counter-arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.Journeys_slider_section .custom-prev-arrow:hover,
.Journeys_slider_section .custom-next-arrow:hover {
    background-color: var(--darkpink) !important;
}

.Journeys_slider_section .custom-prev-arrow {
    margin-right: 22px;
    transform: rotate(180deg);
}

.Journeys_slider_section .custom-next-arrow {
    margin-left: 22px;
}

.Journeys_slider_section .count_caption {
    display: flex;
    align-items: center;
    background-color: var(--pink);
    padding: 6px 23px;
    border-radius: 50px;
    min-width: 392px;
}

.Journeys_slider_section .slider-counter {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
}

.Journeys_slider_section .slider-counter:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/circle.svg');
    top: 0;
    left: 0;
    background-position: center;
    background-position: center;
    background-size: 63px;
    background-repeat: no-repeat
}

.Journeys_slider_section .slider-counter {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #fff;
}

.Journeys_slider_section .slider_arrow_count .caption span {
    font-size: 24px;
    line-height: 20px;
    color: #fff;
    padding-left: 16px;
    font-family: var(--secondary-font);
}

.our_stories_section {
    padding: 40px 0px;
}

.our_stories_wrapper {
    display: flex;
    justify-content: space-between;
}

.stories_title {
    width: 28%;
}

.stories_grid_column {
    width: 72%;
}

.stories_grid_column .grid-layout.column-2 .item {
    width: calc(50% - 60px);
    margin: 0 30px;
}

.grid-layout.column-2 li {
    margin: 4px;
    list-style-position: inside;
}

.stories_grid_column .grid-layout {
    margin: 0 -30px;
}

.stories_grid_column .grid-layout .img_block {
    overflow: hidden;
}

.stories_grid_column .grid-layout .img_block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background-color: #D9D9D9;
    transition: all 0.3s ease-in-out;
}

.home .stories_grid_column .grid-layout .img_block img {
    border-radius: 25px
}

.stories_grid_column .grid-layout .item .date {
    position: absolute;
    top: 38px;
    left: 43px;
}

.stories_grid_column .grid-layout .item .img_block {
    position: relative;
    margin-bottom: 26px;
}

.stories_grid_column .grid-layout .item .date span {
    font-size: 24px;
    line-height: 36px;
    max-width: 100px;
    display: block;
    text-align: center;
    padding: 14px 25px;
    background-color: rgb(255 234 239 / 75%);
    border-radius: 25px;
    font-family: var(--secondary-font);
    color: var(--black);
}

.stories_grid_column .grid-layout .item .content h4 {
    margin-bottom: 18px;
    color: #000;
}

.stories_grid_column .grid-layout .item a {
    text-decoration: none;
}

.stories_grid_column .grid-layout .item a:hover .img_block img {
    transform: scale(1.1);
}

.stories_grid_column .grid-layout .item .content span {
    font-weight: 400;
}

.stories_grid_column .grid-layout .item .content p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 18px;
}

.stories_grid_column .grid-layout .item .content a {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--darkpink);
    text-decoration: none;
}

.stories_grid_column .grid-layout .item .content a:hover {
    color: #000;
}

.logo_slider_section {
    padding: 40px 0px;
}

.logo_slider_section .owl-stage {
    display: flex;
    align-items: center;
}

.logo_slider_section .logo_slider {
    padding: 0px 100px;
}

.logo_slider_section .owl-stage .item img {
    height: 193px;
    width: auto;
}

.site_footer {
    padding: 63px 0px 127px;
    background-color: #F6F6F6;
}

.site_footer .footer_l {
    width: 33%;
}

.site_footer .footer_r {
    width: 60%;
}

.site_footer .site_logo a img {
    max-width: 300px;
}

.site_footer .footer_l .c_block a {
    text-decoration: none;
    color: #000;
}

.site_footer .footer_l .c_block h3 {
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
    max-width: 369px;
    margin-top: 28px;
    margin-bottom: 37px;
}

.site_footer .footer_l .c_block span {
    display: flex;
    align-items: center;
}

.site_footer .footer_l .c_block span img {
    margin-left: 18px;
}

.site_footer .footer_r .menu_column h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 25px;
}

.site_footer .footer_r .footer_menu_wrapper.flex {
    align-items: flex-start;
}

.site_footer .wrapper.flex {
    align-items: flex-start;
}

.site_footer .footer_r {
    padding-top: 27px;
}

.site_footer .footer_r .menu_column {
    width: 33.33%;
}

.footer_menu_wrapper.flex {
    align-items: flex-start;
}

.site_footer .footer_r .c-detail a:hover {
    color: var(--darkpink);
}

.site_footer .footer_l .c_block a:hover {
    color: var(--darkpink);
}

.site_footer .footer_l .c_block a img {
    transition: all 0.3s ease-in-out;
}

.site_footer .footer_l .c_block a:hover img {
    transform: scale(1.1);
}

.site_footer .footer_r .c-detail p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 20px;
    line-height: normal;
}

.site_footer .footer_r .c-detail p a {
    padding-left: 2px;
    word-break: break-word;
}

.site_footer .footer_r .c-detail a {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
    display: block;
}

.site_footer .footer_r .c-detail {
    margin-bottom: 20px;
}

.site_footer .footer_r .address p {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 0px;
}

.site_footer .footer_r .address address {
    font-style: normal;
    font-size: 20px;
    line-height: 32px;
    max-width: 289px;
}

.site_footer .footer_r .menu_column ul li {
    padding: 0px;
    background-image: none;
    margin-bottom: 16px;
    list-style: none;
}

.site_footer .footer_r .menu_column ul li a:hover {
    color: var(--darkpink);
}

.site_footer .footer_r .menu_column:first-child {
    width: 38%;
}

.site_footer .footer_r .menu_column:nth-child(2) {
    width: 26%;
}

.site_footer .footer_r .menu_column:nth-child(3) {
    width: 30%;
}

.site_footer .footer_r .menu_column ul li a {
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    position: relative;
    color: #000000;
}

.site_footer .footer_r .menu_column ul li a:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #000;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.site_footer .footer_r .menu_column ul li a:hover::after {
    background-color: var(--darkpink);
}

.social{
    margin-top: 100px;
}
.social a{
    color: #C882B1;
    font-size: 32px;
}
.social a:first-child{
    margin-right: 20px;
}

/*** Strapline ***/

.strap{
    background-color: #C882B1;
    padding: 75px 0;
}
.strap .row{
    display: flex;
}
.strap-column{
    width: 25%;
    padding: 0 25px;

}
.strap-column h3{
    text-align: center;
    color:#FFEAEF;
    font-size: 28px;
    margin-top: 25px;
}
.strap-column i{
    margin-bottom:15px;
    display: block;
    text-align: center;
    font-size: 62px;
    color: #FFEAEF;
}
/* */

.banner_section.inner_banner {
    height: 80vh;
}

.banner_section.inner_banner .container {
    bottom: 133px;
}

.banner_section.inner_banner .banner_content span {
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    line-height: 41px;
    color: #FFFFFF;
    font-family: var(--secondary-font);
    text-align: center;
    display: block;
    margin-bottom: 15px
}

.inner_banner.banner_section:after {
    display: none;
}

.banner_section.inner_banner .full_image img {
    height: 485px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    object-position: top;
}

.banner_section.inner_banner .full_image {
    height: 100%;
    position: relative;
    top: 185px;
    border-radius: 25px;
}

.two_column_description {
    padding: 94px 0 75px;
}

.two_column_description .grid-layout {
    margin-left: -25px;
    margin-right: -25px;
}

.two_column_description .grid-layout.column-2 .item {
    width: calc(50% - 50px);
    margin: 0 25px;
}

.two_column_description .item .image_block img {
    width: 100%;
    display: block;
}

.two_column_description .item .content_block .content {
    max-width: 650px;
}

.two_column_description .item .content_block .content h2 {
    line-height: 56px;
}

.two_column_description .item .content_block p {
    font-size: 20px;
    line-height: 28px;
}

.two_column_description .item .content_block p a {
    font-weight: 700;
    color: #C882B1;
}

.two_column_description .item .content_block p a:hover {
    color: var(--darkpink);
}

.two_column_description .item .content_block strong {
    font-weight: 400;
}

.two_column_description .item .content_block figure {
    margin: 50px 0;
}

.two_column_description .item .content_block figure img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

.two_column_description .item:nth-child(2) .content_block figure:first-child {
    margin-top: 0;
}

.two_column_description .item .content_block figure:last-child {
    margin-bottom: 0;
}

.before_after_section {
    padding: 78px 0px 44px;
}

.before_after_section img {
    border-radius: 25px
}

.before_after_section .image-container {
    height: 550px;
}

.before_after_section .title {
    text-align: center;
}

/*.before_after_section .image-after.slider-image { background-color: rgb(0 0 0 / 54%);position: absolute; width: var(--position); top: 0; }*/
.before_after_section .img_block .image-before {
    width: var(--position);
    height: 550px;
    object-fit: cover;
    display: block;
}

.before_after_section .movement_content {
    height: 550px;
    position: absolute;
    top: 0;
    width: 100%;
}

.before_after_section .grid-layout {
    margin-left: -27px;
    margin-right: -27px;
}

.before_after_section .grid-layout.column-3 .item {
    width: calc(33% - 54px);
    margin: 0 27px;
    margin-bottom: 54px;
}

.before_after_section .img_block {
    position: relative;
}

.before_after_section .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.before_after_section .image-before {
    position: absolute;
}

.before_after_section .slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.before_after_section .slider:focus-visible~.slider-button {
    outline: 5px solid black;
    outline-offset: 3px;
}

.before_after_section .slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.before_after_section .slider-button {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.before_after_section.horizontal .image-container {
    height: 600px;
}
.before_after_section.horizontal .container{
    max-width: 1300px;
}
.before_after_section.horizontal .img_block .image-before,.before_after_section.horizontal .movement_content{
    height: 100%;
    border-radius: 0px;
}
.before_after_section.horizontal .img_block {
    border-radius:25px;
    overflow:hidden
}
.treatment_information.appointment_twocolumn {
    padding: 100px 0;
}

.treatment_information.appointment_twocolumn .title_subtitle {
    margin-bottom: 47px;
}

.treatment_information.appointment_twocolumn .content ul li {
    font-size: 18px;
    line-height: 28px;
}

.treatment_information.appointment_twocolumn .img img {
    height: 365px;
    object-fit: cover;
    width: 100%;
    border-radius: 25px;
}

.treatment_information.appointment_twocolumn .content p strong {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.treatment_information .title_subtitle h2 {
    font-size: 36px;
    line-height: 28px;
    margin-bottom: 35px;
    margin-top: 14px;
}

.primary_btn {
    background: #C882B1;
    font-size: var(--font-22);
    font-weight: 300;
    line-height: 28px;
    color: #fff;
    min-height: 50px;
    min-width: 170px;
    font-family: var(--secondary-font);
}

.rounded_btn {
    font-size: var(--font-16);
    font-weight: 300;
    line-height: 19.2px;
    color: var(--darkpink);
    min-width: 170px;
    border-radius: 25px;
    border: 1px solid var(--darkpink);
    padding: 5px 10px;
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.rounded_btn:hover {
    background-color: var(--darkpink);
    color: var(--white) !important;
}

.primary_btn:hover {
    background: var(--darkpink);
    color: var(--white);
}

.artical_listing .wrapper {
    margin: 0 -12px;
}

.artical_listing .flex .flex h3 {
    width: 60%;
    text-transform: capitalize;
}
.blog h2{
    text-transform: capitalize;
}
.artical_listing .flex {
    align-items: stretch;
}

.artical_listing .flex .flex span {
    width: 40%;
    text-align: right;
    font-size: 18px;
    line-height: 32px;
    color: #000;
    align-items: stretch;
    font-family: var(--secondary-font);
    font-weight: 300;
}

.artical_listing .wrapper .item {
    width: 33.33%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.artical_listing .wrapper .img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/2.6;
    background: #D9D9D9;
    overflow: hidden;
}

.artical_listing .wrapper .img img {
    height: 100%;
    display: block;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.artical_listing .wrapper a:hover img {
    transform: scale(1.1);
}

.artical_listing .wrapper .item a {
    text-decoration: none;
    display: block;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    height: 100%;
    background: var(--lightpink);
}

.artical_listing .wrapper .item .title {
    margin: 0;
    background: var(--lightpink);
    padding: 25px 29px;
}

.artical_listing .wrapper h3 {
    font-size: var(--font-24);
    font-weight: 700;
    line-height: 32px;
    margin: 0 0 7px;
    color: var(--black);
}

.artical_listing .wrapper p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 0;
}

.two_column_section .grid-layout .left_column {
    width: 50%;
    margin: 0px;
    border-radius: 25px 0px 0px 25px;
    overflow: hidden;
}

.two_column_section .grid-layout .right_column {
    width: 50%;
    display: flex;
    align-items: center;
    margin: 0px;
    position: relative;
    border-radius: 25px 0px 0px 25px;
}

.two_column_section .grid-layout .right_column.item:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    filter: drop-shadow(25px 25px 50px rgba(0, 0, 0, .2));
    top: 0;
    z-index: 1;
    background-color: #ffeaef;
    border-radius: 0px 25px 25px 0px;
}

.two_column_section {
    padding: 80px 0;
    background: #F6F6F6;
}

.two_column_section .wrapper {
    align-items: stretch;
    min-height: 500px;
    padding: 0 0;
    border-radius: 25px;
    overflow: visible;
    background: var(--lightpink);
    margin: 0px;
}

.two_column_section .wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    text-align: left;
    margin: 0 0 30px;
}

.two_column_section .wrapper h4 {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    margin: 0 0 30px;
    color: var(--darkpink);
}

.two_column_section .wrapper p {
    font-size: 20px;
    line-height: 32px;
}

.two_column_section .wrapper .primary_btn {
    margin-top: 40px;
    margin-top: 40px;
    height: 67px;
    min-width: 258px;
    font-size: 20px;
    line-height: normal;
}

.two_column_section .wrapper .text_content {
    max-width: 654px;
    margin: 0 auto;
    padding: 20px 40px;
    z-index: 11;
    position: relative;
}

.two_column_section .wrapper .left_column .img {
    height: 100%;
    width: 100%;
}

.two_column_section .wrapper .left_column .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment_information {
    background-color: var(--lightpink);
    padding: 84px 0 81px;
}

.treatment_information .left_column {
    width: 50%;
    padding-right: 49px;
}

.treatment_information .right_column {
    width: 50%;
}
.price .title_subtitle{
    text-align: right;
}
.treatment_information .flex {
    align-items: flex-start;
}
.testimonial{
    background-color: #FFC5D2;
}
.testimonial .flex{
    align-items: center;
}
.testimonial .right_column .content{
    padding-left: 50px;
}
.testimonial .right_column .content a{
    margin-top: 10px;
    display: block;
}
.testimonial .right_column .content p{
    font-size: 36px;
    line-height: 48px;
    font-family: "ivyora-display", serif;
    margin: 0;
    font-weight: 400;
}
.testimonial .right_column .content h4{
    font-size: 26px;
    line-height: 28px;
    font-family: "ivyora-display", serif;
    margin: 20px 0 0;
    font-weight: 700;
}
.testimonial .right_column .content b, .testimonial .right_column .content strong{
    font-size: 42px !important;
    text-transform: uppercase  !important;
    font-weight: 400;
}
.title_subtitle span {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #000000;
    display: block;
    margin-bottom: 0px;
    font-family: var(--secondary-font);
}

.title_subtitle h2 {
    margin-bottom: 20px;
}

.treatment_information .info_list ul li {
    padding: 23px 43px;
    margin: 0;
    border-top: 1px solid #C882B1;
    font-size: 22px;
    line-height: 28px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 400;
    list-style: none;
}

.treatment_information .info_list ul li:Last-child {
    border-bottom: 1px solid #C882B1;
}


.grid_three_column {
    padding: 76px 0;
}

.grid_three_column .grid-layout {
    margin-left: -7px;
    margin-right: -7px;
}

.grid_three_column.condition_grid_column .item.two_c {
    width: calc(66% - 14px);
}

.grid_three_column.condition_grid_column .item.two_c .flex .content_left {
    width: 40%;
}

.grid_three_column.condition_grid_column .item.two_c img {
    height: 500px;
}

.grid_three_column.condition_grid_column .item.two_c .flex .content_right {
    width: 60%;
    padding-left: 15px;
}

.grid_three_column .grid-layout .item.two_c .content_block .flex {
    align-items: flex-start;
}

.grid_three_column .grid-layout .item {
    padding-bottom: 37px;
    width: calc(33% - 14px);
    margin: 0 7px;
}

.grid_three_column .title {
    text-align: center;
    margin-bottom: 65px;
}

.grid_three_column .img_block img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: all .3s ease-in-out;
}

.grid_three_column .grid-layout .item a {
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background-color: #F6F6F6;
    height: 100%;
}

.grid_three_column .grid-layout .item a:hover .link {
    color: var(--black);
}

.grid_three_column .grid-layout .item a:hover .link:after {
    background-color: var(--black);
}

.grid_three_column .grid-layout .item .content_block {
    padding: 18px 27px 15px;
}

.grid_three_column .grid-layout .item.two_c .content_block {
    padding: 18px 50px 15px;
}

.grid_three_column .grid-layout .item .content_block h3 {
    margin-bottom: 16px;
    color: var(--black);
}

.grid_three_column .grid-layout .item .content_block p {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 28px;
}

.grid_three_column .grid-layout .item .link {
    font-size: 20px;
    line-height: 32px;
    position: relative;
    color: #DB0095;
    display: inline-block;
}

.grid_three_column .grid-layout .item .img_block {
    overflow: hidden;
}

.grid_three_column .grid-layout .item .link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #DB0095;
    bottom: 0;
    left: 0;
}

.grid_three_column .grid-layout .item a:hover img {
    transform: scale(1.1);
}

.main_accordion .accordion {
    margin: 0;
    border-top: 1px solid #C882B1;
    font-size: 22px;
    line-height: 28px;
}

.main_accordion .accordion:last-child {
    border-bottom: 1px solid #C882B1;
}

.main_accordion .accordion .accordion-title {
    padding: 23px 43px 23px 0;
    width: 100%;
    text-align: left;
    border: none;
    background-color: transparent;
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    position: relative;
    color: #000 !important;
}

.main_accordion .accordion.active .accordion-title:after {
    background-image: url(../images/Minus-icon.svg);
}

.main_accordion .accordion .accordion-title:after {
    content: "";
    position: absolute;
    width: 31px;
    height: 33px;
    background-image: url(../images/Plus-icon.svg);
    background-repeat: no-repeat;
    right: 0;
    background-position: center;
    top: 50%;
    transition: all .3s ease-in-out;
    transform: translate(0, -50%);
}

.main_accordion .accordion .panel p:first-child {
    margin-top: 0;
}

.main_accordion .accordion .panel p {
    line-height: 26px;
}

.main_accordion .accordion .panel {
    padding-bottom: 22px;
    display: none;
}


.two_column_skintreatment {
    padding: 80px 0;
}

.two_column_skintreatment .column:first-child {
    width: 42%;
}

.two_column_skintreatment .column:nth-child(2) {
    width: 58%;
    padding-left: 70px;
}
.two_column_skintreatment .column-2{
    width: 50%;
    padding-left: 50px;
    padding-right:0;
    margin-top: 50px;
}
.two_column_skintreatment .column-2:nth-child(2) {
    padding-left: 50px;
    padding-right:0;
}
.two_column_skintreatment .image_block{
    padding: 50px 0;
}
.two_column_skintreatment .image_block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    -webkit-mask-image: url(../images/mask-image.svg);
    mask-image: url(../images/mask-image.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: top center;
}

.two_column_skintreatment .tabs-content {
    padding: 0 65px;
}

.two_column_skintreatment .content_block h3 {
    font-size: 36px;
    line-height: 32px;
    margin-bottom: 33px;
}

.two_column_skintreatment .content_block p strong {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
}

.category_block {
    margin-bottom: 70px;
}

.category_block ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.category_block ul li a {
    background-color: #C882B1;
    font-size: 26px;
    line-height: 32px;
    text-decoration: none;
    display: inline-block;
    min-width: 350px;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    color: #fff;
    font-family: var(--secondary-font);
}

.category_block ul li a:hover {
    background-color: var(--darkpink);
}

.category_block ul li.active a {
    background-color: #DB0095;
}

.category_block ul li {
    padding: 0;
    margin: 0 23px;
    margin-bottom: 20px;
    list-style: none;
}

.grid_three_column.condition_grid_column {
    padding: 76px 0 83px;
}

.condition_grid_column .item:not(:first-child) .link {
    position: absolute;
    bottom: 15px
}

.condition_grid_column .item:not(:first-child) .content_block {
    position: relative;
    padding-bottom: 43px
}

.clinic_two_column {
    background-color: var(--lightpink);
    padding: 70px 0px 90px;
}

.clinic_two_column .wrapper.flex .column {
    width: 50%;
}

.clinic_two_column .wrapper.flex {
    padding: 0 29px;
}

.clinic_two_column .column .img img {
    height: 830px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    display: block;
}

.clinic_two_column .column .img {
    position: relative;
    padding-top: 44px;
    padding-left: 56px;
    filter: drop-shadow(15px 15px 25px rgba(0, 0, 0, 0.12));
}

.clinic_two_column .wrapper.flex .column:nth-child(1) h2 span {
    display: block;
}

.clinic_two_column .wrapper.flex .column:nth-child(1) {
    padding-right: 60px;
}

.clinic_two_column .wrapper.flex .column:nth-child(2) {
    padding-left: 70px;
}

.clinic_two_column .column .img:after {
    content: "";
    width: 80%;
    height: 795px;
    background-color: var(--pink);
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 25px;
}

.clinic_two_column .wrapper.flex .column p {
    font-size: 22px;
    line-height: 32px;
}

.clinic_two_column .wrapper.flex .column p strong {
    color: #C882B1;
    font-weight: 700;
}



.about_two_column {
    padding: 65px 0 84px;
}

.about_two_column .title {
    margin-bottom: 33px;
}

.about_two_column .title h2 {
    margin-bottom: 0;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}

.about_two_column .description p {
    margin-top: 0;
}

.about_two_column .description p strong {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
}

.about_two_column .grid-layout {
    margin-bottom: 34px;
}

.about_two_column .wrappre.image_column .item:first-child {
    width: 60%;
    padding-right: 15px;
}

.about_two_column .wrappre.image_column .item:nth-child(2) {
    width: 40%;
    padding-left: 25px;
}

.about_two_column .wrappre.image_column .item img {
    height: 550px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.about_two_column.journey_column {
    padding: 69px 0 45px;
}

.about_two_column.journey_column .grid-layout {
    margin-bottom: 0;
}

.treatment_information.appointment_twocolumn.bg_pink {
    background-color: #FFC5D2;
}

.treat_split_section .two_column_skintreatment {
    background-color: var(--lightpink);
}

.treat_split_section .two_column_skintreatment:nth-child(even) {
    background-color: #fff;
}

.treat_split_section .two_column_skintreatment {
    padding: 0 0 120px;
}

.treat_split_section .two_column_skintreatment:nth-child(even) .flex {
    flex-direction: row-reverse;
}

.treat_split_section .two_column_skintreatment:nth-child(even) .flex .column:nth-child(2) {
    padding-left: 0;
    padding-right: 65px;
}

.treat_split_section .two_column_skintreatment .column:nth-child(2) {
    padding-top: 120px;
    padding-left: 65px;
}

.treat_split_section .two_column_skintreatment .flex {
    align-items: flex-start;
    margin-bottom: 25px;
}


.two_column_description.news_column .item:nth-child(2) .content_block .content {
    padding-left: 50px;
}

.two_column_description.news_column .item:nth-child(2) .content_block p {
    margin-top: 0;
}

.two_column_description.news_column .item:first-child .content_block .content {
    max-width: 100%;
}

.full_description {
    padding: 79px 0 64px;
    margin-top: 50px;
    background-color: #FFEAEF;
}

.full_description .content h3 {
    font-size: 36px;
    line-height: 52px;
    text-align: center;
}
.back_news p {
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 300;
}

.back_news {
    padding-bottom: 60px;
    padding-top: 9px;
}

.back_news p a {
    font-weight: 700;
    color: #C882B1;
    text-decoration: underline;
    padding-right: 47px;
}

.back_news p a:after {
    content: "//";
    color: #000;
    padding-left: 15px;
    text-decoration: none;
    position: absolute;
}

.back_news p a:hover {
    color: var(--darkpink);
}


.contact_section .column {
    width: 50%;
}

.contact_section .column:first-child {
    padding-right: 80px;
    padding-left: 70px;
}

.contact_section .column:nth-child(2) {
    padding-left: 80px;
}

.contact_section {
    padding: 74px 0;
}

.contact_section .content h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--black);
}

.contact_section .contact_block p:last-child a {
    color: #DB0095;
}

.contact_section .contact_block p {
    margin: 0;
}

.contact_section .contact_block p:first-child a {
    text-decoration: none;
    color: var(--black);
}

.contact_section .contact_block p a:hover {
    opacity: .5;
}

.contact_section .contact_block {
    margin: 46px 0 58px;
}

.contact_section .contact_block p a {
    font-weight: 700;
}

.contact_section .address_block ul li {
    padding: 0;
    background-image: none;
    margin-bottom: 36px;
    list-style: none;
}

.contact_section .address_block ul li span {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--black);
}

.contact_section .address_block ul li p {
    margin: 0;
    margin-top: 9px;
}

.contact_section .content {
    max-width: 560px;
}

.sticky_block {
    position: fixed;
    right: 0;
    top: 70%;
    z-index: 3;
}

.sticky_block ul li {
    padding: 0;
    background-image: none;
    margin-bottom: 2px;
    list-style: none;
}

.sticky_block ul li a {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #C882B1;
}

.sticky_block ul li a:hover {
    background-color: var(--darkpink);
}

.banner_section .sticky_block {
    top: 50%;
}

.inner_banner.banner_section .sticky_block {
    top: 50%;
}

.treatment_popup_section {
    padding: 82px 0;
    position: relative;
}

.treatment_popup_section .title {
    text-align: center;
}

.inner_treatment {
    position: relative;
}

.treatment_popup_section .full_img img {
    width: 100%;
    height: 927px;
    object-fit: cover;
    display: block;
}

.treatment_popup {
    width: 457px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
}

.treatment_popup .img img {
    height: 378px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.treatment_popup .item {
    background-color: var(--lightpink);
    height: 100%;
}

.treatment_popup .owl-stage-outer {
    height: 100%;
}

.treatment_popup .treatment_popup_slider {
    height: 100%;
}

.treatment_popup .owl-stage {
    height: 100%;
}

.treatment_popup .owl-item {
    height: 100%;
}

.treatment_popup .owl-item .content {
    padding: 61px 41px 20px 41px;
    height: calc(100% - 526px);
    overflow: auto;
}

.treatment_popup .owl-item .content p {
    font-size: 26px;
}

.treatment_popup .owl-item .content h3 {
    font-family: var(--primary-font);
    font-size: 52px;
    line-height: 52px;
    margin-bottom: 26px;
}

.treatment_popup .owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.treatment_popup .owl-nav button:hover {
    background-color: var(--darkpink) !important;
}

.treatment_popup .owl-nav button {
    transition: all 0.3s ease-in-out;
    width: 60px;
    height: 60px;
    background-color: var(--pink) !important;
    border-radius: 50%;
    margin: 0px 8px;
    background-image: url('../images/arrow-right.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.treatment_popup .owl-nav button span {
    color: transparent;
}

.treatment_popup .owl-nav {
    position: absolute;
    bottom: 64px;
    left: 45px;
}

.treatment_popup_section .tab:first-child {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 25%;
    left: 54%;
}

.treatment_popup_section .tab span {
    margin-left: 62px;
}

.treatment_popup_section .tab {
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
}

.treatment_popup_section .tab:nth-child(2) {
    top: 43%;
    left: 38%;
}

.treatment_popup_section .tab:nth-child(2) span {
    margin: 0;
    position: absolute;
    top: -64px;
    left: -98px;
}

.treatment_popup_section .tab:nth-child(3) {
    top: 41%;
    left: 49%;
}

.treatment_popup_section .tab:nth-child(3) span {
    margin: 0;
    position: absolute;
    top: -64px;
    left: -98px;
}

.treatment_popup_section .tab:nth-child(4) {
    top: 51%;
    left: 66%;
}

.treatment_popup_section .tab:nth-child(4) span {
    margin: 0;
    position: absolute;
    top: -64px;
    left: -98px;
}

.treatment_popup_section .tabs span {
    position: absolute;
    min-width: 228px;
    background-color: var(--lightpink);
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    padding: 5px 10px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 300;
    transition: all .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.treatment_popup_section .tabs .tab.active span {
    opacity: 1;
}

.site_footer .copy_right.mobile {
    display: none;
}

.header_search_modal {
    position: fixed;
    width: 100%;
    height: 300px;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99999;
    padding: 50px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
}

.search_open .header_search_modal {
    transform: none;
}

.header_search_modal .close_icon {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: -69px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_search_modal .container {
    position: relative;
}

.header_search_modal .title {
    margin-bottom: 49px;
}

.header_search_modal .search_box {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: auto;
    position: relative;
}

.header_search_modal .search_box input[type="search"] {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #CDCDCD;
    height: 79px;
    padding: 20px 130px 20px 40px;
    font-size: 26px;
    margin: 0px;
}

.header_search_modal .search_box button:hover {
    background-color: #DB0095;
}

.header_search_modal .search_box input[type="search"]::placeholder {
    font-size: 30px;
    font-family: var(--secondary-font);
}

.header_search_modal .search_box button {
    position: absolute;
    right: 13px;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    font-family: var(--secondary-font);
    background-color: var(--pink);
    padding: 21px 30px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    max-width: max-content;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    top: 10px;
}

.header_search_modal .search_box button img {
    margin-left: 0px;
    width: 0px !important;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
}

.header_search_modal .search_box button:hover img {
    margin-left: 20px;
    transform: scale(1);
    width: 12px !important;
}

.header_search_modal .search_box input[type="search"]::placeholder {
    color: #000;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
}

.header_search_modal .close_icon span:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background-color: #000;
    transform: rotate(45deg);
    left: 21px;
}

.header_search_modal .close_icon span:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background-color: #000;
    transform: rotate(-45deg);
    left: 21px;
}

.header_search_modal .close_icon span {
    display: block;
    height: 100%;
    position: relative;
    width: 50px;
}

.title_subtitle .primary_btn {
    min-width: 325px;
}

.contact_section .column input {
    height: 60px;
    border-radius: 0px;
    padding: 15px 27px;
    font-weight: 300;
    font-size: 24px;
    line-height: 31px;
    font-family: var(--secondary-font);
    border: 1px solid #D9D9D9;
    margin-bottom: 0px;
}

.contact_section .column textarea {
    border-radius: 0px;
    padding: 15px 27px;
    font-weight: 300;
    font-size: 24px;
    line-height: 31px;
    height: 185px;
    font-family: var(--secondary-font);
    border: 1px solid #D9D9D9;
}

.contact_section .column:nth-child(2) form p {
    margin: 15px 0px;
}

.contact_section input.wpcf7-form-control.wpcf7-submit {
    background: #C882B1;
    font-size: 26px;
    color: #fff;
    min-height: 50px;
    font-family: var(--secondary-font);
    padding: 9px 25px 8px 25px;
    min-width: 235px;
    outline: 0 !important;
    box-shadow: none !important;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50px;
    line-height: normal;
    height: 65px;
    text-decoration: none;
}

.contact_section input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: var(--darkpink);
}

.blog_listing_pagination {
    margin-top: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog_listing_pagination .next.page-numbers,
.blog_listing_pagination .prev.page-numbers {
    width: 60px;
    height: 60px;
    background-color: #C882B1;
    border-radius: 50%;
    color: transparent !important;
    overflow: hidden;
    background-image: url('../images/page-arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 20px;
    transition: all 0.3s ease-in-out;
}

.blog_listing_pagination .next.page-numbers:hover,
.blog_listing_pagination .prev.page-numbers:hover {
    background-color: var(--darkpink);
}

.blog_listing_pagination .page-numbers {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    color: var(--black);
    font-family: var(--secondary-font);
    padding: 0px 20px;
    text-decoration: none;
}

.blog_listing_pagination .page-numbers.current {
    color: var(--darkpink);
}

.blog_listing_pagination a.page-numbers:hover {
    color: var(--darkpink);
}

.blog_listing_pagination .prev.page-numbers {
    transform: rotate(180deg);
    margin-left: 0px;
    margin-right: 20px;
}


.banner_section .scroll-downs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_section .mousey {
    width: 0px;
    padding: 10px 10px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 15px;
    opacity: 0.75;
    box-sizing: content-box;
}

.banner_section .scroller {
    width: 3px;
    height: 10px;
    border-radius: 20%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
    margin-left: -1.1px;
    margin-top: -2px;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

header.fixed-header .site_header {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
}

.Journeys_slider_section .bottom_title {
    display: none
}

.admin-bar header {
    top: 32px
}

.header_menu .navigation::-webkit-scrollbar {
    width: 2px
}

.header_menu .navigation::-webkit-scrollbar-thumb {
    background-color: #fff
}

section.page_not_found,
.search section.default-layout {
    padding: 250px 0 100px
}

.search-no-results section.default-layout h1 {
    text-align: center
}

.search-no-results section.default-layout .search-archive-main {
    max-width: 600px;
    margin: auto;
    text-align: center
}

.search-no-results section.default-layout form {
    display: flex
}

article.search-entry {
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 9px rgba(15, 27, 74, 0.15);
    box-shadow: 0px 0px 9px rgba(15, 27, 74, 0.15);
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: calc(33.33% - 20px);
}

article.search-entry h2 {
    font-size: 20px;
    line-height: normal;
    margin-top: 10px
}

.search-results h1 {
    text-align: center
}

article.search-entry a {
    background-color: #fff;
    margin-bottom: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 22px;
    padding: 20px 30px;
    display: block;
    height: 100%;
    text-decoration: none;
    color: #000;
}

article.search-entry a:hover {
    background-color: var(--pink);
}

article.search-entry a:hover .entry-title {
    color: #fff;
}

.search-entry-row {
    display: flex;
    flex-wrap: wrap
}

.g_review_section {
    padding: 110px 0px 44px;
}

.g_review_section .grw-dots .grw-dot {
    border: 8px solid #FFC5D2 !important;
    width: 25px !important;
    height: 25px !important;
    display: block !important;
    border-radius: 50% !important;
    transition: all 0.3s ease-in-out !important;
    opacity: 1 !important;
    background: transparent !important;
    transition: all 0.3s ease-in-out;
}

.g_review_section .grw-dots .grw-dot.active {
    border: 6px solid #FFC5D2 !important;
}

.g_review_section .wp-gr .grw-dots {
    display: flex;
    margin-top: 19px !important;
}

.g_review_section .wp-gr .grw-dots {
    display: none;
}

.g_review_section .wp-google-feedback span,
.g_review_section .wp-google-time,
.g_review_section .wp-google-left a {
    font-family: var(--primary-font) !important;
}

.g_review_section .grw-controls .grw-btns.grw-prev,
.g_review_section .grw-controls .grw-btns.grw-next {
    width: 45px !important;
    height: 45px !important;
    background-color: var(--pink) !important;
    border-radius: 50% !important;
    margin: 0px 8px;
    background-image: url(../images/arrow-right.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: all 0.3s ease-in-out !important;
    transform: rotate(180deg);
    background-size: 20px;
}

.g_review_section .wp-gr .grw-controls {
    top: -26% !important;
    max-width: 100px !important;
    right: 34px !important;
    left: inherit !important;
}

.g_review_section.g_review_section_treatment {
    padding: 110px 0px 36px;
}

.g_review_section .wp-gr.wpac {
    padding-bottom: 0px !important;
}

.g_review_section .grw-controls .grw-btns.grw-prev:hover,
.g_review_section .grw-controls .grw-btns.grw-next:hover {
    background-color: var(--darkpink) !important;
}

.g_review_section .grw-controls .grw-btns.grw-next {
    transform: rotate(0);
}

.g_review_section .grw-controls .grw-btns.grw-prev svg,
.g_review_section .grw-controls .grw-btns.grw-next svg {
    display: none;
}

.g_review_section .wp-gr .grw-review-inner {
    padding: 40px !important;
}

.g_review_section .wp-gr[data-layout="slider"] .grw-reviews {
    padding: 0px !important;
}

.contact_section .column:nth-child(2) form p:nth-last-child(2) {
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
}

.privacy-policy ul {
    padding-left: 20px;
}

.g_review_section.g_review_section_treatment.g_review_journey {
    padding: 100px 0px 78px;
}

/* .page-id-105 .inner_banner {
    height: 725px !important;
} */

.before_after_section .img_block.single-image .image-container .image-before {
    width: 100%;
}

.before_after_section .img_block.single-image .overlay {
    content: "";
    background-color: rgb(0 0 0 / 54%);
    position: absolute;
    width: var(--position);
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.before_after_section .img_block.single-image .movement_content {
    transform: rotate(180deg);
    border-radius: 25px;

}


/*******************************/
.before_after_section.vertical {
    padding: 78px 0px 44px;
}

.before_after_section.vertical .title {
    text-align: center;
}


.before_after_section.vertical .grid-layout {
    margin-left: -27px;
    margin-right: -27px;
}

.grid-layout {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
}

.before_after_section .grid-layout.vertical .img_block .image-before {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
}

.before_after_section .grid-layout.vertical .image-after {
    display: block;
    height: 100%;
}

.before_after_section .grid-layout.vertical .resizer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: white;
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}


.before_after_section .grid-layout.vertical img {
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    height: 100%;
}

.before_after_section .grid-layout.vertical .resizer .slider-button {
    transform: translateY(-50%) rotate(90deg);
    pointer-events: auto;
    cursor: pointer;
    left: 0 !important;
    top: 50% !important;
    right: 0;
    margin: 0 auto;

}

.before_after_section .grid-layout.vertical .image-after .overlay {
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

/*** Price List ***/

.price-list .list-content-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.price-list .price-title-column {
    flex: 0 0 69%; 
    padding-right: 15px;
    margin: 0;
}
.price-list .price-column {
    flex: 0 0 30%;
    text-align: left;
    margin: 0;
}
.price-list.is-first-row {
    font-weight: bold!important;
}
.price_sub{
    font-weight: 400!important;
}

/*** Concerns ***/

/* Layout remains the same */
.concern-row-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    margin-bottom: 20px; 
}

.concern-item {
    width: calc(50% - 10px); 
    border: 1px solid #C882B1;
    padding: 15px;
    box-sizing: border-box;
}

.concern-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.concern-title {
    margin: 0;
    font-size: 1.3em;
}

.concern-content {
    display: none;
    padding-top: 15px;
    border-top: 1px solid #C882B1;
    margin-top: 15px;
}

/* --- Icon Animation Changes --- */

.toggle-icon {
    font-size: 1.2em;
    color: #C882B1;
    /* Add smooth transition for rotation */
    transition: transform 0.3s ease-in-out;
    display: inline-block; /* Essential for transform to work properly */
}

/* When the item is open, rotate the plus 45 degrees to look like a cross */
.concern-item.is-open .toggle-icon {
    transform: rotate(45deg);
}

/* Optional: change the item's appearance when open */
.concern-item.is-open {
    background-color: #f9f9f9;
}



/*** Responsive ***/


@media (max-width:1700px) {

    section.grid_three_column.condition_grid_column.treatment_listing {
        padding-top: 70px !important;
    }

    .three_column_section .wrapper.flex .column:nth-child(3) {
        padding-left: 44px;
    }

    .stories_grid_column .grid-layout .img_block img {
        height: 330px;
    }

    .Journeys_slider_section .slider_left .title span {
        font-size: 80px;
        line-height: 60px;
    }

    .Journeys_slider_section .slider_left {
        padding-right: 60px;
    }

    .logo_slider_section .logo_slider {
        padding: 0px;
    }

    .site_footer {
        padding: 63px 0px 90px;
    }

    .three_column_section .column .img img {
        height: 700px;
    }

    .three_column_section .column .img:after {
        height: 700px;
    }

    .banner_section.inner_banner .container {
        bottom: 70px;
    }

    .treatment_popup_section .tab span {
        margin: 0;
        position: absolute;
        top: -64px;
        left: -98px;
    }

    .treatment_popup .img img {
        height: 320px;
    }

    .treatment_popup .owl-item .content {
        height: calc(100% - 465px);
    }

    .treatment_popup .owl-nav {
        bottom: 40px;
    }

    .treatment_popup_section .full_img img {
        height: 840px;
    }

    .treatment_popup_section .tab:nth-child(4) span {
        top: -9px;
        left: -240px;
    }

    .treatment_popup_section .tab:nth-child(4) {
        left: 67%;
    }

    .treatment_popup {
        width: 420px;
    }

    .treat_split_section .two_column_skintreatment {
        padding: 0 0 100px;
    }
}

@media (max-width:1400px) {
    .treatment_popup {
        width: 350px;
    }

    .treatment_popup_section .tab:nth-child(2) {
        left: 36%;
    }

    .treatment_popup .owl-item .content {
        padding: 30px 30px 20px 30px;
    }

    .before_after_section .movement_content,
    .before_after_section .img_block .image-before,
    .before_after_section .image-container {
        height: 450px;
    }

    .clinic_two_column .wrapper.flex .column:nth-child(2) {
        padding-left: 30px;
    }

    .two_column_skintreatment .image_block img {
        height: 466px;
    }

}

@media (max-width:1199px) {

    .before_after_section.vertical .img_block .image-before {
        height: 50%;
    }

    .banner_section {
        height: 800px;
    }

    .three_column_section .column .img img,
    .three_column_section .column .img:after {
        height: 520px;
    }

    .three_column_section .column .img {
        position: relative;
        padding-top: 30px;
        padding-left: 30px;
    }

    .treatment_section {
        padding: 100px 0px 31px;
    }

    .Journeys_slider_section .slider_left .title span {
        font-size: 70px;
        line-height: 75px;
    }

    .stories_grid_column {
        padding-left: 30px;
    }

    .site_footer .footer_r {
        width: 64%;
    }

    .treatment_popup {
        width: 100%;
        position: relative;
    }

    .inner_treatment .full_img {
        display: none;
    }

    .treatment_popup .img img {
        height: 420px;
    }

    .treatment_popup .owl-item .content {
        height: auto;
    }

    .inner_treatment .tabs {
        display: none;
    }

    .treatment_popup .owl-item .content {
        padding: 40px 40px 150px;
    }

    .treatment_popup .owl-nav {
        bottom: 46px;
    }

    .before_after_section .movement_content,
    .before_after_section .img_block .image-before,
    .before_after_section .image-container {
        height: 400px;
    }

    .grid_three_column .img_block img {
        height: 300px;
    }

    .grid_three_column .title {
        margin-bottom: 52px;
    }

    .category_block ul li a {
        min-width: 200px;
    }

    .clinic_two_column .column .img img {
        height: 630px;
    }

    .clinic_two_column .column .img:after {
        height: 630px;
    }

    .treat_split_section .two_column_skintreatment .column:nth-child(2) {
        padding-top: 60px;
        padding-left: 60px;
    }

    .treat_split_section .two_column_skintreatment:nth-child(even) .flex .column:nth-child(2) {
        padding-left: 0;
        padding-right: 60px;
    }

    .two_column_skintreatment .image_block img {
        height: 371px;
    }

    .two_column_skintreatment .tabs-content {
        padding: 0;
    }

    .treat_split_section .two_column_skintreatment {
        padding: 0 0 70px;
    }

    .about_two_column.journey_column {
        padding: 70px 0px;
    }

    .two_column_section .wrapper {
        min-height: 575px;
    }

    .artical_listing .wrapper .item {
        width: 50%;
    }

    .contact_section .column:nth-child(2) {
        padding-left: 0px;
    }

    .g_review_section {
        padding: 100px 0px 10px;
    }

    .g_review_section.g_review_section_treatment {
        padding: 100px 0px 10px;
    }

    .g_review_section.g_review_section_treatment.g_review_journey {
        padding: 100px 0px 60px;
    }

    .treatment_information .title_subtitle h2 {
        line-height: 40px;
    }
}

@media (max-width: 1080px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width:991px) {
    .testimonial .right_column .content{
      padding-left: 25px;
    }
    .testimonial .right_column .content p {
      font-size: 30px;
      line-height: 40px;
    }
    .testimonial .right_column .content b, .testimonial .right_column .content strong {
      font-size: 36px !important;
    }
    section.grid_three_column.condition_grid_column.treatment_listing {
        padding-top: 210px;
    }

    .banner_section .container {
        bottom: 75px;
    }

    .banner_section .mouse_scroll {
        /* bottom: -33px; */
    }

    .split_section .split_block .item:nth-child(2) {
        padding-left: 30px;
    }

    .split_section .split_block:nth-child(even) .two_column .item:nth-child(2) {
        padding-left: 0px;
        padding-right: 30px;
    }

    .three_column_section .wrapper.flex .column:nth-child(1) {
        padding-right: 0px;
        width: 100%;
        margin-bottom: 30px;
    }

    .three_column_section .wrapper.flex .column:nth-child(1) h2 span {
        display: inline-block;
    }

    .three_column_section .wrapper.flex .column {
        width: 50%;
    }

    .three_column_section .wrapper.flex .column:nth-child(3) {
        padding-left: 44px;
        width: 50%;
    }

    .treatment_section {
        padding: 70px 0px 30px;
    }

    .treatment_section .treatment_slider .owl-dots {
        margin-top: 50px;
    }

    /*header .header_wrapper .site_logo a img {
        max-width: 180px;
    }*/

    header .header_wrapper .icon_block ul li {
        margin-left: 20px;
    }

    header .header_wrapper .icon_block {
        width: 10%;
    }

    header .header_wrapper .site_logo {
        width: 80%;
    }

    header .header_wrapper .menu_bar {
        width: 10%;
    }

    .Journeys_slider_section .slider_left {
        padding-right: 0px;
        width: 100%;
        padding-bottom: 50px;
    }

    .Journeys_slider_section .slider_wrapper {
        flex-wrap: wrap;
    }

    .Journeys_slider_section .slider_left .description {
        max-width: 100%;
    }

    .Journeys_slider_section .slider_right {
        width: 100%;
    }

    .stories_title {
        width: 100%;
        margin-bottom: 30px;
    }

    .our_stories_wrapper {
        flex-wrap: wrap;
    }

    .stories_grid_column {
        padding-left: 0px;
        width: 100%;
    }

    .stories_grid_column .grid-layout.column-2 .item {
        width: calc(50% - 20px);
        margin: 0 10px;
    }

    .stories_grid_column .grid-layout {
        margin: 0 -10px;
    }

    .site_footer .footer_l {
        width: 100%;
    }

    .site_footer .footer_r {
        width: 100%;
        padding-top: 50px;
    }

    .site_footer {
        padding: 70px 0px;
    }

    .site_footer .copy_right {
        display: none;
    }

    .site_footer .copy_right.mobile {
        display: block;
    }

    .site_footer .copy_right.mobile a {
        color: var(--black)
    }

    .logo_slider_section .owl-stage .item img {
        height: 150px;
    }

    .site_footer .footer_r .address p {
        margin-bottom: 20px;
    }

    .two_column_description {
        padding: 70px 0px;
    }

    .two_column_description .grid-layout.column-2 .item {
        width: calc(50% - 20px);
        margin: 0 10px;
    }

    .two_column_description .grid-layout {
        margin-left: -10px;
        margin-right: -10px;
    }

    .treatment_information {
        padding: 70px 0px;
    }

    .treatment_information .left_column {
        padding-right: 15px;
    }

    .treatment_information .info_list ul li {
        padding: 23px 15px;
    }

    .treatment_popup_section {
        padding: 70px 0;
    }

    .before_after_section .grid-layout.column-3 .item {
        width: calc(50% - 20px);
        margin: 0 10px;
        margin-bottom: 20px;
    }

    .before_after_section .grid-layout {
        margin-left: -10px;
        margin-right: -10px;
    }

    .before_after_section {
        padding: 70px 0px 54px;
    }

    .treatment_information.appointment_twocolumn {
        padding: 70px 0;
    }

    .grid_three_column {
        padding: 70px 0;
    }

    .grid_three_column .grid-layout .item {
        width: calc(50% - 14px);
    }

    .grid_three_column .grid-layout .item {
        padding-bottom: 14px;
    }

    .grid_three_column .grid-layout .item .content_block {
        padding: 25px;
    }

    .two_column_skintreatment .column:first-child {
        width: 100%;
    }

    .two_column_skintreatment .column:nth-child(2) {
        width: 100%;
        padding-left: 0px;
        margin-top: 50px;
    }

    .two_column_skintreatment {
        padding: 70px 0;
    }

    .category_block {
        margin-bottom: 40px;
    }

    .grid_three_column.condition_grid_column .item.two_c {
        width: 100%;
    }

    .grid_three_column.condition_grid_column {
        padding: 70px 0px;
    }

    .clinic_two_column .wrapper.flex .column:nth-child(1) {
        padding-right: 0px;
    }

    .clinic_two_column .wrapper.flex {
        align-items: flex-start;
    }

    .clinic_two_column {
        padding: 70px 0px;
    }

    .about_two_column .wrappre.image_column .item img {
        height: 450px;
    }

    .treat_split_section .two_column_skintreatment:nth-child(even) .flex .column:nth-child(2) {
        padding-left: 0;
        padding-right: 0px;
    }

    .treat_split_section .two_column_skintreatment .column:nth-child(2) {
        padding-top: 0px;
    }

    .treat_split_section .two_column_skintreatment {
        padding: 70px 0 70px;
    }

    .treat_split_section .two_column_skintreatment .column:nth-child(2) {
        padding-left: 0px;
    }

    .two_column_section {
        padding: 70px 0;
    }

    .artical_listing .flex .flex span {
        font-size: 16px;
        line-height: 24px;
    }

    .two_column_description.news_column .item:nth-child(2) .content_block .content {
        padding-left: 15px;
    }

    .full_description {
        padding: 70px 0px;
    }

    .contact_section .column:first-child {
        padding-right: 40px;
        padding-left: 0px;
    }

    .contact_section {
        padding: 70px 0;
    }

    section.page_not_found,
    .search section.default-layout {
        padding: 210px 0px 70px;
    }

    .condition_grid_column .item:not(:first-child) .content_block {
        padding: 25px 25px 43px 25px;
    }
}


@media(max-width:767px) {
    :root {
        --space-70: 50px;
        --space-80: 50px;
        --space-90: 50px;
        --space-100: 50px;
        --space-120: 60px;
    }

    h1 {
        font-size: 50px;
        line-height: 60px;
    }

    h2 {
        font-size: 35px;
        line-height: 40px;
    }

    h3 {
        font-size: 30px;
        line-height: 35px;
    }

    h4 {
        font-size: 26px;
        line-height: 30px;
    }

    h5 {
        font-size: 22px;
        line-height: 28px;
    }

    h6 {
        font-size: 16px;
        line-height: 21px;
    }

    header .header_wrapper {
        padding: 20px;
    }

    header .header_wrapper .icon_block ul li a img {
        height: 20px;
    }

    header .header_wrapper .humburger {
        width: 45px;
        height: 45px;
    }

    header .header_wrapper .menu_c h3 {
        font-size: 20px;
        line-height: 25px;
        margin-left: 10px;
    }

    header .header_wrapper .humburger span {
        width: 23px;
        margin: 4px;
    }
    header .header_wrapper .site_logo a img {
        max-width: 200px;
    }
    header .header_wrapper .icon_block {
        width: 25%;
    }
    header .header_wrapper .site_logo {
        width: 50%;
    }
    header .header_wrapper .menu_bar {
        width: 25%;
    }
    .banner_section .banner_content h1 {
        color: #fff;
        font-size: 35px;
        line-height: 42px;
    }

    .banner_section .banner_content h1 span {
        font-size: 28px;
        line-height: 35px;
    }
    .testimonial .right_column .content{
        padding: 0 20px;
    }
    .testimonial .right_column .content p {
      font-size: 30px;
      line-height: 40px;
      font-family: "ivyora-display", serif;
      margin: 0;
      font-weight: 400;
      text-align: center;
    }
    .banner_section.inner_banner .full_image{
        height: 300px;
    }
    .concern-item {
      width: 100%;
    }
    .split_section .title p {
        font-size: 18px;
        line-height: 24px;
    }

    .split_section .split_block .item:first-child {
        width: 100%;
        margin-bottom: 30px;
    }

    .split_section .split_block .item:nth-child(2) {
        padding-left: 0px;
        width: 100%;
    }

    .split_section .split_block:nth-child(even) .two_column .item:nth-child(2) {
        padding-left: 0px;
        padding-right: 0px;
    }

    section.grid_three_column.condition_grid_column.treatment_listing {
        padding-top: 350px;
    }

    .three_column_section .wrapper.flex .column .content p {
        font-size: 18px;
        line-height: 24px;
    }

    .three_column_section {
        padding: 50px 0px;
    }

    .treatment_section .container {
        padding:0 20px;
    }

    .treatment_section {
        padding: 50px 0px 30px;
    }

    .title {
        margin-bottom: 30px;
    }

    .treatment_section .treatment_slider .owl-nav button {
        display: none;
    }

    .Journeys_slider_section .slider_left .title span {
        font-size: 50px;
        line-height: 60px;
    }

    .Journeys_slider_section .slider_left .description p {
        font-size: 18px;
        line-height: 24px;
    }

    .Journeys_slider_section .slider_right img {
        height: 100%;
    }

    .Journeys_slider_section .slider_right .img {
        height: 650px;
    }

    .site_footer {
        padding: 50px 0px;
    }

    .site_footer .footer_r .menu_column:first-child {
        width: 100%;
        margin-bottom: 30px;
    }

    .site_footer .footer_r .menu_column:nth-child(2) {
        width: 50%;
    }

    .site_footer .footer_r .menu_column:nth-child(3) {
        width: 50%;
    }

    .menu_open .header_menu {
        width: 100%;
    }

    .header_menu .navigation {
        padding-left: 0px;
    }

    .header_menu .manu-list ul li {
        margin-bottom: 10px;
    }

    .sticky_block ul li a {
        width: 50px;
        height: 50px;
    }

    .banner_section.inner_banner .banner_content span {
        font-size: 24px;
        line-height: 36px
    }

    .banner_section.inner_banner .container {
        bottom: 20px;
    }

    .two_column_description {
        padding: 50px 0px;
    }

    .two_column_description .grid-layout.column-2 .item {
        width: 100%;
    }

    .two_column_description .item .content_block p {
        font-size: 18px;
    }

    .two_column_description .item .content_block .content h2 {
        line-height: 40px;
    }

    .two_column_description .grid-layout.column-2 .item {
        margin-bottom: 30px;
    }

    .two_column_description .grid-layout.column-2 .item:last-child {
        margin-bottom: 0px;
    }

    .treatment_information {
        padding: 50px 0px;
    }

    .treatment_information .left_column {
        padding-right: 0px;
        width: 100%;
    }

    .treatment_information .right_column {
        width: 100%;
        margin-top: 40px;
    }

    .title_subtitle h2 {
        margin-bottom: 20px;
    }

    .treatment_information .info_list ul li {
        padding: 15px;
        font-size: 18px;
        line-height: 24px;
    }

    .treatment_popup_section {
        padding: 50px 0;
    }

    .treatment_popup .owl-item .content h3 {
        font-size: 30px;
        margin-bottom: 0px;
        line-height: 35px;
    }

    .treatment_popup .owl-nav button {
        width: 35px;
        height: 35px;
        background-size: 15px !important;
    }

    .treatment_popup .owl-nav {
        left: 20px;
    }

    .treatment_popup .owl-item .content {
        padding: 30px 20px 150px;
    }

    .treatment_popup .owl-item .content p {
        font-size: 18px;
    }

    .treatment_popup .img img {
        height: 320px;
    }

    .before_after_section {
        padding: 50px 0px;
    }

    .before_after_section .grid-layout.column-3 .item {
        width: 100%;
    }

    .before_after_section .grid-layout.column-3 .item:last-child {
        margin-bottom: 0px;
    }

    .treatment_information.appointment_twocolumn {
        padding: 50px 0;
    }

    .treatment_information.appointment_twocolumn .right_column {
        margin-top: 20px;
    }

    .grid_three_column {
        padding: 50px 0;
    }

    .grid_three_column .title {
        margin-bottom: 30px;
    }

    .grid_three_column .grid-layout .item {
        width: 100%;
    }

    .two_column_skintreatment .tabs-content {
        padding: 0px;
    }

    .two_column_skintreatment {
        padding: 50px 0;
    }

    .two_column_skintreatment .image_block img {
        height: 474px;
    }

    .category_block ul li {
        margin: 0 23px 20px 0px;
    }

    .category_block {
        margin-bottom: 30px;
    }

    .category_block ul li a {
        min-width: auto;
        padding: 7px 28px 4px;
        font-size: 17px;
    }

    .category_block ul li {
        margin: 0px 5px;
    }

    .category_block ul {
        justify-content: space-between;
    }

    .grid_three_column.condition_grid_column {
        padding: 50px 0px;
    }

    .grid_three_column .grid-layout .item:last-child {
        padding-bottom: 0px;
    }

    .two_column_skintreatment .content_block p strong {
        font-size: 18px;
    }

    .clinic_two_column {
        padding: 50px 0px;
    }

    .clinic_two_column .wrapper.flex {
        padding: 0px;
    }

    .clinic_two_column .wrapper.flex .column {
        width: 100%;
    }

    .clinic_two_column .column .img img {
        height: 430px;
    }

    .clinic_two_column .column .img:after {
        height: 430px;
    }

    .clinic_two_column .wrapper.flex .column:nth-child(2) {
        padding-left: 0px;
        margin-top: 50px;
    }

    .clinic_two_column .wrapper.flex .column p {
        font-size: 18px;
    }

    .about_two_column {
        padding: 50px 0px;
    }

    .grid-layout.column-2 .item {
        width: 100%;
    }

    .about_two_column .description p strong {
        font-size: 18px;
    }

    .about_two_column .title {
        margin-bottom: 20px;
    }

    .about_two_column .wrappre.image_column .item:first-child {
        width: 100%;
        padding-right: 0px;
    }

    .about_two_column .wrappre.image_column .item:nth-child(2) {
        width: 100%;
        padding-left: 0px;
        margin-top: 30px;
    }

    .about_two_column .wrappre.image_column .item img {
        height: auto;
        width: 100%;
    }

    .two_column_skintreatment .image_block img {
        height: 360px;
    }

    .treat_split_section .two_column_skintreatment {
        padding: 50px 0px;
    }

    .treat_split_section .two_column_skintreatment .column:nth-child(2) {
        margin-top: 20px;
    }

    .about_two_column.journey_column {
        padding: 50px 0px;
    }

    .two_column_section .grid-layout .left_column {
        border-radius: 25px 25px 0px 0px;
    }

    .two_column_section .grid-layout .right_column {
        border-radius: 0px 0px 25px 25px;
    }

    .two_column_section .grid-layout .right_column.item:after {
        border-radius: 0px 0px 25px 25px;
    }

    .two_column_section .wrapper .text_content {
        padding: 40px;
    }

    .two_column_section .wrapper .primary_btn {
        margin-top: 20px;
    }

    .two_column_section {
        padding: 50px 0;
    }

    .artical_listing .wrapper .item {
        width: 100%;
    }

    .artical_listing .flex .flex span {
        text-align: left;
    }

    .artical_listing .flex h3 {
        width: 100%;
    }

    .artical_listing .flex .flex span {
        width: 100%;
        margin-bottom: 20px;
    }

    .artical_listing .flex .flex h3 {
        width: 100%;
    }

    .two_column_section .wrapper h4 {
        margin-bottom: 0px;
    }

    .two_column_section .wrapper h2 {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .two_column_section .wrapper p {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .two_column_description.news_column .item:nth-child(2) .content_block .content {
        padding-left: 0px;
    }

    .two_column_description .item .content_block figure {
        margin: 30px 0;
    }

    .full_description {
        padding: 50px 0px;
    }

    .full_description .content h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact_section .column:first-child {
        padding-right: 0px;
        padding-left: 0px;
        width: 100%;
    }

    .contact_section {
        padding: 50px 0;
    }

    .contact_section .address_block ul li {
        margin-bottom: 20px;
    }

    .contact_section .contact_block {
        margin: 20px 0px 25px;
    }

    .header_search_modal .search_box input[type="search"] {
        width: 100%;
        border-radius: 10px;
        border: 1px solid #CDCDCD;
        height: 55px;
        padding: 10px 110px 10px 20px;
        font-size: 20px;
    }

    .header_search_modal .search_box button {
        right: 10px;
        font-size: 15px;
        line-height: 21px;
        padding: 10px 19px 5px;
        top: 10px;
    }

    .header_search_modal {
        height: 200px;
    }

    .header_search_modal .close_icon {
        top: -56px;
        width: 30px;
        height: 30px;
    }

    .header_search_modal .close_icon span {
        width: 30px;
    }

    .header_search_modal .close_icon span:before,
    .header_search_modal .close_icon span:after {
        height: 30px;
    }

    .grid_three_column.condition_grid_column .item.two_c img {
        height: 300px;
    }

    .grid_three_column .grid-layout .item.two_c .content_block {
        padding: 20px;
    }

    .two_column_section .wrapper .primary_btn {
        min-width: auto;
        font-size: 17px;
        line-height: normal;
        height: 50px;
    }

    .contact_section .column {
        width: 100%;
    }

    .contact_section .column input {
        padding: 15px;
        font-size: 18px;
        line-height: 24px;
        height: 50px;
    }

    .contact_section .column textarea {
        padding: 15px;
        font-size: 18px;
        line-height: 24px;
    }

    .contact_section input.wpcf7-form-control.wpcf7-submit {
        font-size: 20px;
        color: #fff;
        height: 50px;
        min-width: 160px;
        min-height: 50px;
    }

    .blog_listing_pagination .page-numbers {
        font-size: 30px;
        line-height: 40px;
        padding: 0px 15px;
    }

    .blog_listing_pagination .next.page-numbers,
    .blog_listing_pagination .prev.page-numbers {
        width: 50px;
        height: 50px;
        margin-left: 15px;
    }

    .blog_listing_pagination .prev.page-numbers {
        margin-right: 15px;
        margin-left: 0px !important;
    }

    section.page_not_found,
    .search section.default-layout {
        padding: 135px 0px 50px;
    }

    article.search-entry {
        width: 100%;
    }

    .banner_section {
        height: 625px;
    }

    .banner_section.inner_banner {
        height: 370px;
    }

    .two_column_section .wrapper .left_column .img {
        height: 340px;
    }

    .inner_banner.banner_section .sticky_block {
        top: 85%;
    }

    .g_review_section.g_review_section_treatment.g_review_journey {
        padding: 100px 0px 50px;
    }

    .before_after_section .grid-layout.column-3 .item .img_block {
        max-width: 330px;
        margin: 0 auto;
    }
    .banner_section.inner_banner {
        height: 500px;
    }
    .treatment_section .treatment_slider .img img {
      width: 100%;
      height: 315px;
    }
    .treatment_section .treatment_slider .img {
      margin-bottom: 45px;
    }
    .banner_section.inner_banner .container-full {
        position: relative;
        height: 100%;
    }
    .banner_section.inner_banner .full_image img {
        height: 300px;
    }

    .banner_section.inner_banner.container-full .container {
        position: absolute;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .banner_section.inner_banner .banner_content {
        height: auto;
        position: absolute;
        width: 100%;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .banner_section .full_image img {
        height: 400px;
    }

    .banner_section .full_image {
        top: 170px;
        overflow: hidden;
        height: auto;
    }


    .banner_section .banner_content {
        position: relative;
        top: 0;
        transform: unset;
        left: 0;
    }

    .banner_section .container-inner {
        margin-top: -100px;
    }

    .banner_section .mouse_scroll {
        bottom: -50px;
        width: 35px;
        height: 48px;
    }
    .before_after_section.horizontal .image-container {
        height: 450px;
    }
    .before_after_section.horizontal .grid-layout.column-3 .item .img_block{
        max-width: 300px;
    }
    .price .title_subtitle{
        text-align: left;
    }
    .social{
        margin-top: 25px;
    }
}
@media(max-width:700px) {
    .strap .row {
      display: flex;
      flex-wrap: wrap;
    }
    .strap-column {
      width: 50%;
      padding: 0 10px;
      margin: 25px 0 0;
    }
}
@media(max-width:576px) {
    header .header_wrapper .icon_block ul li {
        margin-left: 6px;
    }

    header .header_wrapper .icon_block ul li a img {
        height: 17px;
    }

    header .header_wrapper {
        padding: 10px;
    }

    header .header_wrapper .humburger {
        width: 35px;
        height: 35px;
    }

    header .header_wrapper .humburger span {
        width: 20px;
        margin: 3px;
    }

    header .header_wrapper .menu_c h3 {
        font-size: 15px;
        line-height: normal;
        margin-left: 7px;
        margin-top: 3px;
    }
    /*header .header_wrapper .site_logo a img {
        max-width: 180px;
    }*/

    header .header_wrapper .icon_block {
        width: 15%;
    }
    header .header_wrapper .site_logo {
        width: 70%;
    }
    header .header_wrapper .menu_bar {
        width: 15%;
    }
    .menu_c {
      display: none;
    }
    .three_column_section .wrapper.flex .column:nth-child(3) {
        padding-left: 0px;
        width: 100%;
        margin-top: 30px;
    }

    .three_column_section .wrapper.flex {
        justify-content: center;
    }

    .three_column_section .wrapper.flex .column {
        width: 100%;
    }

    .Journeys_slider_section .slider_right .img {
        height: 425px;
    }

    .Journeys_slider_section .custom-prev-arrow,
    .Journeys_slider_section .custom-next-arrow {
        width: 40px;
        height: 40px;
    }

    .Journeys_slider_section .count_caption {
        min-width: auto;
    }

    .Journeys_slider_section .custom-next-arrow {
        margin-left: 10px;
    }

    .Journeys_slider_section .custom-prev-arrow {
        margin-right: 10px;
        margin-left: 0px;
    }

    .Journeys_slider_section .slider_arrow_count .caption span {
        font-size: 14px;
        line-height: 20px;
        padding-left: 7px;
    }

    .Journeys_slider_section .slider-counter:after {
        background-size: 36px;
    }

    .Journeys_slider_section .slider-counter {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .Journeys_slider_section .count_caption {
        padding: 5px 10px;
        justify-content: center;
    }

    .Journeys_slider_section .custom-prev-arrow,
    .Journeys_slider_section .custom-next-arrow {
        background-size: 15px;
    }

    .Journeys_slider_section .slider_arrow_count {
        bottom: 30px;
    }

    .stories_grid_column .grid-layout.column-2 .item {
        width: 100%;
        margin-bottom: 30px;
    }

    .logo_slider_section .owl-stage .item img {
        height: 90px;
    }

    .site_footer .footer_r .menu_column:nth-child(2) {
        width: 100%;
    }

    .site_footer .footer_r .menu_column:nth-child(3) {
        width: 100%;
        margin-top: 30px;
    }

    .site_footer .footer_r .menu_column ul li {
        margin-bottom: 10px;
    }

    .split_section .split_block .item .img img {
        height: 325px;
    }

}
@media(max-width:450px) {
    .strap-column h3 {
      font-size: 22px;
      margin-top: 25px;
    }
    .banner_section.inner_banner .full_image {
      top: 155px;
    }
    .full_image img {
      height: 300px;
    }
    .banner_section.inner_banner .full_image::after {
      height: 300px;
    }
    .banner_section.inner_banner .full_image img {
      object-fit: cover;
      object-position: left;
    }
}
@media(max-width:350px) {
    header .header_wrapper .site_logo a img {
        max-width: 86px;
    }
}


/* 
 body .before_after_section .grid-layout .img_block {
    position: relative;
    height: 550px;
}

body .before_after_section .grid-layout .image-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body .before_after_section .grid-layout .image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--position);

    object-fit: cover;
}

body .before_after_section .grid-layout .image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body .before_after_section .grid-layout .movement_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .before_after_section .grid-layout .slider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 20px;
    writing-mode: bt-lr;
    cursor: pointer;
    opacity: 0;
}

body .before_after_section .grid-layout .slider-line {
    position: absolute;
    top: var(--position);
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    pointer-events: none;
}

body .before_after_section .grid-layout .slider-button {
    position: absolute;
    top: var(--position);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

*/