@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
*, ::after, ::before {
    box-sizing: border-box;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
body {
	margin: 0;
    color: #333333;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}
header ul,
footer ul {
    margin: 0;
    padding: 0;
}
header li,
footer li {
    list-style: none;
}
a,
span {
    display: inline-block;
    color: inherit;
}
a {
	text-decoration: none;
    background-color: transparent;
}
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}
figure {
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
h1,h2,h3,h4,h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
h1 {
	font-size: 2.5rem;
	color: #ec9e8e;
}
h2 {
	font-size: 2rem;
	margin: 50px auto;
    padding: 15px 25px;
    width: fit-content;
    color: #ec9e8e;
    border: 5px double;
    border-width: 1px 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
	font-size: 1.25rem;
	margin: 0;
	margin-bottom: 0.5rem;
    line-height: 1.2;
}
h6 {
    font-weight: 600;
	font-size: 1rem;
}
p {
    font-size: 16px;
}
.cus-row {
    display: flex;
    justify-content: space-between;
}
.cus-btn-area {
    margin: 40px 0;
	text-align: center;
}
.cus-btn,
.cus-nav-btn a {
    color: #fff;
    border: 2px solid #ec9e8e;
    background: #ec9e8e;
    font-size: 16px;
    padding: 5px 30px;
    font-weight: 500;
    text-transform: uppercase;
	border: 7px inset;
    border-width: 0 0 5px 5px;
    border-radius: 10px;
}
.cus-btn:hover,
.cus-nav-btn a:hover {
    background: transparent;
    color: #ec9e8e;
    border-color: #ec9e8e;
}
.cus-nav-btn {
    margin-left: 5px;
}
.cus-nav-btn.current_page_item a {
    color: #fff;
}
.cus-btn-area .cus-btn:empty {
    display: none;
}
.video-area {
	margin: 25px 0 10px; 
}
.video-area iframe {
	width: 325px;
    height: auto;
    aspect-ratio: 1 / 1.78;
}
header .cus-col {
    position: relative;
}
header .cus-col:first-child {
    margin-right: auto;
}
header .cus-col:nth-child(2), header .cus-col:nth-child(3) {
    padding-right: 25px;
    margin-right: 25px;
    display: flex;
    align-items: center;
}
header .cus-col:nth-child(2):after, header .cus-col:nth-child(3):after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 35px;
    width: 2px;
    background: #ec9e8e;
    margin: auto;
}
.cus-head-icon {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 40px;
}
.cus-head-icon i {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ec9e8e;
    color: #fff;
}
.cus-head-icon p {
	margin: 0;
}
.cus-head-icon span {
	display: block;
}
.nav-menu-icon {
    width: 30px;
    height: 25px;
    position: relative;
    margin: 0 0 0 auto;
    display: block;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}
.nav-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ec9e8e;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-menu-icon:hover span {
    background: #ec9e8e;
}
.nav-menu-icon span:nth-child(1) {
    top: 0px;
}
.nav-menu-icon span:nth-child(2),
.nav-menu-icon span:nth-child(3) {
    top: 10px;
}
.nav-menu-icon span:nth-child(4) {
    top: 20px;
}
.nav-menu-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-menu-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
#breadcrumbs {
    font-size: 18px;
    color: #000;
}
#breadcrumbs a {
    color: #ec9e8e;
    font-weight: 700;
}
/* header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
} */
header .inner {
    padding: 15px 0;
}
header .cus-row,
.home-text-img-sec .cus-row {
    align-items: center;
}
header .logo a {
    max-width: 250px;
    display: block;
}
header nav ul {
    display: flex;
    align-items: center;
	justify-content: center;
}
header nav ul li a {
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 30px;
}
.current-menu-item > a,
header nav ul li a:hover,
header nav ul li a:focus {
    color: #ec9e8e;
}
.cus-link a {
	color: #ec9e8e;
	text-decoration: underline
}
.home-main-sec,
.video,
.celeb,
.treatment-sec,
.treat-info {
	text-align: center;
}
.home-main-sec,
.video,
.celeb,
.insta {
	padding: 25px 0;
	background: #f9f9f9;
}
.home-main-sec figure {
	margin: 25px 0;
}
.home-main-sec img {
	width: 100%;
}
.intro .inner {
    border: 3px double #ec9e8e;
    padding: 15px;
    background: rgb(236 158 142 / 10%);
}
.intro .cus-row,
.video .cus-row,
.celeb .cus-row {
	gap: 20px;
	align-items: center;
}
.intro .cus-col,
.video .cus-col,
.celeb .cus-col {
	width: 50%;
}
.video figure img {
	margin: 25px auto;
}
.treatment-sec,
.reels,
.treat-info,
.faqs {
	overflow: hidden;
	background: rgb(236 158 142 / 10%);
	padding: 50px 0;
}
.treatment-sec img,
.treat-info img {
	margin: auto;
}
.treatment-sec figure figcaption {
    margin: 25px 0;
    text-transform: uppercase;
    color: #ec9e8e;
    font-weight: 500;
}
.treatment-sec .swiper {
	overflow: visible;
}
.treatment-sec h3 {
    margin: 25px auto;
    padding: 15px 25px;
    width: fit-content;
    color: #ec9e8e;
    border: 5px double;
    border-width: 0 5px;
    border-radius: 10px;
}
.treatment-sec .swiper figure {
    border: 10px inset #ec9e8e;
    background: #fff;
    margin: 15px;
}
.reels iframe {
    width: 100%;
}
.cus-areas-sec {
	display: none;
}
.insta iframe {
	margin: auto !important;
}
.faqs .faq-row {
    border-bottom: 1px solid;
    padding-bottom: 25px;
}




.home-text-img-sec {
    text-align: center;
    border-bottom: 1px solid #ec9e8e;
    position: relative;
}
.home-text-img-sec .swiper-slide {
	padding: 150px 0 40px;
}
.home-text-img-sec .text-img-bg {
    background: no-repeat center center/cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -350px;
    z-index: -1;
}
.home-text-img-sec .cus-col {
    width: 40%;
}
.home-text-img-sec .cus-col:first-child {
    width: 60%;
}
.home-text-img-sec figure {
    border-radius: 35% 0 0 50%;
    overflow: hidden;
}
.cus-ban-img-full figure {
    border-radius: 0;
}
.cus-ban-img-full figure img {
    width: 100%;
}
.home-text-img-sec h1 {
    color: #ec9e8e;
    font-size: 70px;
}
.promo-services {
    padding: 40px 0;
    background: rgb(236 158 142 / 10%);
    text-align: center;
}
.promo-services-box {
    border: 2px solid #ec9e8e;
}
.promo-services-box figure {
    background: no-repeat center center/100% 100%;
    padding: 1px;
}
.promo-services-inner {
    padding: 75px 15px 0;
}
.promo-services-inner img {
    width: 85%;
    height: 250px;
    object-fit: contain;
    margin: 0 auto 25px;
}
.promo-services-inner h4 {
    color: #ec9e8e;
    min-height: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	font-weight: 500;
}
.promo-services-inner h4 strong {
    margin: 2px 5px;
    display: inline-block;
    font-weight: 500;
}
.promo-services-inner h6 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: url('https://bgmedicalaesthetics.com/wp-content/uploads/2025/08/award-icon.png') no-repeat center center/contain;
    width: 120px;
    height: 135px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
	justify-content: center;
	flex-direction: column;
    margin: 0;
    padding: 0 16px;
}
.promo-services-inner p {
    line-height: 1.2;
    font-size: 14px;
	display: flex;
	min-height: 120px;
	align-items: center;
}
.promo-services-box figure .cus-btn-area {
	margin-top: 0;
    margin-bottom: 30px;
}
.home-text-img-sec .swiper-button-next, .home-text-img-sec .swiper-button-prev,
.promo-services .swiper-button-next, .promo-services .swiper-button-prev {
    color: #fff;
    background: #ec9e8e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
}
.home-text-img-sec .swiper-button-next:after, .home-text-img-sec .swiper-button-prev:after,
.promo-services .swiper-button-next:after, .promo-services .swiper-button-prev:after {
    font-size: 20px;
}
/* .promo-services figure a {
    display: block;
    position: relative;
}
.promo-services figure a:hover:before {
    content: "Click to View";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(253 245 243 / 90%);
    font-weight: 700;
    text-transform: uppercase;
}
.promo-services .cus-btn {
    cursor: pointer;
} */
.three-col-sec {
    padding: 40px 0;
}
.three-col-sec .cus-row {
    gap: 15px;
}
.three-col-sec .cus-col {
    width: 33.33%;
}
.three-col-box {
    text-align: center;
    border: 2px solid #ec9e8e;
    height: 100%;
}
.three-col-box-top {
    position: relative;
}
.three-col-box-top figure {
    height: 215px;
}
.three-col-box-top figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.three-col-box-top h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 15px;
    text-shadow: 2px 2px #333333;
    text-align: center;
}
.three-col-box-bot {
    padding: 30px;
}
.google-reviews,
.testimonials,
.join-us,
.bg-sec {
    position: relative;
}
.google-reviews-bg,
.testimonials-bg,
.join-bg {
    background: no-repeat center center/cover;
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% + 50px);
}
.google-reviews-bg,
.join-bg {
    left: 0;
}
.google-reviews .cus-row,
.join-us .cus-row {
    justify-content: flex-end;
}
.google-reviews .cus-col,
.testimonials .cus-col,
.join-us .cus-col {
    position: relative;
    width: 50%;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.google-reviews .cus-col,
.join-us .cus-col {
    padding: 30px 15px 30px 75px;
}
.google-reviews .cus-col:before, .google-reviews .cus-col:after,
.testimonials .cus-col:before, .testimonials .cus-col:after,
.join-us .cus-col:before, .join-us .cus-col:after {
    content: "";
    position: absolute;
    height: 50%;
    border: 50px solid #fff;
}
.google-reviews .cus-col:before, .google-reviews .cus-col:after,
.join-us .cus-col:before, .join-us .cus-col:after {
    left: 0;
    border-left: none;
}
.google-reviews .cus-col:before,
.testimonials .cus-col:before,
.join-us .cus-col:before {
    top: 0;
    border-bottom: 40px solid transparent;
}
.google-reviews .cus-col:after,
.testimonials .cus-col:after,
.join-us .cus-col:after {
    bottom: 0;
    border-top: 40px solid transparent;
}
.promo-services h2,
.google-reviews h2,
.testimonials h2,
.join-us h2 {
    text-transform: uppercase;
    color: #ec9e8e;
}
.treatment {
    margin: 30px 0;
}
.treatment .inner {
    border: 2px solid #ec9e8e;
    padding: 40px 40px 40px 0;
    background: rgb(236 158 142 / 10%);
}
.treatment h2 {
    color: #ec9e8e;
}
.treatment .cus-row {
    align-items: center;
}
.treatment .cus-col {
    width: 60%;
}
.treatment .cus-col:first-child {
    width: 40%;
}
.treatment-inner {
    max-width: 300px;
    margin: auto;
    text-align: center;
    padding: 15px;
}
.treatment .cus-btn-area {
    margin-top: 50px;
}
.treatment .cus-btn {
    text-transform: capitalize;
    padding: 15px 30px;
}
.testimonials-bg {
    right: 0;
}
.testimonials .cus-row {
    justify-content: flex-start;
}
.testimonials .cus-col {
    padding: 30px 75px 30px 15px;
}
.testimonials .cus-col:before, .testimonials .cus-col:after {
    right: 0;
    border-right: none;
}
.bg-sec-bg {
    background: no-repeat center center/cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.bg-sec .inner {
    padding: 40px;
}
.bg-sec-inner {
    background: rgb(255 255 255 / 75%);
    padding: 40px;
    text-align: center;
    border: 2px solid #EC9E8E
}
.bg-sec-inner h4 {
    margin-bottom: 40px;
}
.bg-sec-inner h4 a {
    color: #ec9e8e;
}
.bg-sec-inner figure {
    max-width: 80%;
    width: 350px;
    margin: auto;
}
.blog-view .inner {
    padding: 75px 0;
}
.blog-view h2 {
    text-transform: uppercase;
    text-align: right;
    color: #ec9e8e;
}
.blog-view .blog-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 50%;
    background: rgb(255 255 255 / 75%);
    border: 1px solid #ec9e8e;
}
.blog-view h5 {
    color:#ec9e8e
}
.blog-view .blog-text-view {
    padding: 25px;
}
.blog-view .blog-box figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-view .cus-btn-area {
    text-align: right;
    margin: 20px 0 0;
}
.blog-view .blog-box:first-child {
    position: absolute;
    left: 0;
    width: calc(50% + 1px);
}
.blog-view .blog-box:first-child figure a {
    height: 150px;
    display: block;
}
.blog-view .blog-box p {
    max-height: 80px;
    overflow: hidden;
    margin-bottom: 0;
}
.blog-view .blog-box:not(:first-child) {
    display: flex;
    border-left: 1px solid #ec9e8e;
}
.blog-view .blog-box:not(:first-child) figure,
.blog-view .blog-box:not(:first-child) .blog-text-view {
    width: 50%;
}
.blog-view .blog-box:not(:first-child) .blog-text-view {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.blog-view .blog-box:not(:first-child) figure a {
    height: 200px;
    display: block;
}
.blog-view .blog-box:not(:first-child) p {
    display: none;
}
.blog-view .blog-box:nth-child(even) {
    flex-direction: row-reverse;
    border-bottom: 1px solid #ec9e8e;
}
.join-us .cus-col {
    flex-direction: column;
    justify-content: space-around;
}
.join-inner {
    text-align: center;
    width: 100%;
}
.join-inner ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-inner li {
    list-style: none;
    font-size: 24px;
    margin: 0 15px;
}
.newsletter-form {
    width: 100%;
}
.newsletter-form .forminator-label {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}
.newsletter-form .forminator-row-last {
    text-align: right;
}
.newsletter-form .forminator-button {
    border: 2px solid #ec9e8e !important;
    box-shadow: none !important;
    font-size: 16px !important;
    padding: 5px 30px !important;
    text-transform: uppercase !important;
    line-height: inherit !important;
}
.cus-areas-sec {
	margin: 25px 0 10px
}
.cus-areas-sec .cus-row {
	gap: 25px;
}
.cus-areas-sec .cus-col {
    width: 50%;
	border: 1px solid #ec9e8e;
    padding: 0 15px 10px;
    background: rgb(236 158 142 / 10%);
}
.cus-areas-sec h2 {
    text-align: center;
}
.cus-areas-sec ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
}
.cus-areas-sec li {
    list-style: none;
    padding: 5px;
    margin: 4px;
    box-shadow: 0 0 5px #ec9d8e66;
}
footer {
    border-top: 1px solid #ec9e8e;
}
footer .inner {
    padding: 5px 0;
}
footer .cus-row {
    align-items: center;
}
footer .cus-col {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
}
footer .privacy-link {
	width: 100%;
}
footer .privacy-link a {
	color: #ec9e8e;
}
footer p {
    margin: 0;
}
footer iframe {
	width: 250px;
    height: 120px;
    filter: grayscale(1);
}
footer figure {
    max-width: 100px;
	margin-right: 7px;
}
footer li {
    font-size: 14px;
}
.banner {
    background: no-repeat center center/cover;
    position: relative;
}
.banner-layer-light:before,
.banner-layer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 85%);
}
.banner-layer-light:before {
    background: rgb(255 255 255 / 50%);
}
.banner-layer-light .container,
.banner-layer .container {
    position: relative;
}
.banner .inner {
    min-height: 450px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text-img-sec .inner {
    padding: 30px 0;
}
.text-img-sec .cus-row,
.contact-form-map .cus-row {
    gap: 30px;
}
.text-img-sec .cus-col {
    width: 50%;
}
.text-img-sec h2,
.partners-logo h2,
.cus-areas-sec h2 {
    color: #ec9e8e;
}
.team,
.services {
    background: #F9F8F8;
}
.team {
    display: none;
}
.team .inner,
.services .inner {
    padding: 50px 0;
}
.team h2 {
    padding-bottom: 50px;
    position: absolute;
}
.team .swiper {
    padding-top: 100px;
}
.team .team-box {
    padding-bottom: 100px;
}
.team .team-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    width: 100%;
    padding: 25px 20px;
    color: #444;
    text-align: center;
    overflow: hidden;
    background: #f9f8f8;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    transition: .3s all ease;
}
.team .team-box:hover .team-text {
    background: #ec9e8e;
    color: #fff;
    width: 100%;
    height: 150px;
}
.team h3 {
    margin: 5px;
}
.team .team-box:hover h3 a,
.team .team-box:hover h5 {
    color: #fff;
}
.team h5 {
    color: #555;
}
.team .team-box figure {
    padding-bottom: 75%;
    position: relative;
}
.team .team-box figure img {
    max-width: none;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.team .social-list {
    bottom: -100px!important;
    transition: all .3s ease 0s;
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    z-index: 100;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%)scale(.5);
    -webkit-transition: .4s all ease;
    transition: .4s all ease;
}
.team .team-box:hover .social-list {
    bottom: 25px !important;
    opacity: 1;
    transform: translateX(-50%)scale(1);
}
.team .social-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.team .social-list ul li {
    list-style: none;
    margin: 5px;
}
.team .social-list li a {
    color: #fff;
    font-size: 16px;
}
.team .swiper-button-next,
.team .swiper-button-prev {
    top: 30px;
    background: #ec9e8e;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.team .swiper-button-next:before {
    content: "\f061";
}
.team .swiper-button-prev {
    right: 75px;
    left: initial;
}
.team .swiper-button-prev:before {
    content: "\f060";
}
.team .swiper-button-prev:after,
.team .swiper-button-next:after{
    display: none;
}
.award-sec .cus-row {
	align-items: center;
	flex-wrap: wrap;
}
.award-sec .cus-col {
    width: 33.33%;
    padding: 15px;
	margin: auto;
}
.about-gallery {
	padding-bottom: 30px;
}
.about-gallery .cus-row {
	gap: 10px;
	flex-wrap: wrap;
}
.about-gallery .cus-col {
	width: calc(25% - 7.5px);
}
.about-gallery .cus-col:last-child {
    margin-right: auto;
}
.about-gallery a {
	display: block;
	height: 100%;
}
.about-gallery figure {
    padding-bottom: 65%;
	position: relative;
}
.about-gallery figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}
.page-template-about .partners-logo {
    background: #F9F8F8;
}
.partners-logo h2 {
    text-align: center;
    margin-bottom: 30px;
}
.partners-logo .inner {
    padding: 30px 0;
}
.partners-logo figure {
    padding: 0 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo figure img {
    max-height: 100%;
    object-fit: contain;
}
.services .cus-row {
    flex-wrap: wrap;
    justify-content: normal;
    gap: 15px;
}
.services .cus-col {
    width: calc(33.33% - 10px);
}
.services-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.services-top figure {
    padding-bottom: 57%;
    position: relative;
}
.services-top figure a {
    display: block;
}
.services-top figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}
.services-bot {
    background: #fff;
    padding: 30px;
    padding-right: 25px;
    flex: 1;
}
.contact-info .inner {
    padding: 30px 0;
}
.contact-info .cus-row {
    gap: 15px;
}
.contact-info .cus-col {
    width: 33.33%;
}
.contact-info .contact-info-box,
.box-col-design {
    background: #F9F8F8;
    padding: 30px 15px;
    box-shadow: 2px 2px 10px 0px rgb(236 158 142 / 50%);
    border: 5px solid rgb(236 158 142 / 50%);
}
.contact-info .contact-info-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    color: #ec9e8e;
    font-size: 28px;
    border: 5px solid rgb(236 158 142 / 50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-info h5 {
    margin: 15px 0 10px;
    text-align: center;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-map .inner {
    padding: 0 0 30px;
}
.contact-form-map .cus-col {
    width: 50%;
}
.contact-form-inner {
    padding: 50px;
    background: #F9F8F8;
}
.contact-form-map iframe {
/*     filter: invert(1); */
	filter: grayscale(1);
    display: block;
    height: 100%;
}
.contact-form-inner form {
    margin: 0 !important;
}
.contact-form-inner form .forminator-row:nth-child(2) {
    display: flex;
    justify-content: space-between;
}
.contact-form-inner form .forminator-col-6 {
    width: calc(50% - 10px);
}
.blog-main-view {
    background: #f9f8f8;
    padding: 50px 0;
}
.blog-main-view .inner {
    display: flex;
    gap: 50px;
}
.blog-main-view article {
    width: 66.66%;
}
.blog-main-view .blog-area {
    margin-bottom: 30px;
    background: #fff;
}
.blog-main-view .blog-area:last-child {
    margin-bottom: 0;
}
.blog-main-view .blog-main-top a {
    display: block;
}
.blog-main-view .blog-main-bot {
    padding: 30px;
}
.blog-main-view .blog-main-bot-list {
    padding: 0;
    margin: 15px 0 25px;
    display: flex;
}
.blog-main-view .blog-main-bot-list > li {
    margin-right: 15px;
    list-style: none;
    font-size: 16px;
}
.blog-main-view .blog-main-bot-list > li:last-child {
    margin: 0;
}
.blog-main-view .blog-main-bot li i {
    margin-right: 5px;
    color: #ec9e8e;
}
.blog-main-view .blog-main-bot .cat-text,
.blog-main-view .blog-main-bot .post-categories {
    display: flex;
    align-items: center;
}
.blog-main-view .blog-main-bot .post-categories {
    margin: 0;
    padding: 0;
}
.blog-main-view .blog-main-bot .post-categories li {
    margin-left: 25px;
}
.blog-main-view .blog-main-bot .post-categories li:first-child {
    margin: 0;
    list-style: none;
}
.blog-main-view aside {
    width: 33.33%;
}
.blog-main-view .side-blog-main {
    position: sticky;
    top: 0;
}
.blog-main-view aside h4 {
    margin-bottom: 40px;
    position: relative;
}
.blog-main-view aside h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 40px;
    background: #ec9e8e;
}
.blog-main-view aside ul {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}
.blog-main-view aside li {
    list-style: none;
}
.blog-main-view .search-area {
    margin-bottom: 30px;
}
.blog-main-view .search-area input[type="search"] {
    border: 1px solid #efefef;
    color: #444;
    padding: 12px 17px;
    width: 100%;
    outline: none;
}
.blog-main-view .search-area button[type="submit"] {
    background: #ec9e8e;
    border: none;
    color: #fff;
    padding: 9px 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    font-size: 20px;
    outline: none;
}
.blog-main-view .side-post li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    padding-left: 15px;
}
.blog-main-view .side-post li:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.blog-main-view .side-post li:before {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    text-decoration: inherit;
    font-size: 12px;
    position: absolute;
    left: 0;
    color: #171f32;
}
.blog-main-view aside h6 {
    margin: 0;
}
.blog-main-view aside h6 a:hover {
    color: #ec9e8e;
}
.blog-main-view .side-cat ul,
.blog-main-view .side-tags ul,
.blog-main-view .side-area ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog-main-view .side-cat li,
.blog-main-view .side-tags li,
.blog-main-view .side-area li {
    border: 1px solid rgba(0,0,0,0.06);
    margin: 5px 5px 5px 0;
    padding: 2px 7px;
}
.blog-main-view .side-cat li:hover,
.blog-main-view .side-tags li:hover,
.blog-main-view .side-area li:hover {
    background: #ec9e8e;
    color: #fff;
    border: 1px solid #ec9e8e;
}
.blog-main-view .side-cat li:last-child,
.blog-main-view .side-area li:last-child {
    margin: 0;
}
.blog-main-view .side-cat li .children {
    display: none;
}
.blog-single-view {
    padding: 30px;
    background: #fff;
}
.blog-single-top {
    display: flex;
    padding: 0;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.blog-single-top li {
    list-style: inside square;
    margin: 10px 0 10px 10px;
    color: #ec9e8e;
    text-transform: uppercase;
}
.blog-single-top li:first-child {
    list-style: none;
    margin-left: 0px;
}
.blog-single-img {
    margin-bottom: 15px;
}
.blog-single-img img, .services-faq-img img {
    width: 100%;
}
.blog-single-view p a {
	color: #ec9e8e;
}
.blog-single-view .wp-block-gallery {
    margin: 15px 0;
}
.blog-single-view .cus-ar-popup {
    margin-bottom: 8px !important;
}
.blog-single-view ul li strong,
.blog-single-view ol li strong {
    color: #ec9e8e;
}
.blog-single-view h2,
.blog-single-view h3 {
    margin-bottom: 15px;
}
.cus-pagination {
	width: 100%;
}
.cus-pagination ul {
    display: flex;
    justify-content: center;
	padding: 0;
	margin: 0;
}
.cus-pagination li {
    list-style: none;
    margin: 0 7px;
    font-weight: 500;
    font-size: 18px;
}
.cus-pagination li.active {
    color: #ec9e8e;
}
.box-col-design {
    padding: 15px 15px 0;
}
.services-btn-view {
    display: flex;
    flex-wrap: wrap;
	gap: 10px;
}
.services-btns {
/*     padding: 0 10px; */
}
.services-btns a {
    padding: 10px 15px;
    background: #ec9e8e;
    border-radius: 15px 0;
    color: #fff;
}
.services-faq-row {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.cus-faq-top {
    position: relative;
    cursor: pointer;
}
.cus-faq-top h5 {
    padding-right: 30px;
    color: #ec9e8e;
}
.cus-faq-top .fa {
    position: absolute;
    right: 10px;
    top: 7px;
}
.cus-faq-top .fa-caret-down {
    color: #ec9e8e;
}
.cus-faq-top .cus-hide-icon {
    display: none;
}
.cus-faq-bot {
    display: none;
}
.cus-faq-bot p {
    margin: 0;
}
.error-404-sec {
    text-align: center;
    padding: 50px 0;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
    .container {
        max-width: 1190px;
    }
/* 	.header-mob-num {
		display: none;
	} */
	.cus-mob-head-btn {
		display: none;
	}
}
@media (min-width: 1300px) {
    .container {
        max-width: 1270px;
    }
}
@media (max-width: 1299px) {
    header nav ul li a {
        padding: 10px 20px;
    }
}
@media (max-width: 1199px) {
    .not-scroll {
        overflow: hidden;
    }
    #nav-menu-icon {
        display: block;
    }
    #nav-hamburger, header nav,
	header .cus-col:nth-child(2), header .cus-col:nth-child(3) {
        display: none;
    }
	header .inner {
		display: flex;
		align-items: center;
	}
    header .cus-row {
        align-items: center;
		width: 100%;
    }
	header .cus-col:last-child {
		display: flex;
		align-items: center;
	}
	.cus-mob-head-btn {
		margin: 0 15px 0 0;
	}
	.cus-head-icon {
		margin-right: 15px;
		padding-left: 30px;
	}
	.cus-head-icon i {
		width: 25px;
    	height: 25px;
		font-size: 12px;
		top: 1px;
	}
	header .navi {
		display: flex;
    	align-items: center;
	}
/* 	header .header-mob-num {
		margin-right: 15px;
		background: #ec9e8e;
		color: #fff;
		padding: 0 7px 1px;
	} */
    header nav {
        padding-top: 100px;
        position: fixed;
        right: 0px;
        top: 0px;
        bottom: 0px;
        background: #fdf5f3;
        min-width: 300px;
        box-shadow: #ec9e8e 0px 0px 10px;
    }
    header nav > div {
        padding: 0 25px 15px;
        overflow: auto;
        height: 100%;
    }
    header nav ul {
        flex-direction: column;
    }
    .cus-nav-btn:last-child a {
        margin-top: 15px;
    }
    .blog-view .blog-box:not(:first-child) figure a {
        height: 225px;
    }
}
@media (max-width: 991px) {
    .home-text-img-sec .swiper-slide {
        padding: 120px 0 40px;
    }
    .three-col-sec .cus-row,
    .treatment .cus-row,
    .text-img-sec .cus-row,
    .contact-info .cus-row,
    .contact-form-map .cus-row,
	.blog-main-view .inner {
        flex-wrap: wrap;
    }
    .three-col-sec .cus-col,
    .treatment .cus-col:first-child,
    .treatment .cus-col,
    .text-img-sec .cus-col,
    .contact-info .cus-col,
    .contact-form-map .cus-col,
    .blog-main-view article,
	.blog-main-view aside {
        width: 100%;
    }
    .google-reviews, .testimonials, .join-us {
        overflow: hidden;
    }
    .google-reviews-bg, .testimonials-bg, .join-bg {
        width: 100%;
        height: 500px;
    }
    .google-reviews .cus-col, .testimonials .cus-col, .join-us .cus-col {
        width: 100%;
        margin-top: 500px;
        padding: 30px 0;
        min-height: 0;
        justify-content: center;
    }
    .google-reviews .cus-col:before, .google-reviews .cus-col:after, .testimonials .cus-col:before, .testimonials .cus-col:after, .join-us .cus-col:before, .join-us .cus-col:after {
        width: 100%;
        height: auto;
        top: -49px;
        border-top: none;
        border-bottom: 50px solid #fff;
    }
    .google-reviews .cus-col:before, .testimonials .cus-col:before, .join-us .cus-col:before {
        left: -50%;
        border-right: 40px solid transparent;
        right: initial;
    }
    .google-reviews .cus-col:after, .testimonials .cus-col:after, .join-us .cus-col:after {
        right: -50%;
        border-left: 40px solid transparent;
        bottom: initial;
        left: initial;
    }
    .treatment .inner {
        padding: 30px;
    }
    .treatment-inner {
        margin-bottom: 20px;
    }
    .blog-view .blog-inner {
        padding: 0;
    }
    .blog-view .blog-box {
        border: none !important;
    }
    .blog-view .blog-box:first-child {
        position: static;
        display: flex;
        width: 100%;
    }
    .blog-view .blog-box figure, .blog-view .blog-box .blog-text-view {
        width: 50%;
    }
    .blog-view .blog-box figure a {
        height: 100% !important;
    }
    .blog-view .blog-box:not(:first-child) p {
        display: block;
    }
    .services .cus-col {
        width: calc(50% - 7.5px);
    }
    .contact-form-map iframe {
        height: 500px;
    }
	footer .cus-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 14px;
    }
    .home-text-img-sec .swiper-slide {
        padding: 120px 0 30px;
    }
    .promo-services,
    .three-col-sec,
    .bg-sec .inner,
    .blog-view .inner,
    .blog-main-view {
        padding: 30px 0;
    }
    .cus-btn-area,
    .treatment .cus-btn-area {
        margin-top: 30px;
    }
	header .cus-col:last-child {
		flex-direction: column;
	}
	.cus-mob-head-btn {
		margin: 0 10px 10px 0;
	}
    .services .cus-col,
	.cus-areas-sec .cus-col {
        width: 100%;
    }
    .google-reviews .cus-col:before, .google-reviews .cus-col:after, .testimonials .cus-col:before, .testimonials .cus-col:after, .join-us .cus-col:before, .join-us .cus-col:after {
        top: -39px;
        border-bottom: 40px solid #fff;
    }
    .google-reviews .cus-col:before, .testimonials .cus-col:before, .join-us .cus-col:before {
        border-right: 30px solid transparent;
    }
    .google-reviews .cus-col:after, .testimonials .cus-col:after, .join-us .cus-col:after {
        border-left: 30px solid transparent;
    }
	.award-sec .cus-row,
	.cus-areas-sec .cus-row {
		flex-direction: column;
	}
	.award-sec .cus-col {
		width: 100%;
	}
	.about-gallery .cus-col {
    width: calc(33% - 7.5px);
}
    .bg-sec-inner,
    .contact-form-inner {
        padding: 30px;
    }
    footer .cus-col {
        margin: 10px 0;
    }
}
@media (max-width: 575px) {
    body,
    h5,
    p,
    .cus-btn,
    .cus-nav-btn a {
        font-size: 13px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    h6 {
        font-size: 12px;
    }
    .cus-btn, .cus-nav-btn a {
        padding: 3px 15px;
    }
	.cus-head-icon {
		padding-left: 0;
	}
	.cus-head-icon i {
		display: none;
	}
    header .logo a {
        max-width: 150px;
    }
	.nav-menu-icon {
		width: 25px;
	}
	.nav-menu-icon span:nth-child(2), .nav-menu-icon span:nth-child(3) {
		top: 8px;
	}
	.nav-menu-icon span:nth-child(4) {
		top: 16px;
	}
/* 	header .header-mob-num {
		margin-right: 7px;
		font-size: 12px;
	} */
    .home-text-img-sec .swiper-slide {
        padding: 100px 0 15px;
    }
    .promo-services, .three-col-sec, .bg-sec .inner, .blog-view .inner, .text-img-sec .inner, .team .inner, .services .inner, .partners-logo .inner, .contact-info .inner, .blog-main-view {
        padding: 15px 0;
    }
    .cus-btn-area, .treatment .cus-btn-area,
    .contact-info h5 {
        margin: 15px 0 0;
    }
	.cus-mob-head-btn {
		margin: 0 10px 5px 0;
	}
    .three-col-box-bot,
    .treatment .inner,
    .bg-sec-inner,
    .blog-view .blog-text-view,
    .services-bot,
    .contact-info .contact-info-box,
    .contact-form-inner,
    .blog-main-view .blog-main-bot,
    .blog-single-view {
        padding: 15px;
    }
    .google-reviews-bg, .testimonials-bg, .join-bg {
        height: 300px;
    }
    .google-reviews .cus-col, .testimonials .cus-col, .join-us .cus-col {
        margin-top: 300px;
        padding: 15px 0;
        display: block;
    }
    .google-reviews .cus-col:before, .google-reviews .cus-col:after, .testimonials .cus-col:before, .testimonials .cus-col:after, .join-us .cus-col:before, .join-us .cus-col:after {
        top: -19px;
        border-bottom: 20px solid #fff;
    }
    .google-reviews .cus-col:before, .testimonials .cus-col:before, .join-us .cus-col:before {
        border-right: 15px solid transparent;
    }
    .google-reviews .cus-col:after, .testimonials .cus-col:after, .join-us .cus-col:after {
        border-left: 15px solid transparent;
    }
    .treatment,
    .bg-sec-inner h4,
    .partners-logo h2,
    .blog-main-view .blog-main-bot-list {
        margin: 0 0 15px;
    }
    .treatment-inner {
        padding: 0;
    }
    .treatment .cus-btn {
        padding: 5px 15px;
    }
    .blog-view .blog-box {
        flex-direction: column !important;
    }
    .blog-view .blog-box figure, .blog-view .blog-box .blog-text-view {
        width: 100% !important;
    }
    .blog-view .blog-box p {
        max-height: initial;
    }
    .banner .inner {
        min-height: 275px;
    }
    .text-img-sec .cus-row,
    .contact-form-map .cus-row {
        gap: 15px;
    }
    .partners-logo figure {
        padding: 0 10px;
    }
    .contact-form-map iframe {
        height: 400px;
    }
    .contact-form-inner form .forminator-row:nth-child(2) {
        flex-wrap: wrap;
    }
    .contact-form-inner form .forminator-col-6 {
        width: 100%;
    }
    .blog-single-top li {
        font-size: 12px;
    }
	.about-gallery .cus-col {
    width: calc(50% - 5px);
}
}


/* Chiness Site */


.page-id-490 header,
.page-id-490 .banner,
.page-id-490 footer {
    display: none;
}
.page-id-490 h2.has-text-align-center.has-text-color {
    position: relative;
    margin: 50px 0;
}
.page-id-490 h2.has-text-align-center.has-text-color:after {
    content: '';
    width: 100px;
    margin: 10px auto;
    height: 3px;
    background: #cecfcf;
    display: block;
}
.page-id-490 .container {
    max-width: none;
    padding: 0;
}
.page-id-490 .container > .wp-block-columns {
    border-bottom: 1px solid #c6c7c7;
    margin: 0;
    padding: 0 0 50px;
}
.page-id-490 .container > .wp-block-columns > div {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.page-id-490 .container > .wp-block-columns:nth-child(odd) {
    background: #fbfbfb;
}
.page-id-490 .container > .wp-block-columns > .wp-block-column .wp-block-columns {
    margin-bottom: 0;
}
.ch-header,
.ch-banner {
    margin: 0;
    padding: 0 !important;
}
.ch-header-right {
    gap: 25px;
    display: flex;
    justify-content: flex-end;
}
.ch-header-right > div {
    width: auto !important;
    flex-basis: initial !important;
    flex-grow: initial !important;
}
.ch-header > .wp-block-column > .wp-block-columns {
    padding: 20px 0;
    margin: 0;
    justify-content: space-between;
    align-items: center !important;
}
.ch-header .wp-block-image {
    max-width: 350px;
    margin: 0;
}
.ch-header-right {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.ch-header-right .wp-block-column {
    flex-basis: auto;
    flex-grow: initial;
}
.ch-header-right .wp-block-buttons {
    justify-content: flex-end;
}
.ch-header-right .wp-block-button {
    margin: 0;
}
.ch-header-right .wp-block-button__link {
    padding: 5px 15px;
    font-size: 18px;
    text-decoration: none;
    margin-left: auto;
}
.ch-banner figure {
    margin: 0;
}
.ch-spa-pop-item {
    text-align: center;
}
.ch-spa-pop-item ul,
.ch-about-lesha ul {
    padding: 0;
    margin: 0;
}
.ch-spa-pop-item li,
.ch-about-lesha li{
    list-style: none;
}
.ch-spa-pop-item li {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.ch-spa-pop-item-left,
.ch-spa-pop-item-right {
    text-align: center;
    margin: 15px 0 0;
}
.ch-spa-pop-item-left .wp-block-columns,
.ch-spa-pop-item-right .wp-block-columns {
    height: 100%;
}
.ch-spa-pop-item-box {
    background: #fbfbfb;
    padding: 0 10px 25px;
    border-radius: 5px;
    overflow: hidden;
}
.ch-spa-pop-item-box figure {
    margin: 0 -10px;
    height: 200px;
}
.ch-spa-pop-item-box figure img {
    height: 100%;
    object-fit: cover;
}
.ch-spa-pop-item-box h3 {
    margin-top: 25px;
}
.ch-skin-hot-prod .wp-block-columns {
    margin: 0 0 10px;
}
.ch-skin-hot-prod figure {
    margin-top: 50px;
}
.ch-skin-hot-prod figure img {
    display: block;
    margin: auto;
}
.ch-blog-area .wp-block-cover {
    border-radius: 20% 20% 20% 45% / 30% 20% 30% 20%;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.ch-blog-area .wp-block-cover:hover {
    border-radius: 0;
}
.ch-blog-area .cus-btn-area {
    text-align: center;
}
.ch-con-left h3, .ch-con-left p {
    margin: 0 0 10px;
}
.ch-con-left h4 {
    margin: 10px 0;
}
.ch-con-left .ch-con-ph, .ch-con-left .ch-con-qr, .ch-con-left .ch-con-email, .ch-con-left .ch-con-addr {
    margin-bottom: 20px;
}
.ch-con-qr figure {
    max-width: 120px;
    margin: 0 0 10px;
}
.ch-contact-area iframe, .ch-banner img, .ch-pop-items img {
    width: 100%;
}
.page-id-490 .container > .wp-block-columns.ch-footer {
    margin-bottom: 0;
    padding-top: 50px;
}
.ch-foot-copy {
    font-size: 16px;
}

.ch-foot-qr-code h4 {
    margin: 0;
    font-size: 18px;
}

.ch-foot-qr-code p {
    margin: 10px 0 0;
    font-size: 16px;
}

.ch-foot-qr-code figure {
    max-width: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 10px 0 0;
}

.ch-foot-contact ul {
    margin: 0;
    padding: 0;
}
.ch-foot-contact .foot-social ul {
    display: flex;
    align-items: center;
}
.ch-foot-contact li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 8px;
}
.ch-foot-contact .foot-social {
    margin-top: 15px;
}
.ch-foot-contact .foot-social li {
    margin-right: 10px;
    font-size: 18px;
}


@media (max-width: 1200px) {
    .wp-block-columns {
        flex-wrap: wrap;
    }
    .logo-col {

    }
    .ch-head-btn-area {
        flex-grow: 2;
        margin: 30px 0 0;
    }
    .ch-header-right {
        flex-wrap: nowrap;
        font-size: 14px;
    }
    .ch-header-right .wp-block-column:first-child .wp-block-buttons {
        justify-content: flex-start;
    }
    .ch-header-right .wp-block-column:nth-child(2) {
        min-width: 150px;
        text-align: center;
    }
    .ch-header-right .wp-block-button__link {
        font-size: 14px;
    }
    .ch-spa-pop-item-box, .ch-yelp-column > .wp-block-column {
        flex-basis: 100%;
        margin: 0 0 25px !important;
    }
    .ch-spa-pop-item-box:last-child, .ch-yelp-column > .wp-block-column:last-child {
        margin: 0 !important;
    }
    .ch-spa-pop-item-box figure {
        height: auto;
    }
    .ch-spa-pop-item-box figure img {
        height: auto;
        width: 100%;
    }
    .ch-skin-hot-prod .wp-block-columns {
        margin: 0;
    }
    .ch-skin-hot-prod figure {
        margin: 0;
    }
    .ch-skin-hot-prod-left, .ch-skin-hot-prod-right {
        flex-basis: 100%;
        margin: 0 !important;
    }
    .ch-skin-hot-prod-left figure, .ch-skin-hot-prod-right figure {
        margin-top: 25px;
    }
    .ch-skin-hot-prod-left figure img, .ch-skin-hot-prod-right figure img {
        width: 100%;
    }
    .ch-yelp-column > .wp-block-column iframe {
        max-width: 100% !important;
    }
    .ch-con-left, .ch-con-right {
        flex-basis: 100%;
        margin: 0 0 25px !important;
    }
}
@media (max-width: 500px) {
    .page-id-490 .entry-content > .wp-block-columns {
        padding: 25px 0;
    }
    .page-id-490 h3 {
        font-size: 20px;
    }
    .page-id-490 h4 {
        font-size: 16px;
    }
    .page-id-490, .page-id-490 p, .page-id-490 ul {
        font-size: 14px
    }
    .ch-header .wp-block-image {
        margin: auto;
    }
    .page-id-490 h2.has-text-align-center.has-text-color {
        font-size: 24px;
        margin: 25px 0;
    }
    .page-id-490 h2.has-text-align-center.has-text-color:after {
        width: 75px;
    }
    .ch-header-right {
        flex-wrap: nowrap !important;
        gap: 0px !important;
    }
    .ch-pop-items figure {
        margin: 0;
    }
    .ch-blog-area .wp-block-cover__inner-container p {
        font-size: 20px !important;
    }
}