/*-----------------------------------------------------------------------------------
Theme Name: City Facial Plastics
Theme URI: https://cityfacialplastics.com/
Description: Custom WordPress theme for City Facial Plastics.
Author: City Facial Plastics
Author URI: https://cityfacialplastics.com/
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Version: 1.0

-----------------------------------------------------------------------------------

1. Typography
2. Header Area 
3. Iteam Area
4. Footer Area

-----------------------------------------------------------------------------------*/
@font-face {
	font-family: 'Futura Cyrillic Book';
	src: url('fonts/FuturaCyrillicBook.woff2') format('woff2'),
		url('fonts/FuturaCyrillicBook.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Cyrillic';
	src: url('fonts/FuturaCyrillic-Bold.woff2') format('woff2'),
		url('fonts/FuturaCyrillic-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Cyrillic';
	src: url('fonts/FuturaCyrillicMedium.woff2') format('woff2'),
		url('fonts/FuturaCyrillicMedium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beau Rivage';
	src: url('fonts/BeauRivage-Regular.woff2') format('woff2'),
		url('fonts/BeauRivage-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Cyrillic';
	src: url('fonts/FuturaCyrillicLight.woff2') format('woff2'),
		url('fonts/FuturaCyrillicLight.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
html{
	overflow-x: hidden;
}
body {
	font-family: 'Futura Cyrillic';
	font-size: 20px;
	line-height: 1.44;
	font-weight: 300;
	color: #000000;
	background: #ffffff;
}
*::selection {
	background: var(--copper);
	color: #fff;
}
*::-moz-selection {
	background: var(--copper);
	color: #fff;
}
p {
	transition: background 0.2s ease;
}
p:active {
	background: #f1f1f1; /* highlight color */
	outline: none;
	color: #000!important;
}
p a:active, li a:active {
	background-color: var(--yellow);
}
/*----------------------------------
1. TYPOGRAPHY
---------------------------------- */
/* ===== Fancy Gradient Scrollbar ===== */

::-webkit-scrollbar {
	width: 10px;
	border-radius: 10px;
}
::-webkit-scrollbar-track {
	background: #fabe65;
	border-radius: 10px;
	width: 10px;
}
::-webkit-scrollbar-thumb {
	background: #9e6c5a;
	border-radius: 10px;
	border: 2px solid #f4efe9;
	transition: all 0.3s ease;
}
html {
	scrollbar-width: thin;
	scrollbar-color: #9e6c5a #fabe65;
	scroll-behavior: smooth;
}
html, body {
	scroll-behavior: smooth;
}
body::-webkit-scrollbar {
	width: 10px;
}
body::-webkit-scrollbar-track {
	background: #fabe65;
	border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
	background: #9e6c5a;
	border-radius: 10px;
	border: 2px solid #f4efe9;
}
/*Video Popup Start----*/
.video-popup {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	position: fixed;
	z-index: 999999;
	display: none;
	bottom: 0;
	right: 0;
}

.video-popup.show {
	display: block;
}

.video-popup.unexpendPopup {
	max-width: 320px;
	bottom: 40px;
	right: 40px;
	aspect-ratio: 16/9;
	height: unset;
}

.video-popup.unexpendPopup .iframe-wrapper {
	width: 100%;
}

.iframe-wrapper {
	width: 50%;
	position: absolute;
	margin: auto;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	aspect-ratio: 16/9;
}

.video-popup #iframeHolder {
	width: 100%;
	height: 100%;
	display: block;
	background-color: #fff;
}

.video-popup iframe {
	width: 100%;
	height: 100%;
}

.close-video,
.expand {
	width: 40px;
	height: 40px;
	background: #fff;
	display: block;
	border-radius: 100%;
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: pointer;
	z-index: 99;
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 50%);
	box-shadow: 0 0 10px rgb(0 0 0 / 50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.expand {
	right: 30px;
}

.video-close-icon {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

.video-close-icon::before {
	width: 60%;
	height: 2px;
	background: #000;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.video-close-icon::after {
	width: 60%;
	height: 2px;
	background: #000;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media all and (max-width: 768px) {
	.iframe-wrapper {
		width: 80%;
	}
}

/*Video Popup End----*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	display: inline;
	cursor: pointer!important;
}

a:hover {
	text-decoration: none;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
}

input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
}

input {
	border: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

img {
	border: none;
	max-width: 100%;
}

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

button:focus {
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

input:focus {
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

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

.text-center {
	text-align: center;
	margin: 0px auto;
	display: flex;
	width: 100%;
	max-width: 1024px;
	justify-content: center;
	flex-direction: column;
}
.container {
	width: 100%;
	max-width: 1630px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container-m {
	width: 100%;
	max-width: 1470px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container-full {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-s {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.sec-m {
	margin-top: 150px;
	margin-bottom: 150px;
}
.sec-p {
	padding-top: 150px;
	padding-bottom: 150px;
}
.center {
	display: block;
	width: max-content;
	margin: 30px auto;
}
/*----------------------------------
1. HEADER AREA START
---------------------------------- */
.main-header {
	background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff));
	background: -o-linear-gradient(left, #ffffff 0%, #ffffff 100%);
	background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
	-webkit-box-shadow: 0px 44px 64px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 44px 64px 0px rgba(0, 0, 0, 0.15);
	padding: 25px 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	position: sticky;
	top: 0;
	z-index: 999;
}

.main-header.fixed {
	-webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.15);
}

.header-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	max-width: 1700px;
}

.header-logo {
	margin-right: auto;
}

.before-after-btn,
.header-address {
	font-size: 18px;
	line-height: 24px;
	color: #000000;
	text-transform: uppercase;
}

.before-after-btn:hover,
.header-address:hover {
	text-decoration: underline;
}
.header-wrp .before-after-btn {
	border: 1px solid #fabe65;
	padding: 13px 18px;
	border-radius: 5px;
	background: #fabe65;
	transition: .3s;
}
.header-wrp .before-after-btn:hover {
	text-decoration: none;
	background: #fff;
	border: 1px solid #fabe65;
}
.schedule-call-wrp ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.header-phone {
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 13px;
}

.header-phone:hover {
	text-decoration: underline;
}

.header-phone::before {
	/*content: "";*/
	display: block;
	width: 18px;
	height: 18px;
	background: var(--sp);
	background-position: top 1px left -137px;
	margin-top: 3px;
}

.header-consultation {
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	color: #fff;
	background: var(--copper);
	padding: 13px 18px;
	border-radius: 5px;
	border: 1px solid transparent;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.header-consultation:hover {
	background: transparent;
	border-color: var(--copper);
	color: var(--copper);
}

.header-menu-btn {
	font-size: 14px;
	line-height: 24px;
	position: relative;
	border-top: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
	padding: 5px 30px 5px 0;
	cursor: pointer;
}

.header-menu-btn::before {
	content: "";
	width: 20px;
	height: 1px;
	background: var(--black);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

/* Min Menu Side Bar --------------------- */
.side-main-menu-are {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background: #111111;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.side-main-menu-are.active {
	left: 0;
	opacity: 1;
}
.side-main-menu-are.active:before {
	content: '';
	width: 50%;
	height: 50%;
	background: url('images/logo.svg') no-repeat;
	position: absolute;
	left: 44%;
	top: 30%;
	opacity: 0.3;
	background-size: 100%;
}
/* left  */
.offcanvas-left {
	width: 115px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 30px;
	right: 130px;
	z-index: 999;
}

.off-close-btn {
	height: 60px;
	width: 60px;
	position: relative;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background: #343434;
	border: 1px solid #474747;
	border-radius: 5px;
}

.off-close-btn::before {
	content: "";
	left: 7px;
	top: 28px;
	width: 80%;
	height: 2px;
	background: #FFF;
	position: absolute;
	border-radius: 5px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.off-close-btn::after {
	content: "";
	left: 7px;
	top: 28px;
	width: 80%;
	height: 2px;
	background: #FFF;
	position: absolute;
	border-radius: 5px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* main side menu  */
.side-menu {
	margin-right: auto;
	width: 100%;
}

.side-menu::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #f5f5f5;
}

.side-menu::-webkit-scrollbar {
	width: 5px;
	background-color: #f5f5f5;
}

.side-menu::-webkit-scrollbar-thumb {
	background-color: #000000;
	border: 2px solid #555555;
}

.side-main-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	padding: 50px 0 50px 100px;
	background: var(--yellow);
	max-width: 680px;
}

.side-main-menu>ul {
	width: 100%;
}

.side-main-menu ul li {
	position: relative;
	padding: 10px;
}

.side-main-menu ul li.menu-item-has-children::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 12px solid transparent;
	border-left-color: #000;
	z-index: 1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.side-main-menu ul li:hover.menu-item-has-children::after {
	z-index: 1;
	border-left-color: #fff;
}

.side-main-menu ul li a {
	font-size: 25px;
	text-transform: uppercase;
	color: #000;
	line-height: normal;
	font-weight: 500;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: block;
}

.side-main-menu ul li:hover>a {
	color: #fff;
}

/* side main menu drop down  */
.side-main-menu ul li ul {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding-left: 40px;
}

.side-main-menu ul li:hover ul {
	opacity: 1;
	visibility: visible;
}

.side-main-menu ul li ul a {
	font-size: 20px;
	color: #FFF;
}

.side-main-menu ul li ul a:hover {
	padding-left: 8px;
}

/* right  */
.side-menu-right {
	max-width: 200px;
	width: 100%;
	margin-right: 80px;
	background: var(--copper);
	padding: 50px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.side-menu-right p {
	margin-top: auto;
	text-align: center;
	font-size: 18px;
	color: #fff;
}

.side-menu-right img {
	height: 65px;
	width: 100%;
}

.side-menu-right ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 12px;
	margin-top: auto;
}

.side-menu-right ul li button {
	width: 45px;
	height: 45px;
	background: var(--sp);
	border-radius: 10px;
	border: 1px solid #fff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.side-menu-right ul li button:hover {
	background-color: var(--yellow);
}

.side-menu-right ul li.youtube button {
	background-position: top -75px left -218px;
}

.side-menu-right ul li.instagram button {
	background-position: top -75px left -294px;
}

.side-menu-right ul li.tiktok button {
	background-position: top -75px left -368px;
}

/* Home Banner Section  ----------- */
.banner-sec {
	position: relative;
	padding-top: 120px;
}

.banner-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 130px);
	background: url("images/bannerBg.jpg") no-repeat;
	background-size: cover;
	background-position: top -130px center;
}

.banner-content {
	color: #fff;
}
.banner-content h1 {
	font-family: var(--book-font);
	font-size: 29px;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
}

.banner-content h2 {
	font-family: var(--book-font);
	font-size: 133px;
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 25px;
}

.banner-content p {
	font-family: var(--book-font);
	font-size: 26px;
	font-weight: normal;
	line-height: 1.44;
}

.youtube-year {
	margin: 70px 0;
	max-width: 355px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.youtube-year .year {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.05;
	max-width: 80px;
}

.youtube-year .year span {
	font-size: 98px;
	display: block;
	line-height: 1;
	margin-left: -24px;
}

.youtube-year .youtube-view {
	margin-left: 35px;
	padding-left: 35px;
	border-left: 1px solid rgb(255, 255, 255, 0.2);
}

.youtube-year .youtube-view::before {
	content: "";
	display: block;
	width: 100%;
	height: 48px;
	background: var(--sp);
	background-position: top -416px left -513px;
	margin-bottom: 5px;
}

.youtube-year .youtube-view span {
	font-family: var(--book-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.46;
}

.youtube-year .youtube-view .star {
	color: #ff8000;
	font-size: 24px;
	margin-top: 10px;
}

.youtube-year .youtube-view .star span {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.46;
	color: #fff;
}

.banner-logo {
	display: block;
	width: 100%;
	min-height: 58px;
	background: url("images/bannerLogo.png") no-repeat;
	background-position: center;
	background-size: contain;
}

.banner-menu {
	margin-top: 85px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.banner-menu li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.banner-menu li a {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #fff;
	text-align: center;
	background: rgb(158, 108, 90, 0.8);
	padding: 50px 15px;
	border-radius: 8px 8px 0 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.banner-menu li a:hover {
	background: var(--yellow);
}

/* home banner social menu  */
.home-banner-social {
	position: absolute;
	z-index: 9;
	top: 250px;
	right: 80px;
}

.home-banner-social li {
	margin-bottom: 10px;
}

.home-banner-social li a {
	width: 65px;
	height: 65px;
	display: block;
	border: 1px solid rgb(0, 0, 0, 0.3);
	border-radius: 100%;
	background: var(--sp);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.home-banner-social li a:hover {
	background-color: var(--yellow);
}

.home-banner-social li.youtube a {
	background-position: top -64px left 19px;
}

.home-banner-social li.instagram a {
	background-position: top -66px left -57px;
}

.home-banner-social li.tiktok a {
	background-position: top -67px left -130px;
}

/* City Facial Plastics Tab Section */
.facial-plastic-tab-sec {
	background: var(--gradient-bg);
	background-size: cover;
}

.facial-plastic-tab-sec .tab-area {
	margin-bottom: 60px;
	position: relative;
}

.facial-plastic-tab-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.tab-area-wrp {
	display: flex;
}

/* left */
.facial-plastic-tab-left {
	position: relative;
	max-width: 535px;
	width: 100%;
	height: 100%;
}
.facial-plastic-tab-left img {
	width: 100%;
	height: 730px;
	display: block;
}

.facial-plastic-tab-left .wrp {
	position: absolute;
	z-index: 2;
	bottom: 30px;
	left: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	width: calc(100% - 50px);
}

.facial-plastic-tab-left .wrp p {
	font-size: 27px;
	font-weight: normal;
	line-height: 1.29;
	color: #fff;
	text-transform: uppercase;
}

.facial-plastic-tab-left .wrp button {
	width: 118px;
	aspect-ratio: 1;
	background: #fff var(--sp);
	background-position: top -135px left -38px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.facial-plastic-tab-left .wrp button:hover {
	background-color: var(--yellow);
}

/* right  */
.tab-title-right {
	position: absolute;
	z-index: 55;
	top: 92px;
	left: 605px;
}

.facial-plastic-tab-right {
	background: rgb(255, 255, 255, 0.3);
	padding: 70px;
	max-width: 1065px;
	width: 100%;
	border-radius: 0 10px 10px 0;
}

.facial-plastic-tab-right h2 {
	font-size: 36px;
	line-height: 1.6;
	font-weight: normal;
}

.facial-plastic-tab-right h3 {
	font-family: var(--book-font);
	font-size: 16px;
	line-height: 1.6;
	font-weight: normal;
	color: #000000;
	margin-bottom: 30px;
}

.facial-plastic-tab-right p {
	margin-top: 30px;
}
.margin {
	margin-top: 50px;
	margin-bottom: 0px;
}
.facial-plastic-tab-right p a {
	color: var(--black);
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.facial-plastic-tab-right p a:hover {
	text-decoration: none;
}

.facial-plastic-tab-right .board-certified {
	font-size: 60px;
	line-height: 1.1;
	font-weight: 400;
	display: block;
}

/* facial plastic tab nav */
.facial-plastic-tab-nav {
	margin-top: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	overflow: auto;
	margin-bottom: 70px;
}
.facial-plastic-tab-nav li {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.29;
	text-transform: uppercase;
	letter-spacing: 4px;
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding-bottom: 10px;
	min-width: -webkit-max-content;
	min-width: -moz-max-content;
	min-width: max-content;
}

.facial-plastic-tab-nav li.active,
.facial-plastic-tab-nav li:hover {
	opacity: 1;
}

.facial-plastic-tab-nav li::after {
	content: "";
	position: absolute;
	border: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	margin: auto;
	background: #000;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.facial-plastic-tab-nav li.active::after,
.facial-plastic-tab-nav li:hover::after {
	opacity: 1;
	width: 54px;
}

/* All Surgical & Non Surgical  */
.all-surgical-sec {
	position: relative;
}

.all-surgical-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 600px;
	height: 100%;
	background: var(--bg-victor-right);
}

.all-surgical-head {
	text-align: center;
	max-width: 750px;
	margin-inline: auto;
	margin-bottom: 100px;
}

.all-surgical-head h2 {
	margin-bottom: 60px;
}

.all-surgical-carousel {
	margin-top: 80px;
}

.all-surgical-carousel .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	gap: 35px;
}

.single-surgical-all {
	position: relative;
	z-index: 2;
	height: 750px;
	width: 100%;
	max-width: 630px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	text-align: center;
	border-radius: 10px;
}

.single-surgical-all::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#9e6c5a));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #9e6c5a 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #9e6c5a 100%);
	border-radius: 10px;
}

.single-surgical-all .con {
	position: absolute;
	z-index: 9;
	width: 100%;
	bottom: 60px;
	left: 0;
	padding: 0 40px;
}

.single-surgical-all img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top center;
	object-position: top center;
	border-radius: 10px;
	height: 100%;
	width: 100%;
}

.single-surgical-all .title {
	font-family: var(--book-font);
	font-size: 48px;
	font-weight: normal;
	line-height: 1.2;
	text-transform: capitalize;
	color: #fff;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgb(255, 255, 255, 0.3);
}

.single-surgical-all .btn {
	width: 45px;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 100px;
	background: var(--sp);
	background-position: top 12px left -197px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: block;
	margin: 0 auto;
}

.single-surgical-all:hover {
	transform: scale(.9);
}

.single-surgical-all .btn:hover {
	background-color: #fff;
	background-position: top 13px left -270px;
}

.all-surgical-nav {
	margin-top: 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* Lip Enhancement Options Section */
.lip-enhancement-sec {
	position: relative;
	z-index: 2;
}

.lip-enhancement-sec::after {
	/*content: "";*/
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: -83px;
	left: 0;
	background: var(--bg-victor-left);
	background-position: top right;
}

.lip-enhance-lip-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 45px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 80px;
}

.single-enhance-lip {
	position: relative;
	z-index: 2;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
	padding: 50px 15px;
	min-height: 600px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
}

.single-enhance-lip::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: -webkit-gradient(linear,
		left bottom, left top,
		from(rgba(129, 80, 63, 0.8)),
		to(rgba(129, 80, 63, 0)));
	background: -o-linear-gradient(bottom,
		rgba(129, 80, 63, 0.8) 0%,
		rgba(129, 80, 63, 0) 100%);
	background: linear-gradient(0deg,
		rgba(129, 80, 63, 0.8) 0%,
		rgba(129, 80, 63, 0) 100%);
}

.single-enhance-lip .title {
	position: relative;
	font-size: 48px;
	font-weight: normal;
	line-height: 1.1;
	color: #fff;
}

.single-enhance-lip .title sup {
	font-size: 23px;
	line-height: 1;
	position: absolute;
	top: -13px;
	left: 106px;
}

.single-enhance-lip .title:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

/* Hair Transplant Tab Section  */
.hair-transplant-tab-sec {
	position: relative;
	z-index: 3;
}

.hair-transplant-tab-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: -59px;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-victor-left);
	background-position: left top;
}

.hair-transplant-head {
	text-align: center;
	margin-bottom: 120px;
	margin-top: 120px;
}

.hair-transplant-head h2 {
	margin-bottom: 45px;
}

.hair-transplant-head .doc {
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
}

.hair-transplant-tab-bg {
	position: relative;
	z-index: 3;
}

.hair-transplant-tab-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 85px;
}

/* nav  */
.hair-transplant-tab-nav {
	max-width: 290px;
	width: 100%;
}

.hair-transplant-tab-nav li {
	font-family: var(--book-font);
	font-size: 22px;
	font-weight: normal;
	line-height: 1.39;
	cursor: pointer;
	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;
	gap: 10px;
}

.hair-transplant-tab-nav li:not(:last-child) {
	padding-bottom: 50px;
}

.hair-transplant-tab-nav li.active {
	font-weight: 700;
}

.hair-transplant-tab-nav li::after {
	content: "";
	display: block;
	width: 35px;
	height: 10px;
	background: var(--sp);
	background-position: top -4px left -515px;
	opacity: 0.2;
}

.hair-transplant-tab-nav li.active::after {
	opacity: 1;
}

.hair-transplant-body {
	max-width: 590px;
}

/* hair tab item body  */
.single-hair-transplant::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 64%;
	height: 100%;
	top: 0;
	right: 0;
	background-image: var(--bg-hair-tab);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
}

.single-hair-transplant::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear,
		right top, left top,
		from(rgba(250, 190, 101, 0)),
		color-stop(64%, rgba(250, 190, 101, 0.97)),
		to(#fabe65));
	background: -o-linear-gradient(right,
		rgba(250, 190, 101, 0) 0%,
		rgba(250, 190, 101, 0.97) 64%,
		#fabe65 100%);
	background: linear-gradient(-90deg,
		rgba(250, 190, 101, 0) 0%,
		rgba(250, 190, 101, 0.97) 64%,
		#fabe65 100%);
}

.single-hair-transplant h2 {
	font-family: var(--book-font);
	font-size: 60px;
	font-weight: normal;
	line-height: .4;
	margin-bottom: 50px;
}

.single-hair-transplant p {
	font-size: 22px;
	line-height: 1.39;
	margin-bottom: 30px;
}

.single-hair-transplant .default-btn {
	margin-top: 40px;
	display: block;
	width: max-content;
}

.single-hair-transplant .default-btn:hover {
	background: #000;
	border-color: transparent;
	color: #FFF;
}

/* Philosophy Section ----------- */
.philosophy-sec {
	position: relative;
	z-index: 2;
	background: -o-linear-gradient(218.19deg, #422216 0%, #9e6c5a 100%);
	background: linear-gradient(-128.19deg, #422216 0%, #9e6c5a 100%);
}

.philosophy-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url("images/philosophyDoctor.png") no-repeat;
	background-position: bottom right;
	background-size: contain;
}

.philosophy-con h2 {
	color: #fff;
	margin-bottom: 55px;
}

.philosophy-con p {
	font-size: 22px;
	line-height: 1.6;
	color: #fff;
	max-width: 820px;
	margin-bottom: 60px;
}

.philosophy-con .signature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.philosophy-con .signature::after {
	content: "";
	display: block;
	width: 160px;
	height: 98px;
	background: var(--sp);
	background-position: top -422px left -290px;
}

/* Surgery Office Section  */
.surgery-office-sec {
	position: relative;
}

.surgery-office-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 130%;
	top: -80px;
	left: 0;
	background: var(--bg-victor-left);
}

.surgery-office-right span b,
.surgery-office-right span strong {
	font-weight: 700;
}

.surgery-office {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* left */
.surgery-office-left {
	max-width: 615px;
	width: 100%;
	max-height: 530px;
	-webkit-box-flex: 300px;
	-ms-flex: 300px;
	flex: 300px;
}

.surgery-office-left h2 {
	margin-bottom: 45px;
}

.surgery-office-left p:not(:last-child) {
	margin-bottom: 35px;
}

/* right  */
.surgery-office-right {
	position: relative;
	max-width: 830px;
	width: 100%;
	-webkit-box-flex: 300px;
	-ms-flex: 300px;
	flex: 300px;
}

.surgery-office-right img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
}

.surgery-office-right button {
	position: absolute;
	z-index: 9;
	width: 85px;
	height: 85px;
	background: var(--yellow) var(--sp);
	background-position: top -145px left -128px;
	inset: 0;
	margin: auto;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border-radius: 100px;
}

.surgery-office-right button:hover {
	background-color: #fff;
}

.surgery-office-right span {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	text-align: center;
	font-size: 19px;
	line-height: 1.29;
	text-transform: uppercase;
}

.surgery-office-right span::before {
	content: "";
	display: block;
	width: 17px;
	height: 9px;
	background: var(--sp);
	margin-inline: auto;
	margin-bottom: 20px;
}

/* Key Differentiators Section  */
.key-differentiators-sec {
	position: relative;
	z-index: 2;
}
.key-differentiators-wrp {
	position: relative;
}

.single-key-differentiator {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 90px;
}
.single-key-differentiator .right .item {
	padding: 20px;
	margin: 20px 0px;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 0 20px #9e6c5a1c;
}
/* left */
.single-key-differentiator .left {
	max-width: 490px;
	width: 100%;
}
.single-key-differentiator .left img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
}
/* right */
.single-key-differentiator .right {
	background: #9e6c5a21;
	padding: 50px;
	border-radius: 10px;
}
.single-key-differentiator .right h2 {
	margin-bottom: 40px;
}

.single-key-differentiator .right h3 {
	font-family: var(--book-font);
	font-size: 28px;
	font-weight: normal;
	line-height: 1.6;
	margin-bottom: 20px;
}
.single-key-differentiator .right p {
	font-family: var(--book-font);
	font-size: 26px;
	font-weight: normal;
	line-height: 1.6;
	max-width: 1028px;
}

.key-differentiators-wrp .custom-nav {
	position: absolute;
	left: 580px;
	bottom: 0;
}

/* Video Testimonials Section ---------- */
.video-testimonial-sec {
	background: var(--gradient-bg);
}

.video-testimonial {
	margin-top: 100px;
	margin-bottom: 70px;
}

.single-video-testimonial {
	position: relative;
	border-radius: 10px;
	min-height: 360px;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 25px;
}

.single-video-testimonial button {
	width: 106px;
	height: 64px;
	background: rgb(158, 108, 90, 0.87) var(--sp);
	background-position: top -161px left -275px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.single-video-testimonial button:hover {
	background-color: var(--yellow);
}

/* for the best version section --------- */
.best-version-sec {
	position: relative;
	z-index: 99;
}

.best-version-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.best-version-wrp>div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
}

/* left */
.best-version-left {
	background: #9e6c5a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 150px;
}

.best-version-left h2 {
	color: #fff;
	max-width: 700px;
	margin-bottom: 60px;
}

/* right */
.best-version-right {
	background-repeat: no-repeat;
	background-size: cover;
}

.best-version-right img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* Min Footer Section ------------------------ */
.min-footer-sec {
	position: relative;
	z-index: 9;
	background: #805140;
}
.footer-logo {
	margin-bottom: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	border-bottom: 1px solid #ffffff54;
	padding-bottom: 30px;
}
.footer-logo * {
	color: #fff;
	font-size: 24px;
}
.footer-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 80px;
}

.single-footer.three {
	max-width: 300px;
}

.single-footer .title {
	font-family: var(--book-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: #fff;
	display: block;
	padding-bottom: 25px;
	margin-bottom: 25px;
	position: relative;
	text-transform: uppercase;
}

.single-footer .title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: url("images/line.svg") no-repeat;
}

.single-footer .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.single-footer .social li a {
	display: block;
	width: 65px;
	height: 45px;
	border-radius: 10px;
	border: 1px solid rgb(255, 255, 255, 0.3);
	background: var(--sp);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-footer .social li a:hover {
	background-color: var(--yellow);
}

.single-footer .social li.youtube a {
	background-position: top -74px left -208px;
}

.single-footer .social li.instagram a {
	background-position: top -75px left -285px;
}

.single-footer .social li.tiktok a {
	background-position: top -75px left -357px;
}

.single-footer ul li a {
	font-family: var(--book-font);
	font-size: 16px;
	line-height: 28px;
	color: #fff;
}

.single-footer ul li a:hover {
	text-decoration: underline;
}

.single-footer .bg-btn {
	width: 410px;
	height: 144px;
	display: block;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-size: cover;
}

.single-footer .bg-btn:not(:last-child) {
	margin-bottom: 40px;
}

.single-footer .bg-btn.apply {
	background-image: url("images/applyNowBg.jpg");
}

.single-footer .bg-btn.apply-today {
	background-image: url("images/applyTodayBg.jpg");
}

.single-footer.three ul li {
	margin-bottom: 20px;
	color: #fff;
}

.single-footer.three ul li.call a {
	text-decoration: underline;
}

.single-footer.three ul li.call a:hover {
	text-decoration: none;
}

/* copy right */
.copy-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1340px;
	gap: 10px 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.copy-right p {
	font-family: var(--book-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.46;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.copy-right .dmca {
	width: 125px;
	height: 25px;
	margin-left: 75px;
	background: var(--sp);
	background-position: top -86px left -457px;
}

.copy-right p .nymm {
	color: #fff;
	text-decoration: underline;
	margin-left: 5px;
}

.copy-right p .nymm:hover {
	text-decoration: none;
}

/* Inner Banner Section ------------------ */
.inner-banner-sec {
	position: relative;
	background: url("images/inner/innerBannerBg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.inner-banner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.inner-banner>div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
	width: 100%;
}

/* left  */
.inner-banner-left {
	padding: 50px 40px 100px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.inner-banner-left .title {
	font-family: var(--book-font);
	font-size: 60px;
	font-weight: 500;
	line-height: 1.3;
	color: #000;
	margin-top: auto;
	margin-bottom: 30px;
}

.inner-banner-left p {
	font-size: 22px;
	line-height: 1.6;
	max-width: 655px;
	margin-bottom: 30px;
}

.inner-banner-left p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.inner-banner-left p a:hover {
	text-decoration: none;
}
.inner-banner-left #breadcrumbs {
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	color: #00000070;
	margin-top: auto;
}
.inner-banner-left #breadcrumbs a {
	color: #00000070;
	text-decoration: underline;
}
.inner-banner-left #breadcrumbs a:hover {
	text-decoration: none;
}
/* right  */
.inner-banner-right {
	min-height: auto;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inner-banner-right picture {
	display: flex;
	justify-content: center;
	align-items: center;
}

.inner-banner-right img {
	display: block;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
}

/* inner banner social menu */
.inner-banner-sec .home-banner-social {
	right: 50px;
}

.inner-banner-sec .home-banner-social li a:hover {
	background-color: #fff;
}

/* About Dr Garry Page One --------------------- */
.about-dr-garry-sec {
	position: relative;
	background: url("images/inner/UnionBg.png") no-repeat;
	background-size: contain;
	background-position: bottom center;
}

.about-dr-garry-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	background: var(--bg-victor-right-bottom);
	background-position: top 50px right -50px;
	background-size: contain;
}

.about-garry-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 1550px;
	width: 100%;
}

/* left */
.about-garry-left {
	max-width: 960px;
	width: 100%;
}

.about-garry-left img {
	width: 100%;
	display: block;
}

/* right */
.about-garry-right {
	max-width: 425px;
	width: 100%;
	-ms-flex-item-align: end;
	-ms-grid-row-align: end;
	align-self: end;
	margin-bottom: 50px;
}

.about-garry-right .title {
	font-family: var(--book-font);
	font-size: 60px;
	font-weight: normal;
	line-height: 1.3;
	margin-bottom: 40px;
	text-transform: inherit;
}
.faq-right p {
	margin: 20px 0px;
}
.faq-right p a{
	color: inherit;
	text-decoration: underline;	
}
.about-garry-right h2 {
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.about-garry-right p {
	font-size: 22px;
	line-height: 1.6;
	max-width: 400px;
}

.about-garry-right .star-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.about-garry-right .star-wrp p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.46;
}

.about-garry-right .star-wrp .star {
	color: #ff7f00;
	font-size: 25px;
}

.about-garry-right .star-wrp .review {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.46;
}

.about-garry-right .social-btn {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.46;
	color: #000;
	padding: 14px 15px;
	border-radius: 10px;
	border: 1px solid #000;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 22px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin: 40px 0;
}

.about-garry-right .social-btn:hover {
	background: var(--yellow);
	color: #fff;
	border-color: transparent;
}

.about-garry-right .social-btn::after {
	content: "";
	display: block;
	width: 42px;
	height: 42px;
	background: var(--sp);
	background-position: top -288px left 0;
}

/* About Doctor Content Section  */
.about-doctor-content-sec .container {
	max-width: 1440px;
}

.about-doctor-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/* left */
.about-doctor-content .left {
	max-width: 740px;
	width: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(250, 190, 101, 0.1)), to(#fabe65));
	background: -o-linear-gradient(bottom, rgba(250, 190, 101, 0.1) 0%, #fabe65 100%);
	background: linear-gradient(0deg, rgba(250, 190, 101, 0.1) 0%, #fabe65 100%);
	padding: 80px;
	border-radius: 5px 0 0 5px;
}

.about-doctor-content .left h2 {
	font-size: 60px;
	font-weight: 500;
	margin-bottom: 30px;
}

.about-doctor-content .left p:not(:last-child) {
	margin-bottom: 30px;
}

/* right */
.about-doctor-content .right {
	position: relative;
}

.about-doctor-content .right img {
	display: block;
	border-radius: 0 5px 5px 0;
}

.about-doctor-content .right button {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 215px;
	height: 200px;
	background: var(--sp);
	background-position: top -416px left 0;
}

/* Four Logo Section  */
.four-logo {
	display: block;
	max-width: 1170px;
	width: 100%;
	height: 272px;
	margin-inline: auto;
	background: url("images/inner/fourLogoBg.png") no-repeat;
	background-size: contain;
}

/* Patient Review Section --------------- */
.patient-review-sec {
	background-repeat: no-repeat;
}

.bg-contain {
	background-size: contain;
}

.patient-review-wrp {
	max-width: 1040px;
	margin-inline: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* left */
.patient-review-wrp .left {
	max-width: 340px;
	width: 100%;
}

.patient-review-wrp .left h2 {
	font-size: 60px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 14px;
}

.patient-review-wrp .left h2 span {
	font-weight: 700;
	display: block;
}

.patient-review-wrp .left p {
	font-size: 18px;
	line-height: 1.6;
}

/* right */
.patient-review {
	max-width: 610px;
}

.single-patient-review {
	position: relative;
}

.single-patient-review::before {
	content: "";
	width: 40px;
	height: 30px;
	background: var(--sp);
	background-position: top -175px left -399px;
	display: block;
	margin-left: auto;
	margin-bottom: 35px;
	top: 0;
	right: 5px;
}

.single-patient-review.top::before {
	position: absolute;
}

.single-patient-review p {
	margin-bottom: 40px;
}

.single-patient-review .star {
	font-size: 25px;
	color: #ef8f00;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 35px;
}

.single-patient-review .star::before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: var(--sp);
	background-position: top -287px left -102px;
}

.single-patient-review .name {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.6;
	display: block;
	margin-top: 45px;
}

.single-patient-review .default-btn {
	margin-top: 50px;
}

.patient-arrow {
	text-align: center;
	margin-top: 60px;
}

/* Patient Doctor Section  */
.patient-doctor-sec {
	margin: 50px 0;
}

.patient-doctor-sec img {
	display: block;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.patient-doc {
	border-radius: 5px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(158, 108, 90, 0)), color-stop(23%, #9e6c5a));
	background: -o-linear-gradient(top, rgba(158, 108, 90, 0) 0, #9e6c5a 23%);
	background: linear-gradient(900deg, rgba(158, 108, 90, 0) 0, #9e6c5a 23%);
	padding: 80px 175px;
	text-align: center;
	margin-top: -140px;
	position: relative;
	z-index: 9;
}

.patient-doc p {
	/* font-family: var(--book-font); */
	font-size: 28px;
	line-height: 1.29;
	color: #fff;
}

.patient-doc p:not(:last-child) {
	margin-bottom: 50px;
}

/* ackground & Training  */
.background-training-sec {
	position: relative;
	z-index: 2;
}

.background-training-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: -60px;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-victor-right);
}

.background-head {
	max-width: 910px;
	margin-inline: auto;
	margin-bottom: 200px;
	text-align: center;
}

.background-head h2 {
	margin-bottom: 40px;
}

.background-head p {
	max-width: 620px;
	margin-inline: auto;
	font-size: 24px;
	line-height: 1.44;
}

.background-training .faq-wrp {
	max-width: 1050px;
	margin-inline: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* left */
.background-training .faq-left {
	max-width: 250px;
	width: 100%;
	position: sticky;
	top: 150px;
	height: 100%;
}

.background-training .faq-left ul li {
	margin-bottom: 30px;
}

.background-training .faq-left ul li a {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.44;
	color: #000;
}

.background-training .faq-right .title.active,
.background-training .faq-left ul li a:hover,
.background-training .faq-left ul li a.active {
	color: #9e6c5a;
}

.background-training .faq-left .award img {
	display: block;
	margin-top: 0px;
}

/* right */
.background-training .faq-right {
	max-width: 700px;
	width: 100%;
}

.background-training .faq-right .faq-accordion {
	margin-bottom: 30px;
}

.background-training .faq-right .title {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.44;
	cursor: pointer;
	margin-bottom: 30px;
}

.background-training .faq-right .body p:not(:last-child) {
	margin-bottom: 40px;
}

/* About Dr Garry Two Page ------------------ */
.about-christina-sec {
	background: url("images/inner/UnionBg.png") no-repeat;
}

.about-christina {
	margin: 80px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.about-christina>div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
	width: 100%;
}

/* left  */
.about-christina-left {
	background: #fabe65;
	padding: 85px;
	border-radius: 5px 0 0 5px;
}

.about-christina-left h2 {
	margin-bottom: 45px;
}

.about-christina-left p {
	font-size: 22px;
	line-height: 1.6;
}

/* right */
.about-christina-right {
	position: relative;
	z-index: 2;
	border-radius: 0 5px 5px 0;
}

.about-christina-right::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(158, 108, 90, 0)), color-stop(81%, #9e6c5a));
	background: -o-linear-gradient(top, rgba(158, 108, 90, 0) 0%, #9e6c5a 81%);
	background: linear-gradient(-180deg, rgba(158, 108, 90, 0) 0%, #9e6c5a 81%);
	border-radius: 0 5px 5px 0;
}

.about-christina-right img {
	width: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 0 5px 5px 0;
	position: relative;
	z-index: -5;
}

.about-christina-right button {
	width: 90px;
	height: 90px;
	border-radius: 200px;
	background: #fabe65 var(--sp);
	background-position: top -144px left -124px;
	position: absolute;
	z-index: 99;
	inset: 0;
	margin: auto;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.about-christina-right button:hover {
	background-color: #fff;
}

.about-christina-right span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #fff;
	text-align: center;
	display: block;
	max-width: 620px;
	width: 100%;
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: auto;
}

.instagram-btn {
	font-size: 37px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
	color: #000;
	border-radius: 5px;
	border: 1px solid rgb(0 0 0 / 50%);
	padding: 35px 170px 35px 30px;
	position: relative;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
}

.instagram-btn span {
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	display: block;
	color: #000000;
	opacity: 0.5;
}

.instagram-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 25px;
	bottom: 0;
	margin: auto;
	width: 100px;
	height: 100px;
	background: var(--sp);
	background-position: top -586px left -304px;
}

.instagram-btn:hover {
	background-color: var(--yellow);
	border-color: transparent;
}

/* Christina Before After Section  */
.christina-before-after-wrp {
	max-width: 1760px;
	margin-left: auto;
}

.office-carousel .item,
.christina-before-after .item {
	margin: 0 25px;
}

.office-carousel .item img,
.christina-before-after .item img {
	display: block;
	border-radius: 5px;
}

.office-arrow,
.christina-arrow {
	margin-top: 80px;
	text-align: center;
}

/* Before & After Page --------------------------------------------------- */
.treatment-area {
	background-repeat: no-repeat;
	background-size: cover;
}

.treatment-tab-nav-are {
	background: #fff;
}

.treatment-tab-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	background: #fff;
	padding-top: 20px;
}

.treatment-tab-nav li {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
}

.treatment-tab-nav li a {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: rgb(0, 0, 0, 0.5);
	text-transform: uppercase;
	letter-spacing: 4px;
	display: block;
	text-align: center;
	border-bottom: 1px solid #000;
	padding-bottom: 40px;
}

.treatment-tab-nav li.active a {
	color: #000;
}

/* treatment head  */
.ba-btn-holder {
	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;
	gap: 20px;
	margin-bottom: 80px;
}

.ba-btn-holder .title {
	font-family: var(--book-font);
	font-size: 50px;
	font-weight: 400;
	line-height: 1.1;
	color: #000;
}

.ba-btn-holder .title a {
	color: #000;
}

a.more-link {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
	color: #fff;
	padding: 20px;
	border: 1px solid #000;
	border-radius: 5px;
	background: #000;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.more-link:hover {
	background: var(--copper);
	border-color: transparent;
}

.treatment-carousel {
	max-width: 1760px;
	margin-left: auto;
}

.treatment-carousel .gallery-item {
	margin: 0 25px;
}

.treatment-carousel .gallery-item img {
	display: block;
	border-radius: 5px;
	max-width: 710px;
	max-height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
}

.treatment-carousel .gallery-item figcaption {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	margin-top: 30px;
	padding: 0 15px;
}

/* NYC Facial Plastic Before After  */
.nyc-plastic-before-after-sec {
	margin-bottom: 120px;
}

.nyc-plastic-before-after-sec img {
	width: 100%;
	display: block;
}

.nyc-plastic-before-after {
	border-radius: 5px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-3%, rgba(158, 108, 90, 0)), color-stop(23%, #9e6c5a));
	background: -o-linear-gradient(top, rgba(158, 108, 90, 0) -3%, #9e6c5a 23%);
	background: linear-gradient(180deg, rgba(158, 108, 90, 0) -3%, #9e6c5a 23%);
	padding: 100px 190px;
	margin-top: -200px;
	position: relative;
	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;
	gap: 30px;
}

.nyc-plastic-before-after .left {
	max-width: 470px;
	width: 100%;
}

.nyc-plastic-before-after .left h2 {
	color: #fff;
	padding-bottom: 30px;
	border-bottom: 1px solid rgb(255, 255, 255, .30);
}

/* right */
.nyc-plastic-before-after .right {
	max-width: 570px;
	width: 100%;
}

.nyc-plastic-before-after .right p {
	color: #fff;
}

.nyc-plastic-before-after .right p:not(:last-child) {
	margin-bottom: 40px;
}

.nyc-plastic-before-after .right p a {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.nyc-plastic-before-after .right p a:hover {
	text-decoration: none;
}

.nyc-plastic-before-after .right ul {
	margin-bottom: 40px;
	margin-left: 22px;
}

.nyc-plastic-before-after .right ul li {
	list-style: disc;
	padding: 3px 0;
}

.nyc-plastic-before-after .right ul li::marker {
	font-size: 19px;
	color: #FFF;
}

.nyc-plastic-before-after .right ul li a {
	color: #FFF;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.nyc-plastic-before-after .right ul li a:hover {
	text-decoration: none;
}

/* iew the Results Section */
.view-result-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/* left */
.view-result-left {
	max-width: 660px;
	width: 100%;
}

.view-result-left img {
	display: block;
	width: 100%;
}

/* right */
.view-result-right {
	max-width: 1260px;
	width: 100%;
	background: rgba(250, 190, 101, 0.5);
	padding: 130px 20px;
}

.view-result-right h2 {
	font-size: 60px;
	font-weight: 400;
	line-height: 1.1;
	color: #000;
	text-align: center;
	max-width: 645px;
	margin-inline: auto;
	margin-bottom: 50px;
}

.view-result-right h2 span {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	display: block;
	padding-bottom: 20px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgb(0, 0, 0, 0.3);
}

.view-result-right .wrp {
	max-width: 790px;
	margin-inline: auto;
	-webkit-columns: 2 250px;
	-moz-columns: 2 250px;
	columns: 2 250px;
	-webkit-column-rule: 1px solid rgb(0, 0, 0, 0.3);
	-moz-column-rule: 1px solid rgb(0, 0, 0, 0.3);
	column-rule: 1px solid rgb(0, 0, 0, 0.3);
	gap: 120px;
}

.view-result-right p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.view-result-right p a:hover {
	text-decoration: none;
}

.patient-review-sec.before-after {
	background-position: bottom 50px right;
	padding-top: 0px;
}

/* isit Section  */
.visit-gallery {
	padding: 100px 0 100px 600px;
	background: #9e6c5a url("images/inner/faceBg.jpg") no-repeat;
	background-size: cover;
	background-position: left -95px top;
	border-radius: 5px;
}

.visit-gallery.content {
	padding-left: 520px;
	padding-right: 190px;
}

.visit-gallery.content p {
	font-size: 24px;
	line-height: 1.60;
	color: #FFF;
}

.visit-gallery a {
	font-size: 37px;
	font-weight: 500;
	color: #fff;
	position: relative;
	padding-right: 175px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.visit-gallery a span {
	font-size: 57px;
	font-weight: 700;
	display: block;
	line-height: 1;
}

.visit-gallery a::after {
	content: "";
	position: absolute;
	right: -260px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100px;
	height: 18px;
	background: var(--sp);
	background-position: top 0px left -689px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.visit-gallery a:hover span {
	color: var(--yellow);
}

.visit-gallery a:hover::after {
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px);
}

/* Common About Dr Section  */
.common-abou-dr-sec {
	background: #FFF;
	position: relative;
	z-index: 9;
	clear: both;
	width: 100%;
	max-width: 1170px;
	margin: 100px auto;
}
.common-abou-dr-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: calc(100% + 200px);
	background: #FFF;
	top: -100px;
	left: 0;
}

.common-about {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 45px;
}

/* right */
.common-about .right p {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 40px;
}

.common-about .right a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.common-about .right a:hover {
	text-decoration: none;
}

.common-about .right ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
}
.common-about .right ul li {
	line-height: 1;
}

.common-about .right ul li:first-child {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #000;
}

.page-update {
	font-family: var(--book-font);
	display: block;
	margin-top: 70px;
	font-size: 22px;
	line-height: 1.6;
	text-align: center;
	border-radius: 5px;
	background: rgba(217, 217, 217, 0.5);
	padding: 20px 15px;
}

/* Media And Publication Tab Section */
.media-tab-nav {
	margin-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	position: sticky;
	z-index: 9;
	top: 130px;
	background: #FFF;
	padding-top: 20px;
}

.media-tab-nav li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: rgb(0, 0, 0, .50);
	text-transform: uppercase;
	letter-spacing: 4px;
	text-align: center;
	display: block;
	padding-bottom: 40px;
	border-bottom: 1px solid #000000;
	cursor: pointer;
}

.media-tab-nav li.active {
	color: #000;
}

/* media tab area  */
.flc-media .single-tab>div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 35px 45px;
}

.flc-media .entry-summary {
	-webkit-box-flex: 500px;
	-ms-flex: 500px;
	flex: 500px;
	max-width: 505px;
	width: 100%;
	height: 605px;
	background-color: #9e6c5a;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 30px;
	text-align: center;
	border-radius: 5px;
	position: relative;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	gap: 40px;
}

.flc-media .entry-summary::after {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 310px;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.30);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.flc-media .entry-summary a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.flc-media .entry-summary .entry-title,
.flc-media .entry-summary .entry-title a {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.60;
	color: #FFF;
}

.flc-media .entry-summary .updated {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #FFF;
	text-transform: uppercase;
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.flc-media .entry-summary .small a,
.flc-media .entry-summary .small {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #FFF;
	text-transform: uppercase;
}

.flc-media .entry-summary img,
.flc-media .entry-summary picture {
	width: 100%;
	display: block;
}

.flc-media .entry-summary iframe {
	width: 100%;
	height: 200px;
	display: block;
	border-radius: 5px;
	border: none;
}

/* Upper Lip Lift Page ------------------------ */
/* First Section */
.first-sec {
	background: url('images/inner/UnionBg.png') no-repeat;
	background-position: top 130px center;
}

.what-upper-lip {
	margin-top: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* left */
.what-upper-lip .left {
	max-width: 820px;
	width: 100%;
	height: 460px;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
	padding: 10px 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

.youtube-btn {
	width: 60px;
	height: 44px;
	display: block;
	background: var(--sp);
	background-position: top -286px left -210px;
	-webkit-transform: scale(1.6);
	-ms-transform: scale(1.6);
	transform: scale(1.6);
	margin-bottom: 45px;
	margin-left: 50px;
}

.what-lip-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px 0;
}

.what-lip-list li {
	line-height: 1;
}

.what-lip-list li:first-child {
	margin-right: 20px;
	padding-right: 20px;
	border-right: 2px solid #000;
}

.what-lip-list li a {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #000;
}

.what-lip-list li a:hover {
	text-decoration: underline;
}

/* right  */
.what-upper-lip .right {
	max-width: 680px;
	width: 100%;
}

.what-upper-lip .right h2 {
	margin-bottom: 35px;
}

/* Who Is the Section  */
.who-is-the {
	margin-top: 80px;
	max-width: 1080px;
	margin-inline: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 80px;
}

/* left */
.who-is-the .left img {
	display: block;
}

/* right */
.who-is-the .right {
	max-width: 500px;
}

.who-is-the .right p:not(:last-child) {
	margin-bottom: 40px;
}

/* Lip Lift Before and After */
.lip-after-before {
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(250, 190, 101, 0.10)), to(#fabe65));
	background: -o-linear-gradient(bottom, rgba(250, 190, 101, 0.10) 0%, #fabe65 100%);
	background: linear-gradient(0deg, rgba(250, 190, 101, 0.10) 0%, #fabe65 100%);
}

.single-lip-after-before {
	margin: 0 30px;
}

.single-lip-after-before img {
	width: 100%;
	height: 490px;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
}

.single-lip-after-before h3 {
	font-family: var(--book-font);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.10;
	margin-top: 70px;
	margin-bottom: 20px;
}

.hair-transplant-sec .single-lip-after-before h3 {
	margin-top: 40px;
}

/* What Is Section  */
.what-anatomy-sec {
	padding: 120px 0;
	background: url('images/inner/whatAnomyBg.jpg') no-repeat;
	background-size: cover;
}

.what-anatomy-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	gap: 40px;
}

/* left */
.what-anatomy-left {
	max-width: 545px;
	width: 100%;
	color: #FFF;
}

.what-anatomy-left h2 {
	color: #FFF;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgb(255, 255, 255, .30);
}

.what-anatomy-left p {
	margin-bottom: 35px;
}

.what-anatomy-left p a {
	color: #FFF;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.what-anatomy-left p a:hover {
	text-decoration: none;
}

.what-anatomy-left .youtube-box {
	border-radius: 5px;
	width: 100%;
	height: 305px;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	padding: 20px 70px;
}

.what-anatomy-left .youtube-box ul {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.what-anatomy-left .youtube-box button {
	margin-left: 80px;
	margin-bottom: 30px;
}

/* right */
.what-anatomy-right {
	max-width: 935px;
	width: 100%;
}

.what-anatomy-right ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 14px;
}

.what-anatomy-right ul li {
	border-radius: 5px;
	border: 1px solid rgb(255, 255, 255, .30);
	background: rgba(255, 255, 255, 0.10);
	-webkit-box-flex: 250px;
	-ms-flex: 250px;
	flex: 250px;
	max-width: 300px;
	width: 100%;
	min-height: 300px;
	padding: 20px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1.60;
	color: #FFF;
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
}

.patient-review-sec.patient {
	background: rgb(217, 217, 217, .40);
}

/* Upper Lip Faq Section ----------------- */
.upper-lip-faq-sec .container {
	max-width: 1500px;
}

.upper-lip-faq .faq-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* left */
.upper-lip-faq .faq-left {
	max-width: 560px;
	width: 100%;
	position: sticky;
	top: 150px;
	height: 100%;
}

.upper-lip-faq .faq-left h2 {
	font-size: 46px;
	font-weight: 500;
	margin-bottom: 45px;
}

.upper-lip-faq .faq-left h2 span {
	display: block;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 10px;
}

.upper-lip-faq .faq-left ul li {
	margin-bottom: 15px;
}

.upper-lip-faq .faq-left ul li a {
	font-family: var(--book-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.44;
	color: #000;
}

.upper-lip-faq .faq-left ul li a:hover,
.upper-lip-faq .faq-left ul li a.active {
	color: var(--copper);
}

/* right */
.upper-lip-faq .faq-right {
	max-width: 800px;
	width: 100%;
}

.upper-lip-faq .faq-accordion {
	border: 1px solid rgb(158, 108, 90, .37);
	border-radius: 5px;
	padding: 20px 25px;
}

.upper-lip-faq .faq-accordion:not(:last-child) {
	margin-bottom: 30px;
}

.upper-lip-faq .faq-accordion .title {
	font-size: 22px;
	font-weight: 500;
	line-height: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 12px;
}

.upper-lip-faq .faq-accordion .title::after {
	content: '+';
	display: block;
	min-width: 20px;
	height: 20px;
	border-radius: 100px;
	border: 1px solid #9e6c5a;
	font-size: 22px;
	color: #9e6c5a;
	text-align: center;
	line-height: 1;
}

.upper-lip-faq .faq-accordion .title.active::after {
	content: '-';
	line-height: .7;
}

.upper-lip-faq .faq-accordion .body {
	margin-top: 20px;
	display: none;
}

.upper-lip-faq .faq-accordion .body p:not(:last-child) {
	margin-bottom: 15px;
}

/* Schedule Button Section  */
.schedule-button {
	padding: 115px 0;
	background: url('images/inner/schduleBtnBg.jpg') no-repeat;
	border-radius: 5px;
}

.schedule-button a {
	max-width: 555px;
	margin-left: auto;
	margin-right: 335px;
	display: block;
	font-size: 37px;
	font-weight: 500;
	line-height: 1.3;
	color: #FFF;
	position: relative;
	padding-right: 210px;
}

.schedule-button a span {
	font-size: 57px;
	font-weight: 700;
	display: block;
}

.schedule-button a::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 96px;
	height: 16px;
	background: var(--sp);
	background-position: top 0 left -691px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.schedule-button a:hover::after {
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px);
}

/* Youtube Lip Gallery Section */
.youtube-lip-gallery {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr 35px 1fr;
	grid-template-rows: 1fr 1fr;
	-ms-grid-columns: 1fr 90px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 35px 90px;
}

.youtube-lip-gallery>*:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.youtube-lip-gallery>*:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

.youtube-lip-gallery>*:nth-child(3) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}

.youtube-lip-gallery>*:nth-child(4) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}

.youtube-lip-gallery .left {
	-ms-grid-row: 1;
	grid-row-start: 1;
	-ms-grid-column: 1;
	grid-column-start: 1;
	-ms-grid-row-span: 2;
	grid-row-end: 3;
	-ms-grid-column-span: 1;
	grid-column-end: 2;
	background: url('images/inner/woman-with-beautiful-make-up.jpg') no-repeat;
	background-size: cover;
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

.youtube-lip-gallery .left p {
	font-size: 25px;
	line-height: 1.60;
	color: #FFF;
	text-transform: capitalize;
	padding: 100px 135px;
	background: rgba(143, 54, 65, 0.40);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.youtube-lip-gallery .left p a {
	color: #FFF;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	display: unset;
}

.youtube-lip-gallery .left p a:hover {
	text-decoration: none;
}

.youtube-lip-gallery .two {
	-ms-grid-row: 1;
	grid-row-start: 1;
	-ms-grid-column: 2;
	grid-column-start: 2;
	-ms-grid-row-span: 1;
	grid-row-end: 2;
	-ms-grid-column-span: 1;
	grid-column-end: 3;
}

.youtube-lip-gallery .three {
	-ms-grid-row: 2;
	grid-row-start: 2;
	-ms-grid-column: 2;
	grid-column-start: 2;
	-ms-grid-row-span: 1;
	grid-row-end: 3;
	-ms-grid-column-span: 1;
	grid-column-end: 3;
}

.single-yoututbe-gallery {
	min-height: 430px;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	padding: 10px 20px;
	text-align: center;
}

.single-yoututbe-gallery button {
	margin-left: 140px;
}

.single-yoututbe-gallery span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.60;
	text-transform: uppercase;
	letter-spacing: 3px;
}

/* Contact Section  */
.contact-form-sec h2 {
	text-transform: unset;
}

.contact-form {
	margin-top: 100px;
}
.contact-form form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 80px 20px;
}

.contact-form .single-input {
	max-width: calc(50% - 10px);
	width: 100%;
}

.contact-form .single-input select,
.contact-form .single-input input {
	font-size: 20px;
	font-family: var(--book-font);
	font-weight: 400;
	line-height: 1.60;
	width: 100%;
	padding: 0 25px 25px 40px;
	border: none;
	outline: none;
	border-bottom: 1px solid rgb(0, 0, 0, .30);
	min-height: 58px;
}
input::placeholder, ::placeholder {
	color: #444!important;
}
.contact-form .single-input select:focus,
.contact-form .single-input input:focus {
	border-color: var(--copper);
}

.contact-form .single-input select {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.60;
	opacity: .6;
}

.single-input.check {
	max-width: 100%;
}

.contact-form label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.contact-form .single-input label input {
	width: 34px;
}

/* Eyes & Brows Page -------------------------- */
.first-con {
	max-width: 800px;
	margin-inline: auto;
	text-align: center;
}

.first-con h2 {
	margin-bottom: 45px;
}

.first-con h3 {
	margin-bottom: 40px;
}

.first-con p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.first-con p a:hover {
	text-decoration: none;
}

.first-con p:not(:last-child) {
	margin-bottom: 40px;
}

.office-arrow.eye {
	margin-top: 0;
	margin-bottom: 80px;
}

/* NYC Best Facial Plastic Surgeon Page ----------------- */
.dobule-board-sec {
	margin-top: 50px;
	margin-bottom: 120px;
	background: url('images/inner/UnionBg.png') no-repeat;
	background-position: top center;
}

.all-logo {
	overflow: auto;
}

.all-logo img {
	mix-blend-mode: darken;
	display: block;
	margin: auto;
}

.double-board-wrp {
	margin-top: 100px;
	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;
	gap: 40px;
}

/* left */
.double-board-left {
	max-width: 790px;
	width: 100%;
}

.double-board-left h2 {
	margin-bottom: 30px;
}

.double-board-left p {
	margin-bottom: 20px;
	margin-top: 20px;
	display: block;
	position: relative;
}

/* right  */
.double-board-right {
	max-width: 580px;
	width: 100%;
	position: relative;
}

.double-board-right img {
	display: block;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.double-board-right button {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 212px;
	height: 195px;
	background: var(--sp);
	background-position: top -419px left 0;
}

/* Why Choose Section  */
.why-choose-box {
	background: #9e6c5a;
	padding: 100px;
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px 60px;
	color: #FFF;
}

/* right */
.why-choose-box .left {
	max-width: 560px;
	width: 100%;
}

.why-choose-box .left h2 {
	color: #FFF;
	padding-bottom: 35px;
	border-bottom: 1px solid rgb(255, 255, 255, .30);
}

/* right */
.why-choose-box .right p {
	margin-bottom: 20px;
}

.why-choose-box .right ul {
	margin-left: 22px;
}

.why-choose-box .right ul li {
	list-style: disc;
}

/* More Patient Experiences  */
.more-patient-caro {
	margin-top: 80px;
	margin-bottom: 70px;
}

.single-more-patient {
	position: relative;
	min-height: 360px;
	width: 100%;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 25px;
}

.single-more-patient button {
	width: 106px;
	height: 104px;
	border-radius: 5px 0 0 5px;
	background: rgb(158, 108, 90, .87) var(--sp);
	background-position: top -141px left -195px;
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.single-more-patient button:hover {
	background-color: var(--yellow);
}

.more-patient-arrow {
	text-align: center;
}

/* Services Dr. Linkov Provides  */
.your-consultation-sec {
	padding-top: 120px;
	background: url('images/inner/consultationBg.jpg') no-repeat;
	background-size: cover;
}

.your-consultation-sec h2 {
	text-align: center;
	margin-bottom: 50px;
}

.your-consultation-sec ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 90px;
}

.your-consultation-sec ul li a {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-transform: uppercase;
	color: #000;
	border-radius: 5px;
	border: 1px solid #000;
	padding: 20px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.your-consultation-sec ul li a:hover {
	background: var(--copper);
	color: #FFF;
	border-color: transparent;
}

.your-consultation {
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.23);
	padding: 100px 320px;
	text-align: center;
}

.your-consultation h3 {
	margin-bottom: 40px;
}

/* Ear Surgery Page -------------------- */
.best-ear-plastic-sec {
	background: url('images/inner/earBg.jpg') no-repeat;
	background-size: cover;
	padding: 140px 0;
}

.best-ear-plastic {
	max-width: 1525px;
	margin-inline: auto;
	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;
	gap: 25px;
}

/* left  */
.best-ear-plastic-left {
	max-width: 510px;
	width: 100%;
}

/* right  */
.best-ear-plastic-right {
	max-width: 760px;
	width: 100%;
}

.best-ear-plastic-right p:not(:last-child) {
	margin-bottom: 30px;
}

/* Who Is a Good Candidate  */
.who-good-sec {
	background: url('images/inner/earGoodBg.jpg') no-repeat;
	background-size: cover;
}

.who-good-sec .head {
	max-width: 855px;
	margin-inline: auto;
	margin-bottom: 70px;
	text-align: center;
	color: #FFF;
}

.who-good-sec .head h2 {
	color: #FFF;
	margin-bottom: 50px;
}

.who-good-sec ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 35px;
}

.who-good-sec ul li {
	max-width: 370px;
	width: 100%;
	-webkit-box-flex: 300px;
	-ms-flex: 300px;
	flex: 300px;
	border-radius: 5px;
	border: 1px solid rgb(255, 255, 255, .40);
	background: rgba(255, 255, 255, 0.10);
	padding: 50px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: #FFF;
}

/* Ear Plastic Surgery Done Section  */
.surgery-done-cont {
	max-width: 1270px;
	margin-inline: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* right */
.surgery-done-sec .right {
	max-width: 750px;
	width: 100%;
}

.surgery-done-sec .right p:not(:last-child) {
	margin-bottom: 40px;
}

.surgery-done-sec .right ul {
	margin-bottom: 40px;
}

.surgery-done-bg {
	margin-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 40px;
}

.surgery-done-bg .cont {
	position: relative;
	z-index: 2;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	padding: 400px 20px 130px 20px;
}

.surgery-done-bg .cont::after {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80%;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-4%, rgba(158, 108, 90, 0)), color-stop(23%, #9e6c5a));
	background: -o-linear-gradient(top, rgba(158, 108, 90, 0) -4%, #9e6c5a 23%);
	background: linear-gradient(-180deg, rgba(158, 108, 90, 0) -4%, #9e6c5a 23%);
}

.surgery-done-bg .cont h3 {
	font-family: var(--book-font);
	font-size: 46px;
	font-weight: 400;
	line-height: 1.10;
	text-align: center;
	color: #FFF;
	margin-bottom: 40px;
}

.surgery-done-bg .cont ul {
	max-width: 490px;
	margin-inline: auto;
}

.surgery-done-bg .cont ul li {
	color: #FFF;
	list-style: disc;
}

/* Patients Satisfied Section  */
.patient-satisfied-sec {
	position: relative;
	z-index: 3;
}

.patient-satisfied-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: -100px;
	left: 0;
	width: 100%;
	height: 120%;
	background: var(--bg-victor-right);
}

.patient-satisfied {
	max-width: 860px;
	margin-inline: auto;
	text-align: center;
}

.patient-satisfied h2 {
	margin-bottom: 35px;
	margin-inline: auto;
	max-width: 710px;
}

.patient-satisfied button {
	width: 125px;
	height: 125px;
	display: block;
	margin: 80px auto;
	background: #fabe65 var(--sp);
	background-position: top -130px left -34px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.patient-satisfied button:hover {
	background-color: var(--copper);
}

.patient-satisfied span {
	font-size: 19px;
	line-height: 1.29;
	text-transform: uppercase;
}

.patient-satisfied span::before {
	content: '';
	display: block;
	margin-inline: auto;
	margin-bottom: 15px;
	width: 16px;
	height: 10px;
	background: var(--sp);
}

/* Facelift in New York City Page ------------------------ */
.facelift-wrp {
	margin-top: 50px;
	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;
	gap: 40px;
}

/* left */
.facelift-left {
	max-width: 680px;
	width: 100%;
}

.facelift-left h2 {
	margin-bottom: 50px;
}

/* right */
.facelift-right {
	max-width: 730px;
	width: 100%;
}

.facelift-right iframe {
	width: 100%;
	height: 495px;
	display: block;
	border-radius: 5px;
}

/* Best Facelift Section */
.best-facelift-sec {
	padding: 130px 0;
	background: rgb(250, 190, 101, .44);
}

.best-facelift-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.best-facelift-wrp h2 {
	max-width: 710px;
	width: 100%;
}

.best-facelift-wrp p {
	max-width: 760px;
}

.hair-transplant-sec .single-lip-after-before,
.ear-surgery-caro-sec .single-lip-after-before {
	max-width: 710px;
}

/* Eyelid and Section  */
.eyelid-sec img {
	display: block;
	width: 100%;
}

.eyelid-box {
	border-radius: 5px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-5%, rgba(158, 108, 90, 0)), color-stop(28%, #9e6c5a));
	background: -o-linear-gradient(top, rgba(158, 108, 90, 0) -5%, #9e6c5a 28%);
	background: linear-gradient(180deg, rgba(158, 108, 90, 0) -5%, #9e6c5a 28%);
	padding: 100px 260px;
	margin-top: -226px;
	position: relative;
}

.eyelid-box h2 {
	text-align: center;
	color: #FFF;
	padding-bottom: 40px;
	margin-bottom: 70px;
	border-bottom: 1px solid rgb(255, 255, 255, .30);
}

.eyelid-box>div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
}

.eyelid-box>div iframe {
	max-width: 450px;
	width: 100%;
	height: 305px;
	display: block;
}

.eyelid-box>div p {
	max-width: 575px;
	width: 100%;
	color: #FFF;
}

/* Bg Accordion Section  */
.bg-accordion-sec {
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.bg-accordion-sec .container {
	max-width: 860px;
}

.bg-accordion-sec .head h2,
.bg-accordion-sec .head p {
	margin-bottom: 40px;
	text-align: center;
}

.bg.bg-accordion-sec .head h2,
.bg.bg-accordion-sec .head p {
	color: #FFF;
}

.bg-accordion .single-accordion:not(:last-child) {
	margin-bottom: 10px;
}

.bg-accordion .accordion-title {
	font-family: var(--book-font);
	font-size: 22px;
	font-weight: 400;
	line-height: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 30px;
	border: 1px solid rgb(158, 108, 90, .37);
	border-radius: 5px;
	background: #FFF;
	margin-bottom: 0px;
}

.bg .bg-accordion .accordion-title {
	background: rgba(255, 255, 255, 0.10);
	color: #FFF;
	border-color: rgba(255, 255, 255, 0.10);
}

.bg-accordion .accordion-title::after {
	content: '+';
	display: block;
	min-width: 20px;
	width: 20px;
	height: 20px;
	border-radius: 100px;
	border: 1px solid #9e6c5a;
	font-size: 22px;
	color: #9e6c5a;
	text-align: center;
	line-height: 1;
}

.bg-accordion .accordion-title.active::after {
	content: '-';
	line-height: .7;
}

.bg .bg-accordion .accordion-title::after {
	border-color: #FFF;
	color: #FFF;
}

.bg-accordion .accordion-body {
	padding: 15px 40px;
	border-radius: 5px;
	margin-top: 10px;
	background: rgba(250, 190, 101, 0.5);
}

.bg .bg-accordion .accordion-body p {
	color: #FFF;
}

.jetlyft-procedure {
	margin-top: 100px;
	border-radius: 5px;
}

.jetlyft-procedure img {
	width: 100%;
	display: block;
}

.jetlyft-procedure>div {
	text-align: center;
	padding: 60px 85px;
	background: #fabe65;
}

.jetlyft-procedure h3 {
	font-family: var(--book-font);
	font-size: 46px;
	font-weight: 400;
	line-height: 1.10;
	margin-bottom: 45px;
}

/* Why Get a Facelift Section  */
.why-get-facelift {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px;
}

/* left */
.why-get-facelift-left {
	max-width: 715px;
	width: 100%;
}

.why-get-facelift-left img {
	display: block;
	width: 100%;
}

/* right */
.why-get-facelift-right {
	max-width: 760px;
}

.why-get-facelift-right p:not(:last-child),
.why-get-facelift-right h2:not(:last-child) {
	margin-bottom: 40px;
}

/* Content Section  */
.content-sec .container {
	max-width: 930px;
}

.content-head h2:not(:last-child),
.content-head p:not(:last-child) {
	margin-bottom: 40px;
}

.content-head p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.content-head p a:hover {
	text-decoration: none;
}

/* What Complications Section  */
.what-complications-sec .head {
	max-width: 830px;
	margin-inline: auto;
	margin-bottom: 60px;
	text-align: center;
}

.what-complications-sec .bg-accordion {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0 20px;
}

.what-complications-sec .single-accordion {
	width: 100%;
	max-width: calc(50% - 10px);
}

/* Contraindications Facelift Section */
.contraindication {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 85px;
}

.contraindication::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 1px;
	background: #000;
}

.contraindication-right ul:not(:last-child),
.contraindication p:not(:last-child) {
	margin-bottom: 25px;
}

.contraindication>div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
}

.contraindication-right ul {
	margin-left: 22px;
}

.contraindication-right ul li {
	list-style: disc;
}

/* What Alternatives Section  */
.what-alternative-sec {
	position: relative;
	z-index: 1;
}

.what-alternative-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: -80px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/VectorRight.png') no-repeat;
}

.what-alternative-sec .alternatives-width {
	max-width: 710px;
	margin-inline: auto;
}

.what-alternative {
	margin-top: 70px;
}

.revision-facelift {
	margin-top: 100px;
}

.male-facelift-sec .container {
	max-width: 1245px;
}

.male-facelift {
	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;
}

.male-facelift .contraindication-right {
	position: relative;
	z-index: 1;
	max-width: 700px;
}

.male-facelift .contraindication-right::after {
	content: '';
	position: absolute;
	top: 0;
	left: -80px;
	width: 1px;
	height: 100%;
	background: #000;
}

.male-facelift .contraindication-right p:not(:last-child) {
	margin-bottom: 30px;
}

/* Facelifts Faq Section  */
.facelifts-faq-sec .container {
	max-width: 1480px;
}

.facelifts-faq {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* left  */
.facelift-faq-left {
	max-width: 515px;
	width: 100%;
}

.facelift-faq-left h2 {
	margin-bottom: 50px;
}

.facelift-faq-left p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.facelift-faq-left p a:hover {
	text-decoration: none;
}

/* right  */
.facelift-faq-right {
	max-width: 800px;
	width: 100%;
}

.facelift-faq-right .bg-accordion {
	margin-bottom: 50px;
}

/* Face & Neck Section  */
.face-neck {
	max-width: 640px;
	margin-inline: auto;
}

.face-neck h2 {
	text-align: center;
	margin-bottom: 60px;
}

.face-neck ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 0 40px;
}

.face-neck ul li {
	padding: 3px 0;
	width: 100%;
}

.face-neck ul li a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.face-neck ul li a:hover {
	text-decoration: none;
}

/* Hair Transplant NYC Page ------------- */
.fut-hair {
	max-width: 890px;
	margin-inline: auto;
	margin-top: 80px;
	text-align: center;
}

.fut-hair h2 {
	margin-bottom: 50px;
}

.fut-hair iframe {
	width: 100%;
	border: none;
	height: 495px;
	border-radius: 5px;
	display: block;
	margin-bottom: 40px;
}

.fut-hair p {
	max-width: 480px;
	margin-inline: auto;
}

.fut-hair p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	display: unset;
}

.fut-hair p a:hover {
	text-decoration: none;
}

/* Hair Transplant Section  */
.hair-transplant-sec h2 {
	text-transform: unset;
}

.hair-transplant-wrp {
	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: flex-start;
	align-items: flex-start;
	gap: 40px;
	margin-top: 80px;
}

/* left */
.hair-transplant-left {
	max-width: 695px;
	width: 100%;
}

.hair-transplant-left img {
	display: block;
	width: 100%;
}

/* right  */
.hair-transplant-right {
	max-width: 780px;
	width: 100%;
}

.hair-transplant-right h2 {
	margin-bottom: 40px;
}

.hair-transplant-right p a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	color: #000;
	display: unset;
}

.hair-transplant-right p a:hover {
	text-decoration: none;
}

.hair-transplant-right ul:not(:last-child),
.hair-transplant-right p:not(:last-child) {
	margin-bottom: 30px;
}

.hair-transplant-right ul {
	margin-left: 22px;
}

.hair-transplant-right ul.two-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 3px 40px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 380px;
}

.hair-transplant-right ul li {
	list-style: disc;
	-webkit-box-flex: 160px;
	-ms-flex: 160px;
	flex: 160px;
}

/* Candidate for Section  */
.candidate-for {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/* left */
.candidate-left {
	max-width: 680px;
	width: 100%;
}

.candidate-left iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: none;
	border-radius: 5px 0 0 5px;
}

/* right  */
.candidate-right {
	background: #9e6c5a;
	padding: 60px 90px;
	max-width: 920px;
	color: #FFF;
	border-radius: 0 5px 5px 0;
}

.candidate-right h2 {
	color: #FFF;
	margin-bottom: 40px;
}

/* Good Candidate Section  */
.good-candidate {
	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;
	gap: 20px 40px;
}

/* left  */
.good-candidate-left {
	max-width: 570px;
	width: 100%;
}

/* right  */
.good-candidate-right {
	max-width: 800px;
	width: 100%;
}

.good-candidate-right p {
	margin-bottom: 30px;
}

.good-candidate-right ul {
	margin-left: 22px;
}

.good-candidate-right ul li {
	list-style: disc;
}

/* Ways to Harvest Section  */
.ways-harvest-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px 70px;
}

/* left  */
.ways-harvest-left {
	max-width: 800px;
	width: 100%;
}

.ways-harvest-sec.faq .ways-harvest-left {
	max-width: 615px;
}

.ways-harvest-left h2 {
	margin-bottom: 50px;
}

.ways-harvest-left h2 strong {
	display: block;
}

.ways-harvest-left iframe {
	width: 100%;
	height: 445px;
	display: block;
	border: none;
	border-radius: 5px;
}

.ways-harvest-sec.faq .ways-harvest-left iframe {
	height: 340px;
}

/* right */
.ways-harvest-right {
	max-width: 715px;
	width: 100%;
}

.ways-harvest-right h2 {
	margin-bottom: 50px;
}

.ways-harvest-right .bg-accordion {
	margin-top: 30px;
}

/* Methods Section  */
.methods-sec img {
	display: block;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.methods-con {
	border-radius: 5px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-7%, rgba(158, 108, 90, 0)), color-stop(22%, #9e6c5a));
	background: -o-linear-gradient(top, rgba(158, 108, 90, 0) -7%, #9e6c5a 22%);
	background: linear-gradient(180deg, rgba(158, 108, 90, 0) -7%, #9e6c5a 22%);
	padding: 270px 250px 130px 250px;
	margin-top: -340px;
	position: relative;
	z-index: 3;
}

.methods-con h2 {
	color: #FFF;
	text-align: center;
	margin-bottom: 50px;
}

.methods-con>p {
	max-width: 890px;
	text-align: center;
	margin-inline: auto;
	color: #FFF;
}

.methods-con .bg-accordion {
	max-width: 740px;
	margin-inline: auto;
	margin-top: 50px;
}

.methods-con .bg-accordion>p {
	margin: 30px 0;
	color: #FFF;
}

.methods-con .accordion-title {
	background: rgba(255, 255, 255, 0.10);
	color: #FFF;
	border: none;
}

.methods-con .accordion-title::after {
	border-color: #FFF;
	color: #FFF;
}

/* Hair Grafts Section  */
.hair-grafts-sec {
	background: url('images/inner/graftsBg.jpg') no-repeat;
	background-size: cover;
}

.hair-grafts-wrp {
	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;
	gap: 25px 40px;
}

/* left  */
.hair-grafts-left {
	max-width: 580px;
	width: 100%;
}

/* right */
.hair-grafts-right {
	max-width: 800px;
	width: 100%;
}

.hair-grafts-right ul:not(:last-child),
.hair-grafts-right p:not(:last-child) {
	margin-bottom: 40px;
}

.hair-grafts-right ul {
	margin-left: 22px;
}

.hair-grafts-right ul li {
	list-style: disc;
}

/* Natural Appearance Section */
.natural-appearance-sec {
	padding: 130px 0;
	background: url('images/inner/naturalBg.jpg') no-repeat;
	background-size: cover;
}

.natural-appearance h2 {
	color: #FFF;
	max-width: 950px;
	text-align: center;
	margin-inline: auto;
	margin-bottom: 50px;
}

.natural-appearance p {
	color: #FFF;
	text-align: center;
}

.natural-appearance ul {
	margin-top: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 35px 40px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.natural-appearance ul li {
	border-radius: 5px;
	border: 1px solid rgb(255, 255, 255, .40);
	background: rgba(255, 255, 255, 0.10);
	padding: 60px 70px;
	color: #FFF;
	line-height: 1.60;
	max-width: 500px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.visit-gallery.hair {
	background-position: left -230px center;
}

.ways-harvest-right .bg-accordion {
	margin-bottom: 50px;
}

/* Blog Page ----------------------- */
.blog-page-area {
	margin: 100px 0;
}

.blog-page-area .container {
	max-width: 1440px;
}

.blog-post-wraper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-bottom: 50px;
}

.single-blog-post {
	max-width: calc(33% - 20px);
	width: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--yellow);
}

.blog-post-thumb {
	height: 250px;
	background: var(--yellow);
	order: -1;
	margin-bottom: 30px;
}

.blog-post-thumb a {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.single-blog-post .post-title {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 400;
	color: #000;
	min-height: 62px;
	margin-bottom: 12px;
}

.single-blog-post .post-title:hover {
	color: var(--yellow);
}

.post-info {
	padding: 0 20px;
}

.post-info p {
	font-size: 15px;
	font-weight: 400;
	color: #8a8383;
}

.blog-post-info {
	padding: 20px;
}

.blog-post-exerp p {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
}

.blog-post-exerp a {
	font-size: 18px;
	font-weight: 400;
	color: #000;
	margin-top: 20px;
}

.blog-post-exerp a:hover {
	color: var(--yellow);
}

/* blog nav link  */
.nav-links {
	display: flex;
	justify-content: end;
	gap: 10px;
}

.nav-links span,
.nav-links a {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	width: 35px;
	height: 35px;
	border: 1px solid #e6e3e3;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}

.nav-links span {
	background: #e6e3e3;
}

a.prev.page-numbers {
	font-size: 0;
	background: var(--sp);
	background-position: top 11px left 9px;
	transform: rotate(-90deg);
}

a.next.page-numbers {
	font-size: 0;
	background: var(--sp);
	background-position: top 11px left 9px;
	transform: rotate(90deg);
}

.page-numbers:hover {
	background-color: #e6e3e3 !important;
}

/* On this page Section ----------------- */
.on-this-page-area {
	position: sticky;
	z-index: 99;
	left: 0;
	width: 100%;
	top: 0;
	background: var(--copper);
	padding: 12px 0 9px 0;
}

.on-this-page-topcon p {
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.on-this-page-topcon p::after {
	content: '';
	position: absolute;
	top: 5px;
	right: -20px;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid #FFF;
	border-left: 2px solid #FFF;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.on-this-page-topcon p.rotate::after {
	-webkit-transform: rotate(136deg);
	-ms-transform: rotate(136deg);
	transform: rotate(136deg);
	top: 12px;
}

/* list wrap */
.on-this-page-content {
	display: none;
}

.on-this-page-content-wraper ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px 15px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 10px 0;
}

.on-this-page-content-wraper ul li {
	list-style: none;
}

.on-this-page-content-wraper ul li a {
	font-weight: 500;
	font-size: 14px;
	color: #FFF;
	text-decoration: none;

}

.on-this-page-content-wraper ul li a.active {
	color: #fabe65;
}

.on-this-page-content-wraper ul li a:hover {
	text-decoration: underline;
}

/* progress bar  */
.progress-area {
	width: 100%;
	height: 3px;
	background: #FFF;
	position: absolute;
	top: 0;
}

.progress {
	background: #000;
	height: 3px;
	width: 0;
}

/* Main Inner Section ------------------------ */
.main-inner {
	max-width: 800px;
	width: 100%;
	margin-inline: auto;
}

.main-inner h2 {
	font-size: 42px;
	font-weight: 300;
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 80px;
	margin-top: 60px;
	position: relative;
	text-align: center;
	clear: both;
}
.main-inner h2:before {
	content: '';
	position: absolute;
	bottom: -40px;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 1px;
	background: #777;
}
.main-inner h2 span {
	display: block;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
	font-family: inherit;
	text-align: center;
}
.main-inner h2:after {
	content: '';
	position: absolute;
	bottom: -47px;
	left: 0;
	right: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	background: #9e6c5a;
}
.main-inner h3 {
	font-size: 36px;
	font-weight: 300;
	line-height: 1.5;
	text-transform: uppercase;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.main-inner h4 {
	font-size: 32px;
	font-weight: 300;
	line-height: 1.5;
	text-transform: uppercase;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.main-inner h5 {
	font-size: 28px;
	font-weight: 300;
	line-height: 1.5;
	text-transform: uppercase;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.main-inner p a {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}

.main-inner p a:hover {
	text-decoration: none;
}

.main-inner ul {
	margin-left: 30px;
}

.main-inner ul li {
	list-style: disc;
}

.main-inner ul li a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	color: #000;
}

.main-inner ul li a:hover {
	text-decoration: none;
}

/* inner margin bottom  */
.main-inner p:not(:last-child), .main-inner ul:not(:last-child), .main-inner ol:not(:last-child), .main-inner img:not(:last-child), .main-inner iframe, .main-inner iframe:not(:last-child) {
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.ul-grid {
	margin: 50px 0;
	display: block;
}

.ul-grid ul {
	columns: 220px 2;
	gap: 30px;
}

/* Main Side Bar ------------- */
.sidebar-gallery {
	position: fixed;
	top: 200px;
	left: 0;
	width: 300px;
	min-height: 350px;
	background: var(--copper);
	padding: 30px 20px 20px 20px;
	border-radius: 0 15px 15px 0;
}

.sidebar-gallery .title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #FFF;
	display: block;
	margin-bottom: 20px;
}

.sidebar-gallery ul {
	margin-left: 0;
	margin-bottom: 0;
}

.sidebar-gallery ul li {
	padding: 15px 0;
	border-bottom: 1px solid #ffffff45;
	list-style: disc;
	color: #fff;
	margin-left: 18px;
}
.sidebar-gallery ul li:last-child {
	border-bottom: 0px;
}
.sidebar-gallery ul li a {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	color: #FFF;
	text-decoration: none;
}

.sidebar-gallery ul li a:hover {
	text-decoration: underline;
}

/* side bar right  */
.sidebar-right {
	position: fixed;
	z-index: 1;
	top: 200px;
	right: 0;
	width: 300px;
}

.single-bar-right {
	border-radius: 10px 0px 0px 10px;
	background: var(--copper);
	overflow: hidden;
}

.single-bar-right.meet {
	background: var(--yellow);
}

.single-bar-right.sch {
	background: var(--copper);
	border: 1px solid rgba(18, 73, 134, 0.21);
	border-right: 0;
}

.single-bar-right a {
	position: relative;
	padding: 25px 15px 25px 70px;
	font-weight: normal;
	font-size: 20px;
	line-height: 48px;
	color: #fff;
	text-transform: uppercase;
	width: 100%;
	text-align: left;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	display: inline-block;
}

.single-bar-right a span {
	display: block;
	font-weight: normal;
	font-size: 20px;
	line-height: 19.2px;
	color: rgb(255 255 255 / 56%);
	margin-bottom: 8px;
}

.single-bar-right a::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 31px;
	width: 34px;
	height: 34px;
	border-left: 1px solid #ffffff;
	border-bottom: 1px solid #FFF;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: .5s;
}

/* Inner Before After Carousel  */
.main-inner .gallery {
	position: relative;
	z-index: 9;
	padding: 100px 0;
	margin: 100px 0;
	background-image: url('images/gradientBg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.main-inner .gallery-1-2-holder .gallery,
.main-inner .gallery-1-holder .gallery {
	background-image: transparent;
	padding: 0;
}

.main-inner .gallery .inner-wrp {
	max-width: 1760px !important;
	width: 100%;
	margin-left: auto;
	padding-bottom: 150px;
	position: relative;
}

.main-inner .gallery .gallery-item {
	margin: 0 25px;
}

.main-inner .gallery .gallery-item img {
	display: block;
	border-radius: 5px;
	max-width: 710px;
	width: 100%;
	height: 500px;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-inner .gallery-item figcaption {
	font-size: 22px;
	max-width: 660px;
	text-align: center;
	margin: 20px;
	width: 100%;
}
.main-inner .gallery .inner-wrp .slick-arrow {
	position: absolute;
	bottom: 0;
	border-radius: 3px;
	background: #9e6c5a var(--sp);
	width: 65px;
	height: 65px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 0;
}

.main-inner .gallery .inner-wrp .slick-arrow:hover {
	background-color: var(--copper);
}

.main-inner .gallery .inner-wrp .slick-arrow.slick-prev {
	background-position: top 24px left -336px;
	left: 41%;
}

.main-inner .gallery .inner-wrp .slick-arrow.slick-prev::after {
	content: '';
	position: absolute;
	top: -16px;
	right: -35px;
	width: 2px;
	height: 100px;
	background: #9e6c5a;
	pointer-events: none;
}

.main-inner .gallery .inner-wrp .slick-arrow.slick-next {
	background-position: top 23px left -416px;
	left: calc(41% + 130px);
}

.main-inner ul.two-col {
	columns: 200px 2;
	gap: 30px;
	position: relative;
	z-index: 9;
}

/* Inner Schedule Section  */
.fullWidthIn.schadule {
	position: relative;
	z-index: 5;
	padding: 115px 0;
	background: #9e6c5a url('images/brown-bg.svg') no-repeat;
	background-position: 25% center;
	border-radius: 5px;
	margin: 70px 0;
}

.fullWidthIn.schadule .inner-wrp {
	padding-left: 700px;
}

.fullWidthIn.schadule .inner-wrp .sch_a {
	max-width: 555px;
	display: block;
	font-size: 37px;
	font-weight: 500;
	line-height: 1.3;
	color: #FFF;
	position: relative;
	padding-right: 210px;
	text-decoration: none !important;
	margin-bottom: 30px;
}

.fullWidthIn.schadule .inner-wrp .sch_a span {
	font-size: 57px;
	font-weight: 700;
	display: block;
}
.fullWidthIn.schadule .inner-wrp .sch_a:hover::after {
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px);
}

.fullWidthIn.schadule .inner-wrp ul {
	margin: 0;
}

.fullWidthIn.schadule .inner-wrp ul li {
	list-style: none;
	position: relative;
}

.fullWidthIn.schadule .inner-wrp ul li a {
	font-size: 36px;
	font-weight: 500;
	color: #FFF;
	text-decoration: none;
	position: relative;
}
.fullWidthIn.schadule .inner-wrp ul li a:hover {
	text-decoration: underline;
}
.main-inner iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 10px;
	margin-bottom: 2rem;
	margin-top: 2rem;
}
/* Inner Review  */
.google.review {
	text-align: center;
	position: relative;
	background: #FFF;
	z-index: 9;
	padding-bottom: 90px;
	margin-bottom: 2rem;
	margin-top: 2rem;
	background: #fabe652b;
	padding: 40px;
	border-radius: 10px;
}

.google.review::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 130px;
	height: 100px;
	background-image: url('images/quote2.svg');
	background-repeat: no-repeat;
	-webkit-transform: rotate(180deg) scale(.5);
	-ms-transform: rotate(180deg) scale(.5);
	transform: rotate(180deg) scale(.5);
	opacity: .5;
}

.google.review::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0px;
	width: 130px;
	height: 100px;
	background-image: url('images/quote2.svg');
	background-repeat: no-repeat;
	opacity: .5;
	transform: scale(.5);
}

.google.review span {
	color: #FFCE00;
	font-size: 22px;
	letter-spacing: 2px;
	padding-bottom: 35px;
	display: block;
}

.google.review>span::before {
	content: '';
	display: block;
	width: 80px;
	height: 80px;
	background: var(--sp);
}

.google.review>span::before {
	content: '';
	display: block;
	width: 52px;
	height: 52px;
	background: var(--sp);
	background-position: top -285px left -101px;
	margin-inline: auto;
	margin-bottom: 10px;
}

.google.review .client-name {
	font-size: 18px;
	color: #c5c5c5;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.google.review .client-name::before {
	display: none;
}

.google.review p {
	position: relative;
}

.google.review p strong {
	margin-top: 20px;
	display: inline-block;
}

/* Inner Before After Button  */
.before-after-btn .inner-wrp {
	position: relative;
	z-index: 6;
	padding: 130px 0 130px 715px;
	background: #9e6c5a url("images/white-bg.svg") no-repeat;
	border-radius: 5px;
	background-position: 25% center;
}

.before-after-btn .inner-wrp a {
	font-size: 37px;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	color: #fff;
	position: relative;
	padding-right: 175px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: inline-block;
}

.before-after-btn .inner-wrp .bef_af {
	font-size: 57px;
	font-weight: 700;
	display: block;
	line-height: 1;
}

.before-after-btn .inner-wrp a:hover .bef_af {
	color: var(--yellow);
}

.before-after-btn .inner-wrp a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100px;
	height: 18px;
	background: var(--sp);
	background-position: top 0px left -689px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.before-after-btn .inner-wrp a:hover::after {
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px);
}

/* blockquote section  */
blockquote {
	position: relative;
	z-index: 6;
	padding: 50px 30px;
	background: #9e6c5a url(images/inner/faceBg.jpg) no-repeat;
	background-size: cover;
	background-position: left -95px top;
	border-radius: 5px;
	width: 100%;
	margin-bottom: 50px;
}

.main-inner blockquote a {
	color: inherit;
}

blockquote p {
	font-size: 24px;
	line-height: 1.60;
	color: #FFF;
}


/* Typography ----------------------------------------- */
:root {
	--book-font: "Futura Cyrillic Book";
	--heading-font: "Futura Cyrillic Book";
	--sp: url("images/sp.svg") no-repeat;
	--gradient-bg: url("images/gradientBg.jpg") no-repeat center center / cover;
	--bg-victor-left: url("images/VectorLeft.png") no-repeat;
	--bg-victor-right: url("images/VectorRight.png") no-repeat;
	--bg-victor-right-bottom: url("images/VectorRightBottom.png") no-repeat;
	--bg-victor-bottom-left: url("images/VectorBottomLeft.png") no-repeat;
	--black: #000000;
	--copper: #9e6c5a;
	--yellow: #fabe65;
}

/* heading style  */
.heading {
	font-family: var(--book-font);
	font-size: 60px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: capitalize;
	color: var(--black);
}

.heading span {
	display: block;
	font-family: 'Futura Cyrillic';
	font-size: 40px;
	font-weight: 300;
	line-height: 67px;
	margin: 0px 0px 10px;
}

/* logo heading  */
.logo-heading {
	font-family: var(--heading-font);
	font-size: 60px;
	font-weight: 400;
	line-height: 1.3;
	color: rgba(158, 108, 90, 0.34);
	margin-bottom: 30px;
	display: block;
}

.logo-heading::before {
	content: "";
	display: block;
	width: 35px;
	height: 110px;
	margin-inline: auto;
	margin-bottom: 8px;
	background: var(--sp);
	background-position: top -586px left -470px;
}

.text-transform-unset {
	text-transform: unset;
}

/* tab body  */
.single-tab {
	display: none;
}

.single-tab:first-child {
	display: block;
}

/* default button style  */
.common-btn, .default-btn {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--black);
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #000;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	min-width: 150px;
	text-align: center;
	position: relative;
	display: block;
	width: max-content;
}

.common-btn:hover,
.default-btn:hover {
	background: var(--yellow);
	color: #fff;
	border-color: transparent;
}

.default-btn.white {
	color: #fff;
	border-color: #fff;
}

.default-btn.white:hover {
	border-color: transparent;
}

/* custom nav arrow style  */
.custom-nav {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 50px;
	padding: 20px 0;
	position: relative;
}

.custom-nav::after {
	/*content: "";*/
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	background: #000;
}

.custom-nav li {
	border-radius: 10px;
	background: #9e6c5a var(--sp);
	width: 65px;
	height: 65px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.custom-nav li:hover {
	opacity: .5;
}

.custom-nav li.prev {
	background-position: top 24px left -336px;
}

.custom-nav li.next {
	background-position: top 23px left -416px;
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

.d-block {
	display: block;
}

/* width 800 */
.w-800 {
	max-width: 800px;
	width: 100%;
	margin-inline: auto;
}

/* z index  */
.z-index {
	position: relative;
	z-index: 9;
}

.overflow-auto {
	overflow: auto;
	width: 100%;
}

.single-tab p a,
.single-tab li a {
	color: inherit;
	text-decoration: underline;
}

.tab-accolades {
	background: url(/wp-content/uploads/2026/02/accolades-01.png);
	background-repeat: no-repeat;
	padding: 30px;
	margin: 40px 0px 0px;
}

ul.square-list {
	list-style: disc;
	margin: 30px 0 30px 30px;
}

.faq-accordion p a,
.faq-accordion li a {
	color: inherit;
	text-decoration: underline;
}

.faq-accordion ul {
	margin: 30px 0px 30px 30px;
	list-style: disc;
}

.faq-accordion ol {
	margin: 30px 0px 30px 30px;
	list-style: decimal;
}

.faq-accordion iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	margin: 30px 0px;
}

ul.what-lip-list {
	color: #000;
	font-weight: bold;
	font-size: 16px;
}

.facial-plastic-tab-right ul h2 {
	font-size: 20px;
	line-height: 1.5;
	margin-top: 30px;
}

.facial-plastic-tab-right ul {
	margin-top: 40px;
}

.facial-plastic-tab-right ul p {
	margin: 0px;
}

/*****CONTACT FORM******/
.contact-from-content {
	max-width: 900px;
	margin: 150px auto;
	padding: 100px 90px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.general-inputs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.general-inputs input,
.general-inputs select {
	width: 100%;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #e5e5e5;
	font-size: 18px;
	transition: 0.3s ease;
	background: #fafafa;
	font-family: 'Futura Cyrillic';
	font-weight: 300;
}

.general-inputs select {
	cursor: pointer;
}

.general-inputs input:focus,
.general-inputs select:focus {
	outline: none;
	border-color: #c7a27c;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(199, 162, 124, 0.15);
}

.general-inputs input::placeholder {
	color: #9a9a9a;
}

.newsletter-consent {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin: 25px 0 30px;
}

.newsletter-consent__checkbox {
	appearance: none;
	width: 22px;
	height: 22px;
	border: 2px solid #c7a27c;
	border-radius: 6px;
	cursor: pointer;
	position: relative;
	margin-top: 3px;
}

.newsletter-consent__checkbox:checked {
	background: #c7a27c;
}

.newsletter-consent__checkbox:checked::after {
	content: "✓";
	position: absolute;
	color: #fff;
	font-size: 14px;
	top: 1px;
	left: 4px;
}

.newsletter-consent__label {
	font-size: 18px;
	line-height: 1.5;
}

.contact-quiz {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 30px;
	font-weight: 600;
	font-size: 18px;
}

.contact-quiz input[type="text"] {
	width: 120px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid #e5e5e5;
	padding: 0 15px;
	font-size: 16px;
}

.submit-btn input {
	height: 56px;
	padding: 0 45px;
	border-radius: 999px;
	border: none;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .3px;
	cursor: pointer;
	background: linear-gradient(135deg, #c7a27c, #b48a5f);
	color: #fff;
	transition: 0.3s ease;
	box-shadow: 0 10px 25px rgba(180, 138, 95, 0.3);
}

.submit-btn input:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(180, 138, 95, 0.45);
}

.success-msg {
	display: none;
	margin-top: 20px;
	color: #2e7d32;
	font-weight: 600;
}

ul.col-2-ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
ul.col-2-ul.arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	max-height: 368px;
	overflow-y: scroll;
}
ul.col-2-ul li {
	width: 48%;
}

.main-inner figure.alignright,
.main-inner img.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 20px;
}

.main-inner figure.alignleft,
.main-inner img.alignleft {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}

.main-inner figure img,
.main-inner img {
	margin-bottom: 0px;
	border-radius: 5px;
}

figcaption {
	font-style: italic;
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
}

.main-inner ol {
	margin: 30px 0px 0px 30px;
}

/*****Gallery******/

.p-hair-transplant-box {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
}

.single-transplant-box {
	background-color: #f7f7f7;
	padding: 50px 30px;
	border-top: 1px dotted #ccc;
	margin: 40px 0px;
}

.treatment-content h3,
.single-transplant-box>p {
	font-size: 32px;
	font-weight: 300;
	line-height: 1.5;
	padding-bottom: 30px;
	color: #151C2B !important;
	font-family: Arboria-book;
}

.single-transplant-box>p {
	font-size: 18px;
}

.gallery-1-2-holder {
	width: 100%;
	display: flex;
	/* justify-content: center; */
	align-items: flex-start;
	gap: 10px;
	/* max-height: 500px; */
}

.gallery-1-2-holder .gallery:nth-child(1) {
	width: 480px;
}

.gallery-1-2-holder .gallery:nth-child(2) {
	width: 235px;
}

.gallery-1-2-holder .gallery:first-child figure {
	max-width: 480px;
}

.main-inner .gallery-1-2-holder .gallery .gallery-item img {
	display: flex;
	border-radius: 5px;
	max-width: 480px;
	width: 100%;
	object-fit: cover;
	justify-content: flex-start;
	align-items: flex-start;
	height: unset;
	max-height: 480px;
}

.main-inner .gallery-1-2-holder .gallery .gallery-item {
	margin: 0px;
	object-fit: contain;
}

.gallery-1-2-holder .gallery:nth-child(2) .gallery-item img {
	height: 236px;
	width: 100%;
	object-fit: cover;
}

.treatment-content .gallery figure.gallery-item {
	display: inline-block;
	margin: 0 0 1em;
	width: 90%;
}

.treatment-content .gallery figure.gallery-item a,
.treatment-content .gallery figure.gallery-item img {
	width: 100%;
	height: auto;
}

.treatment-content .gallery figure.gallery-item a,
.treatment-content .gallery figure.gallery-item img {
	width: 100%;
	height: auto;
}

.gallery-1-2-holder .gallery {
	grid-template-columns: 1fr;
}

.treatment-content .gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.main-inner .gallery-1-2-holder .gallery {
	display: flex;
	flex-direction: column;
	background: none;
	padding: 0px;
	margin: 0px;
	justify-content: flex-start;
	gap: 10px;
}

.single-transplant-box {
	background-color: #f7f7f7;
	padding: 50px 30px;
	border-top: 1px dotted #ccc;
	text-align: center;
}

.single-transplant-box>p {
	font-size: 18px;
	line-height: 1.5;
	padding: 30px;
}

.more-patient-caro iframe {
	aspect-ratio: 1 / 1;
}

input.search-field {
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 100px;
}

button.search-submit.default-btn {
	padding: 15px;
	border-radius: 100px;
	font-size: 12px;
	width: max-content;
	max-width: unset;
}

ul.sitemap ul {
	margin: 20px;
}

.mr-50 {
	margin-top: 50px;
}

.surgery-done-sec .right ul {
	margin: 0px 0 40px 40px;
	list-style: disc;
}

.surgery-done-sec .right ul li {
	margin-bottom: 10px;
}

.surgery-done-sec .right ul li:last-child {
	margin-bottom: 0;
}

.bg-accordion .accordion-body p {
	margin-bottom: 20px;
}

.bg-accordion .accordion-body p:last-child {
	margin-bottom: 0px;
}

.bg-accordion .accordion-body p {
	margin-bottom: 20px;
}

.bg-accordion .accordion-body p:last-child {
	margin-bottom: 0px;
}

.bg .bg-accordion .accordion-body p a,
.bg .bg-accordion .accordion-body li a {
	color: #fff;
	text-decoration: underline;
}

.bg .bg-accordion .accordion-body p a:hover,
.bg .bg-accordion .accordion-body li a:hover {
	text-decoration: none;
}

.bg .bg-accordion .accordion-body li {
	color: #fff;
}

.bg-accordion .accordion-body p a,
.bg-accordion .accordion-body li a {
	color: #000;
	text-decoration: underline;
}

.bg-accordion .accordion-body p a:hover,
.bg-accordion .accordion-body li a:hover {
	text-decoration: none;
}

.bg-accordion .accordion-body ul {
	margin: 30px 0 30px 30px;
	list-style: disc;
}

.single-bar-right:hover a:before {
	left: 6px;
}

.main-inner > .gallery:first-child {
	margin-top: -100px;
	margin-bottom: 100px;
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
}

body {
	overflow-x: clip;
}

.single-key-differentiator .right ul {
	list-style: disc;
	margin-left: 40px;
	font-size: 20px;
	line-height: 1.7;
}

.patient-review-wrp {
	display: flex;
	gap: 60px;
	align-items: center;
}

.patient-review-wrp .left {
	width: 40%;
}

.patient-review-wrp .patient-review {
	width: 60%;
	min-width: 0;
	/* ⭐ VERY IMPORTANT FOR FLEX + SLICK */
}
.single-patient-review {
	max-width: 900px;
	/* adjust as you like */
}

/********Before after gallery control**********/
.treatment-carousel {
	min-width: 0;
	width: 90%;
	max-width: 90%;
	overflow-x: clip;
}

.treatment-carousel,
.treatment-carousel * {
	touch-action: pan-y;
}

.treatment-carousel .slick-list {
	overflow: visible !important;
}

.treatment-carousel .gallery-item {
	pointer-events: none;
}

.treatment-carousel .gallery-item a,
.treatment-carousel .gallery-item img {
	pointer-events: auto;
}

.treatment-carousel img {
	width: 100%;
	height: auto;
	display: block;
}
.single-patient-review {
	height: 100%;
}

.about-doctor-content .left p a {
	color: #000;
	text-decoration: underline;
}

.about-doctor-content .left p a:hover {
	text-decoration: none;
}

a.page-numbers {
	color: #9e6c5a;
}

figure.aligncenter {
	width: 100%;
	height: auto;
	display: block;
	margin: 50px auto;
}

table.custom-table.triple-row td {
	border: 1px solid;
	padding: 10px;
}

table.custom-table.triple-row {
	margin-bottom: 30px;
}
.inner-banner-left p:empty {
	display: none;
}
section.more-patient-experience-sec .saYoutube-area{
	width: 100%;
	height: 460px;
	max-width: 585px;
	margin: 10px;
}
section.more-patient-experience-sec .saYoutube-area iframe{
	width: 100%;
	height: 100%;
}
.common-about .left {
	width: 100%;
}
.single-patient-review p a {
	color: #000;
	text-decoration: underline;
}
form.search-form {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.single-footer:last-child {
	width: 100%;
	max-width: 410px;
}
.treatment-arrow {
	margin: 0 auto;
	display: block;
	width: max-content;
	margin-top: 40px;
}
section.office-carousel-sec .container {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
}
ul.col-2-ul.arrow {
	position: relative;
}
ul.col-2-ul.arrow:after {
	content: '';
	width: 20px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 10px;
	background: url(images/arrows.svg) no-repeat;
}
.all-logo-sec .text-center{
	max-width: 100%;
}
a.default-btn.centeer {
	margin: 0 auto;
}
iframe.map {
	margin-top: 80px;
	margin-bottom: 0px;
}
.main-inner figure {
	width: max-content;
	max-width: max-content;
}
.content-reviewed {
	padding: 30px;
	color: #fff;
	border: 1px solid #ffffff29;
	margin-bottom: 20px;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.5;
}
.content-reviewed h3 {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 20px;
	display: block;
	text-transform: uppercase;
}
.single-footer.footer ul li {
	border-right: 1px solid #ffffff78;
	padding-right: 30px;
}
.single-footer.footer ul {
	display: flex;
	gap: 30px;
	color: #fff;
	justify-content: center;
	flex-wrap: wrap;
}
.single-footer.footer {
	margin: 50px auto;
	border-bottom: 1px solid #ffffff47;
	width: 100%;
	padding-bottom: 30px;
}
a.footer-phone:hover {
	text-decoration: underline;
}
.single-footer.footer.center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
}
.single-footer.footer.center .social {
	margin-top: 0px;
}
.single-footer.footer ul.social li {
	border-right: 0px;
	padding-right: 0px;
}
.single-footer.two ul {
	padding-bottom: 30px;
}
.footer-wrp * {
	font-size: 18px;
}
.single-footer iframe {
	border-radius: 10px;
}
.single-footer.footer ul li:last-child {
	border-right: 0px;
}
/* RESPONSIVE CSS ---------------------------------------------------------------------------- */
@media all and (max-width:1700px) {

	/* Min Footer Section  */
	.min-footer-sec .container {
		margin-left: auto;
	}
	.common-abou-dr-sec {
		max-width: 900px;
	}
	.page-update {
		font-size: 18px;
	}
}

/* 1700 End */
@media all and (max-width:1440px) {
	.main-inner .gallery-item figcaption {
		max-width: 550px;
	}
	.contact-from-content {
		max-width: 700px;
	}
	.common-abou-dr-sec {
		max-width: 700px;
	}
	.gallery-1-2-holder .gallery:nth-child(2) {
		width: 147px;
	}
	.main-inner {
		max-width: 700px;
	}
	/* Min Header Top  */
	.main-header {
		padding: 10px 0;
		-webkit-box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.15);
		box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.15);
	}

	.header-logo img {
		height: 60px;
	}

	.header-wrp {
		gap: 20px;
		margin-left: 0;
	}

	.before-after-btn,
	.header-address {
		font-size: 16px;
	}

	.offcanvas-left {
		width: 60px;
		top: 30px;
		right: 15px;
	}

	/* Main Footer Section ----------- */
	.min-footer-sec {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.footer-logo {
		margin-bottom: 40px;
	}

	.best-version-left {
		padding: 40px 15px;
	}

	.best-version-left h2 {
		margin-bottom: 40px;
	}

	/* Home Banner Section  */
	.banner-sec {
		padding-top: 100px;
	}

	.banner-content h1 {
		line-height: 1.3;
		margin-bottom: 15px;
	}

	.banner-content h2 {
		font-size: 90px;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.banner-content p {
		font-size: 22px;
	}

	.youtube-year {
		margin: 35px 0;
	}

	.banner-menu {
		margin-top: 40px;
	}

	.banner-menu li a {
		padding: 30px 15px;
		letter-spacing: 2px;
	}

	.home-banner-social {
		right: 20px;
	}

	.single-enhance-lip .title sup {
		position: unset;
	}

	.facial-plastic-tab-nav li {
		letter-spacing: 2px;
	}

	/* City Facial Plastics Tab Section */
	.facial-plastic-tab-sec {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.facial-plastic-tab-nav {
		margin-top: 40px;
	}

	.facial-plastic-tab-right {
		padding: 40px;
	}

	.lip-enhancement-sec::after {
		top: -20px;
		background-size: contain;
	}

	.hair-transplant-tab-bg {
		padding: 80px 0;
	}

	.hair-transplant-tab-sec::after {
		top: 0;
		background-size: contain;
	}

	.hair-transplant-tab-wrp {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 40px;
	}

	.philosophy-sec {
		padding: 80px 0;
	}

	/* Inner Banner Section -------------------- */
	.inner-banner-sec .home-banner-social {
		display: none;
	}

	.inner-banner-left {
		padding: 40px 40px 40px 0;
	}

	.inner-banner-right {
		min-height: 570px;
	}

	.inner-banner-left .title {
		font-size: 45px;
	}

	.about-dr-garry-sec::after {
		display: none;
	}

	.about-garry-left {
		max-width: 50%;
	}

	.about-garry-right {
		max-width: 45%;
		margin-bottom: 0;
	}

	.about-doctor-content .left {
		padding: 40px 20px;
	}

	.about-doctor-content .left h2 {
		font-size: 52px;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.about-doctor-content .left p:not(:last-child) {
		margin-bottom: 15px;
	}

	.patient-review-sec {
		background-size: contain;
	}

	.patient-doc {
		padding: 40px;
	}

	.patient-doc p {
		font-size: 25px;
	}

	.patient-doc p:not(:last-child) {
		margin-bottom: 25px;
	}

	.background-head {
		margin-bottom: 100px;
	}

	.background-training .faq-left {
		top: 115px;
	}

	.about-christina-left {
		padding: 40px 20px;
	}

	.about-christina-left h2 {
		margin-bottom: 30px;
	}

	.christina-before-after-wrp {
		max-width: 100%;
		margin-left: 15px;
		margin-right: 15px;
	}

	.office-carousel .item,
	.christina-before-after .item {
		margin: 0 8px;
	}

	.office-arrow,
	.christina-arrow {
		margin-top: 40px;
	}

	.christina-before-after .item {
		max-width: 600px;
		height: 400px;
	}

	.christina-before-after .item img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.treatment-carousel {
		max-width: 100%;
		margin-left: 15px;
		margin-right: 15px;
	}

	.treatment-carousel .gallery-item {
		margin: 0 8px;
		max-width: 600px;
	}

	.office-carousel .item {
		max-width: 700px;
		height: 450px;
	}

	.office-carousel .item img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.nyc-plastic-before-after {
		padding: 40px;
	}

	.nyc-plastic-before-after .right p:not(:last-child) {
		margin-bottom: 20px;
	}

	.nyc-plastic-before-after-sec {
		margin-bottom: 80px;
	}

	.view-result-right {
		padding: 40px 20px;
	}

	.visit-gallery.content,
	.visit-gallery {
		padding: 80px;
	}

	.common-about {
		gap: 20px 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.common-about .right p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 12px;
	}

	.common-about .right {
		max-width: 1000px;
	}

	.page-update {
		margin-top: 30px;
		font-size: 18px;
	}

	.media-tab-nav {
		margin-bottom: 50px;
		gap: 20px;
		top: 81px;
	}

	.flc-media .single-tab>div {
		gap: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.flc-media .entry-summary {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		max-width: calc(33% - 15px);
		height: 480px;
		padding: 40px 20px;
		gap: 20px;
	}

	.flc-media .entry-summary::after {
		height: 270px;
	}

	.single-lip-after-before {
		margin: 0 8px;
	}

	.single-lip-after-before h3 {
		margin-top: 30px;
	}

	.what-anatomy-sec {
		padding: 80px 0;
	}

	.what-anatomy-right ul li {
		max-width: 265px;
		min-height: 250px;
		padding: 20px;
	}

	.upper-lip-faq .faq-left {
		top: 97px
	}

	.upper-lip-faq .faq-left h2 {
		margin-bottom: 20px;
	}

	.upper-lip-faq .faq-left ul li {
		margin-bottom: 10px;
	}

	.upper-lip-faq .faq-accordion:not(:last-child) {
		margin-bottom: 12px;
	}

	.schedule-button {
		padding: 80px 15px;
		background-position: center right 200px;
		background-size: contain;
		background-color: #202020;
	}

	.youtube-lip-gallery {
		gap: 20px;
	}

	.youtube-lip-gallery .left p {
		padding: 50px;
	}

	.why-choose-box .left {
		max-width: 40%;
	}

	.your-consultation-sec {
		padding-top: 80px;
	}

	.best-ear-plastic-sec {
		padding: 80px 50px;
	}

	.surgery-done-bg {
		margin-top: 50px;
	}

	.surgery-done-bg .cont {
		padding: 300px 20px 50px 20px;
	}

	.best-facelift-wrp h2 {
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
	}

	.best-facelift-sec {
		padding: 80px 0;
	}

	.eyelid-box {
		padding: 50px;
	}

	.why-get-facelift-right p:not(:last-child),
	.why-get-facelift-right h2:not(:last-child) {
		margin-bottom: 25px;
	}

	.heading {
		font-size: 52px;
	}

	.why-get-facelift-right {
		max-width: 50%;
	}

	.what-alternative-sec::after {
		top: 0;
		background-size: contain;
	}

	.patient-satisfied-sec::after {
		top: 0;
		width: 100%;
		height: 100%;
		background-size: contain;
	}

	.key-differentiators-sec::after {
		bottom: 0;
		height: 100%;
		background-size: contain;
		background-size: contain;
	}

	.background-training-sec::after,
	.surgery-office-sec::after {
		height: 100%;
		top: 0;
		background-size: contain;
	}

	.male-facelift .contraindication-right {
		max-width: 50%;
	}

	.candidate-right {
		padding: 40px 20px;
		max-width: 60%;
	}

	.methods-con {
		padding: 50px 15px;
	}

	.natural-appearance-sec {
		padding: 80px 0;
	}

	.natural-appearance ul li {
		padding: 40px;
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
	}

	.single-surgical-all {
		height: 500px;
		max-width: 400px;
	}

	.single-surgical-all.slick-current {
		height: 600px;
		max-width: 600px;
	}

	/* Min Inner Page ------------------- */
	.main-inner h2 {
		font-size: 36px;
		margin-bottom: 80px;
	}

	.main-inner h3 {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.main-inner h4 {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.main-inner h5 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.main-inner p:not(:last-child),
	.main-inner ul:not(:last-child),
	.main-inner ol:not(:last-child),
	.main-inner img:not(:last-child),
	.main-inner iframe:not(:last-child) {
		margin-bottom: 20px;
	}

	.sidebar-right,
	.sidebar-gallery {
		top: 140px;
	}

	.side-main-menu {
		padding: 50px 0 50px 50px;
		max-width: 480px;
	}

	.main-inner .gallery .inner-wrp {
		max-width: 100% !important;
		padding-right: 15px;
		padding-left: 15px;
	}

	.main-inner .gallery .gallery-item {
		margin: 0 8px;
		max-width: 600px;
	}

	.before-after-btn .inner-wrp {
		padding: 100px 0 100px 315px;
	}

	.fullWidthIn.schadule .inner-wrp {
		padding-left: 150px;
	}

	blockquote {
		padding: 80px;
	}
	.before-after-btn .inner-wrp, .fullWidthIn.schadule .inner-wrp {
		padding: 60px 0 60px 600px;
		background-size: contain;
	}
	.fullWidthIn.schadule .inner-wrp {
		padding: 0px 0px 0px 600px;
		background-size: contain;
	}
}

/*1440 End */
@media all and (max-width:1366px) {
	section.inner-banner-sec .container {
		padding-right: 0px;
	}
	section.office-carousel-sec .container {
		max-width: 700px;
	}
	.inner-banner-right img {
		display: block;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		height: 100%;
	}
	.inner-banner-right picture {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
}
@media all and (max-width:1200px) {
	.sec-m {
		margin-top: 50px;
		margin-bottom: 50px;
	}

	.sec-p {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.heading {
		font-size: 46px;
		line-height: 1.2;
	}

	.heading span {
		font-size: 26px;
		line-height: 1.4;
		margin: 0;
	}

	/* Min Header Top  */
	.header-consultation, .header-wrp .before-after-btn {
		font-size: 16px;
		line-height: 1.5;
		padding: 10px;
	}

	/* Main Menu  -------- */
	.side-menu-right {
		max-width: 185px;
		margin-right: 30px;
		padding: 30px 16px;
	}

	/* Min Footer Section  */
	.footer-wrp {
		margin-bottom: 40px;
		gap: 40px 20px;
	}

	.single-footer .title {
		font-size: 25px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	/* City Facial Plastics Tab Section  */
	.facial-plastic-tab-sec {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.facial-plastic-tab-right h3 {
		margin-bottom: 20px;
	}

	.facial-plastic-tab-right p {
		margin-top: 20px;
		font-size: 18px;
	}

	.facial-plastic-tab-right .board-certified {
		font-size: 32px;
		padding-top: 15px;
		margin-top: 15px;
	}

	.facial-plastic-tab-left {
		max-width: 40%;
	}

	.facial-plastic-tab-left img {
		-o-object-fit: cover;
		object-fit: cover;
		height: 100%;
	}

	.facial-plastic-tab-left .wrp button {
		min-width: 80px;
		width: 80px;
		background-position: top -151px left -53px;
	}

	.facial-plastic-tab-left .wrp p {
		font-size: 20px;
	}

	.all-surgical-head h2 {
		margin-bottom: 25px;
	}

	.all-surgical-carousel {
		margin-top: 50px;
	}

	.lip-enhance-lip-wrp {
		gap: 20px;
		margin-top: 50px;
	}

	.single-enhance-lip {
		padding: 40px 15px;
		min-height: 450px;
	}

	.single-enhance-lip .title {
		font-size: 34px;
	}

	.single-surgical-all .con {
		bottom: 30px;
		padding: 0 20px;
	}

	.single-surgical-all .title {
		font-size: 30px;
	}

	.hair-transplant-head h2 {
		margin-bottom: 25px;
	}

	.hair-transplant-head {
		margin-bottom: 100px;
		margin-top: 100px;
	}

	.hair-transplant-tab-bg {
		padding: 50px 0;
	}

	.hair-transplant-tab-nav li:not(:last-child) {
		padding-bottom: 20px;
	}

	.hair-transplant-tab-wrp {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.single-hair-transplant h2 {
		font-size: 44px;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.single-hair-transplant p {
		margin-bottom: 40px;
		font-size: 20px;
	}

	.philosophy-sec {
		padding: 50px 0;
	}

	.philosophy-con h2 {
		margin-bottom: 25px;
	}

	.philosophy-con p {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 30px;
		width: 100%;
		max-width: 600px;
	}
	.philosophy-sec::after {
		opacity: .5;
	}
	.surgery-office-left h2 {
		margin-bottom: 25px;
	}

	.surgery-office-left p:not(:last-child) {
		margin-bottom: 20px;
	}

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

	.single-key-differentiator {
		gap: 25px;
	}

	.single-key-differentiator .left {
		max-width: 400px;
	}

	.single-key-differentiator .right h2 {
		margin-bottom: 25px;
	}

	.single-key-differentiator .right h3 {
		font-size: 26px;
		line-height: 1.3;
		margin-bottom: 20px;
	}

	.single-key-differentiator .right p {
		font-size: 24px;
	}

	.key-differentiators-wrp .custom-nav {
		left: 426px;
	}

	.video-testimonial {
		margin-top: 50px;
		margin-bottom: 30px;
	}

	.single-video-testimonial {
		min-height: 300px;
		margin: 0 8px;
	}

	/* Inner Banner Section  */
	.inner-banner-right {
		min-height: 400px;
	}

	.inner-banner-left .title {
		font-size: 36px;
		line-height: 1.2;
	}

	.about-garry-right .title {
		font-size: 45px;
		margin-bottom: 20px;
	}

	.about-garry-right h2 {
		margin-bottom: 20px;
	}

	.about-doctor-content .left {
		max-width: 52%;
	}

	.four-logo {
		height: 225px;
		background-position: center;
	}

	.patient-arrow {
		margin-top: 40px;
	}

	.background-head h2 {
		margin-bottom: 20px;
	}

	.background-head {
		margin-bottom: 50px;
	}

	.background-training .faq-left ul li {
		margin-bottom: 10px;
	}

	.background-training .faq-right .title {
		margin-bottom: 15px;
	}

	.background-training .faq-right .faq-accordion {
		margin-bottom: 20px;
	}

	.about-christina-right::after {
		background: -webkit-gradient(linear, left top, left bottom, from(rgba(158, 108, 90, 0)), color-stop(50%, #9e6c5a));
		background: -o-linear-gradient(top, rgba(158, 108, 90, 0) 0%, #9e6c5a 50%);
		background: linear-gradient(-180deg, rgba(158, 108, 90, 0) 0%, #9e6c5a 50%);
	}

	.about-christina-left h2 {
		margin-bottom: 20px;
	}

	.about-christina {
		margin: 40px 0;
	}

	.treatment-tab-nav {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		overflow: auto;
		padding-bottom: 5px;
	}

	.treatment-tab-nav li {
		-webkit-box-flex: unset;
		-ms-flex: unset;
		flex: unset;
		min-width: -webkit-max-content;
		min-width: -moz-max-content;
		min-width: max-content;
	}

	.treatment-tab-nav li a {
		font-size: 15px;
		line-height: 1.5;
		padding-bottom: 10px;
		min-width: -webkit-max-content;
		min-width: -moz-max-content;
		min-width: max-content;
		display: block;
	}

	.ba-btn-holder .title {
		font-size: 36px;
	}

	a.more-link {
		font-size: 18px;
		padding: 15px 10px;
	}

	.ba-btn-holder {
		margin-bottom: 40px;
	}

	.treatment-carousel .gallery-item {
		margin: 0 8px;
		max-width: 400px;
		height: 400px;
	}

	.treatment-carousel .gallery-item img {
		max-width: 100%;
		max-height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.nyc-plastic-before-after-sec {
		margin-bottom: 50px;
	}

	.view-result-right h2 span {
		font-size: 17px;
		padding-bottom: 12px;
		margin-bottom: 15px;
	}

	.view-result-right h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.patient-review-sec.before-after {
		padding-bottom: 0;
	}

	.visit-gallery.content,
	.visit-gallery {
		padding: 40px;
	}

	.media-tab-nav li {
		font-size: 16px;
		padding-bottom: 8px;
	}

	.flc-media .entry-summary .updated {
		font-size: 16px;
	}

	.flc-media .entry-summary .entry-title,
	.flc-media .entry-summary .entry-title a {
		font-size: 16px;
		line-height: 1.5;
	}

	.flc-media .entry-summary .small a,
	.flc-media .entry-summary .small {
		font-size: 15px;
	}

	.what-upper-lip {
		margin-top: 50px;
	}

	.what-upper-lip .left {
		height: 350px;
	}

	.what-upper-lip .right h2 {
		margin-bottom: 20px;
	}

	.what-lip-list {
		gap: 10px;
	}

	.what-lip-list li:first-child {
		margin-right: 0;
		padding-right: 0;
		border-right: 0;
	}

	.what-lip-list li a {
		font-size: 14px;
	}

	.who-is-the {
		margin-top: 50px;
		gap: 40px;
	}

	.ba-btn-holder {
		margin-bottom: 40px;
	}

	.single-lip-after-before h3 {
		margin-top: 20px;
		margin-bottom: 15px;
		font-size: 25px;
	}

	.single-lip-after-before p {
		font-size: 16px;
		line-height: 1.5;
	}

	.single-lip-after-before img {
		height: 300px;
	}

	.what-anatomy-sec {
		padding: 50px 0;
	}

	.what-anatomy-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.what-anatomy-left {
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
	}

	.what-anatomy-right {
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
	}

	.what-anatomy-left h2 {
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	.what-anatomy-left p {
		margin-bottom: 15px;
	}

	.what-anatomy-left .youtube-box {
		margin-top: 25px;
	}

	.upper-lip-faq .faq-left {
		max-width: 450px;
	}

	.single-yoututbe-gallery {
		min-height: 300px;
	}

	.single-yoututbe-gallery button {
		margin-left: 50px;
	}

	.single-yoututbe-gallery span {
		font-size: 16px;
		text-align: left;
	}

	.youtube-lip-gallery .left p {
		font-size: 20px;
		line-height: 1.5;
	}

	.contact-form {
		margin-top: 50px;
	}

	.contact-form form {
		gap: 30px 20px;
	}

	.contact-form .single-input select,
	.contact-form .single-input input {
		font-size: 16px;
		padding: 0 15px 10px 0;
		min-height: 45px;
	}

	.contact-form label {
		gap: 12px;
	}

	.first-con h2 {
		margin-bottom: 20px;
	}

	.office-arrow.eye {
		margin-bottom: 40px;
		margin-top: 40px;
	}

	.double-board-wrp {
		margin-top: 50px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.double-board-left p,
	.double-board-left h2 {
		margin-bottom: 30px;
	}

	.dobule-board-sec {
		margin-bottom: 80px;
	}

	.why-choose-box {
		padding: 40px 20px;
		gap: 20px 40px;
	}

	.single-more-patient {
		min-height: 260px;
		margin: 0 8px;
	}

	.single-more-patient button {
		width: 70px;
		height: 75px;
		background-position: top -155px left -208px;
	}

	.more-patient-caro {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.your-consultation-sec {
		padding-top: 50px;
	}

	.your-consultation-sec h2 {
		margin-bottom: 40px;
	}

	.your-consultation-sec ul {
		margin-bottom: 50px;
	}

	.your-consultation {
		padding: 50px 100px;
	}

	.your-consultation h3 {
		margin-bottom: 30px;
	}

	.best-ear-plastic-sec {
		padding: 50px 0;
		margin-top: 50px;
	}

	.who-good-sec .head h2 {
		margin-bottom: 30px;
	}

	.who-good-sec .head {
		margin-bottom: 50px;
	}

	.who-good-sec ul {
		gap: 15px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.who-good-sec ul li {
		padding: 20px;
	}

	.surgery-done-sec .right p:not(:last-child) {
		margin-bottom: 20px;
	}

	.surgery-done-sec .right {
		max-width: 55%;
	}

	.surgery-done-bg {
		gap: 20px;
	}

	.surgery-done-bg .cont ul {
		margin-left: 22px;
	}

	.surgery-done-bg .cont h3 {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.surgery-done-bg .cont {
		padding: 200px 20px 40px 20px;
	}

	.patient-satisfied h2 {
		margin-bottom: 20px;
	}

	.patient-satisfied button {
		margin: 40px auto;
	}

	.best-facelift-wrp p {
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
	}

	.best-facelift-sec {
		padding: 50px 0;
	}

	.eyelid-box h2 {
		padding-bottom: 20px;
		margin-bottom: 40px;
	}

	.bg-accordion-sec .head h2 {
		margin-bottom: 20px;
	}

	.jetlyft-procedure {
		margin-top: 50px;
	}

	.jetlyft-procedure>div {
		padding: 40px 20px;
	}

	.jetlyft-procedure h3 {
		font-size: 34px;
		margin-bottom: 20px;
	}

	.content-head h2:not(:last-child),
	.content-head p:not(:last-child),
	.content-head h2:not(:last-child),
	.content-head p:not(:last-child) {
		margin-bottom: 20px;
	}

	.contraindication {
		gap: 50px;
	}

	.what-alternative,
	.revision-facelift {
		margin-top: 50px;
	}

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

	.facelift-faq-right .bg-accordion {
		margin-bottom: 40px;
	}

	.face-neck h2 {
		margin-bottom: 40px;
	}

	.fut-hair {
		margin-top: 20px;
	}

	.hair-transplant-wrp {
		margin-top: 40px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.hair-transplant-right ul:not(:last-child),
	.hair-transplant-right p:not(:last-child) {
		margin-bottom: 20px;
	}

	.hair-transplant-right h2 {
		margin-bottom: 20px;
	}

	.candidate-right h2 {
		margin-bottom: 20px;
	}

	.good-candidate-left {
		max-width: 35%;
	}

	.good-candidate-right {
		max-width: 64%;
	}

	.good-candidate-right p {
		margin-bottom: 20px;
	}

	.ways-harvest-wrp {
		gap: 40px;
	}

	.ways-harvest-right h2 {
		margin-bottom: 20px;
	}

	.ways-harvest-right .bg-accordion {
		margin-bottom: 15px;
	}

	.methods-con h2 {
		margin-bottom: 20px;
	}

	.methods-con .bg-accordion {
		margin-top: 20px;
	}

	.hair-grafts-left {
		max-width: 40%;
	}

	.hair-grafts-right {
		max-width: 60%;
	}

	.natural-appearance-sec {
		padding: 50px 0;
	}

	.natural-appearance h2 {
		margin-bottom: 20px;
	}

	.natural-appearance ul {
		margin-top: 50px;
		gap: 15px;
	}

	.all-surgical-carousel .slick-track {
		gap: 15px;
	}

	.single-surgical-all,
	.single-surgical-all.slick-current {
		height: 450px;
		max-width: 100%;
	}

	/* Min Inner Page ------------------- */
	.side-bar-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 15px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.sidebar-right,
	.sidebar-gallery {
		position: unset;
	}

	.side-bar-wrap>div {
		-webkit-box-flex: 300px;
		-ms-flex: 300px;
		flex: 300px;
	}

	.sidebar-gallery {
		width: 100%;
		min-height: unset;
		padding: 20px;
		border-radius: 10px;
	}

	.sidebar-gallery .title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.single-bar-right {
		border-radius: 10px;
	}

	.single-bar-right a,
	.single-bar-right button {
		padding: 20px;
		line-height: 1.5;
	}

	.single-bar-right a::before,
	.single-bar-right button::before {
		display: none;
	}

	.single-hair-transplant .default-btn {
		margin-top: 0;
	}

	.key-differentiators-sec::after {
		background-position: center;
	}

	.common-abou-dr-sec::after {
		height: calc(100% + 100px);
		top: -50px;
	}

	.side-main-menu-are {
		background: #111111;
	}

	.main-inner .gallery .gallery-item {
		max-width: 400px;
	}

	.main-inner .gallery .gallery-item img {
		max-width: 100%;
		width: 100%;
		height: 400px;
	}

	.schadule,
	.main-inner .gallery {
		padding: 50px 0;
		margin: 50px 0;
	}

	.schadule .inner-wrp {
		max-width: 100% !important;
		padding-left: 50px;
	}

	.sch_a span {
		font-size: 60px;
	}
	.main-inner .gallery .inner-wrp {
		padding-bottom: 130px;
	}
	.blog-page-area {
		margin: 50px 0;
	}

	.blog-post-wraper {
		gap: 20px;
		margin-bottom: 35px;
	}

	.blog-post-thumb {
		height: 220px;
		margin-bottom: 20px;
	}

	.post-info {
		padding: 0 15px;
	}

	.blog-post-info {
		padding: 15px;
	}

	blockquote {
		padding: 40px;
	}

	.facial-plastic-tab-right ul {
		margin-top: 20px;
	}

	.facial-plastic-tab-right ul h2 {
		margin-top: 15px;
	}

}

/*1200 End*/
@media all and (max-width:1199px) {

	/* Min Header Top  */
	.header-address {
		display: none;
	}

	/* Min Footer Section  */
	.single-footer .bg-btn {
		width: 100%;
		height: 120px;
	}

	.single-footer {
		-webkit-box-flex: 150px;
		-ms-flex: 150px;
		flex: 150px;
	}

	.single-footer .bg-btn:not(:last-child) {
		margin-bottom: 15px;
	}

	.single-footer .social li a {
		width: 50px;
		height: 40px;
	}

	.single-footer .social li.youtube a {
		background-position: top -76px left -215px;
	}

	.single-footer .social li.instagram a {
		background-position: top -78px left -291px;
	}

	.single-footer .social li.tiktok a {
		background-position: top -78px left -364px;
	}

	.facial-plastic-tab-sec .tab-area {
		margin-bottom: 40px;
	}

	.logo-heading {
		font-size: 36px;
	}

	.instagram-btn {
		font-size: 35px;
		padding: 20px 110px 20px 12px;
	}

	.instagram-btn::after {
		right: 0;
		-webkit-transform: scale(.6);
		-ms-transform: scale(.6);
		transform: scale(.6);
	}

	.ba-btn-holder {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.view-result-right p {
		font-size: 16px;
		line-height: 1.5;
		margin-top: 15px;
	}

	.what-anatomy-right ul li {
		max-width: 220px;
		min-height: 140px;
		padding: 20px;
		font-size: 16px;
		line-height: 1.5;
	}

	.who-good-sec .head h2 {
		margin-bottom: 20px;
	}

}

/*1199 End*/
@media all and (max-width:1024px) {
	.single-footer .bg-btn {
		width: 100%;
		height: 94px;
	}
	.main-inner .gallery-item figcaption {
		max-width: 360px;
	}
	.about-christina-right::after {
		height: 60%;
	}
	.side-main-menu-are.active:before{
		display: none;
	}
	.before-after-btn .inner-wrp, .fullWidthIn.schadule .inner-wrp {
		padding: 80px 0 80px 480px;
		background-size: contain;
	}
	.before-after-btn .inner-wrp a::after{
		display: none;
	}
	.before-after-btn .inner-wrp a{
		padding-right: 0px;
	}
	.heading {
		font-size: 36px;
	}
	/* Min Header Top  */
	.header-menu-btn {
		padding: 5px 16px 5px 0;
	}
	.header-menu-btn::before {
		width: 8px;
	}
	.header-logo img {
		height: 45px;
		width: auto;
	}

	.header-phone,
	.before-after-btn {
		font-size: 15px;
		font-weight: 500;
	}

	/* Main Menu -------------- */
	.side-menu-right {
		display: none;
	}

	.side-menu {
		padding: 100px 30px 20px 50px;
	}

	.side-main-menu {
		padding: 0;
		max-width: 500px;
		background: transparent;
	}

	.side-main-menu {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		overflow: auto;
	}

	.side-main-menu ul li ul {
		display: none;
		position: unset;
		opacity: 1;
		visibility: visible;
		-webkit-transition: unset;
		-o-transition: unset;
		transition: unset;
		padding-left: 0;
		margin: 20px;
	}

	.side-main-menu ul li a {
		color: #FFF;
	}

	.side-main-menu ul li ul a {
		font-size: 16px;
		color: #FFFF;
	}

	.side-main-menu ul li {
		padding: 5px;
	}

	.side-main-menu ul li::before,
	.side-main-menu ul li.menu-item-has-children::after {
		display: none;
	}

	span.dropdown-menu-items {
		position: absolute;
		right: 0;
		top: 18px;
		width: 0;
		height: 0;
		border: 9px solid transparent;
		border-top-color: #FFF;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}

	span.dropdown-menu-items.rotate {
		border-bottom-color: #FFF;
		border-top-color: transparent;
		top: 8px;
	}

	/* Home Banner Section  */
	.banner-sec {
		position: relative;
		z-index: 3;
		padding-top: 50px;
		background-position: right center;
	}

	.home-banner-social {
		display: none;
	}

	.banner-sec::after {
		top: 0;
		height: calc(100% + 80px);
		background-position: top -80px right -100px;
	}

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

	.banner-content h2 {
		font-size: 62px;
	}

	.banner-content p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 8px;
	}

	.banner-menu {
		margin-top: 35px;
	}

	.banner-menu {
		margin-top: 35px;
	}

	/* City Facial Plastics Tab Section  */
	.facial-plastic-tab-right {
		padding: 40px 20px;
	}

	.custom-nav {
		gap: 20px;
		padding: 0;
	}

	.custom-nav::after {
		display: none;
	}

	.custom-nav li {
		width: 45px;
		height: 45px;
	}

	.custom-nav li.prev {
		background-position: top 15px left -342px;
	}

	.custom-nav li.next {
		background-position: top 15px left -424px;
	}

	.all-surgical-nav {
		margin-top: 30px;
	}

	.single-surgical-all .title {
		font-size: 22px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.single-enhance-lip {
		min-height: 350px;
	}

	.single-enhance-lip .title {
		font-size: 22px;
	}

	.hair-transplant-tab-nav {
		min-width: 220px;
	}

	.hair-transplant-tab-nav li {
		font-size: 16px;
	}

	/* Inner Banner Section  */
	.inner-banner-left .title {
		font-size: 30px;
		line-height: 1.2;
	}

	.about-garry-right .title {
		font-size: 32px;
	}

	.about-garry-right .social-btn {
		font-size: 20px;
		padding: 8px 12px;
		gap: 12px;
		margin: 16px 0;
	}

	.about-garry-right p {
		font-size: 16px;
		line-height: 1.5;
	}

	.about-garry-wrp {
		padding: 0 15px;
		gap: 40px 0;
	}

	.about-garry-right .star-wrp {
		gap: 8px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.about-doctor-content .left p {
		font-size: 16px;
		line-height: 1.5;
	}

	.about-doctor-content .right button {
		width: 100px;
		height: 100px;
		background-position: top -465px left -46px;
	}

	.single-patient-review .star {
		margin-bottom: 25px;
	}

	.single-patient-review p {
		margin-bottom: 20px;
	}

	.single-patient-review .name {
		margin-top: 20px;
	}

	.patient-review-wrp .left h2 {
		font-size: 36px;
	}

	.patient-review {
		max-width: 60%;
		width: 100%;
	}

	.patient-doc {
		margin-top: 40px;
		background: #9E6C5A;
	}

	.background-training .faq-left {
		top: 85px;
	}

	.mp-0.sec-p {
		padding: 0;
	}

	.about-christina-left p {
		font-size: 16px;
		line-height: 1.5;
	}

	.about-christina-right span {
		font-size: 14px;
		bottom: 20px;
	}

	.christina-before-after .item {
		max-width: 450px;
		height: 400px;
	}

	.treatment-tab-nav {
		-webkit-box-pack: unset;
		-ms-flex-pack: unset;
		justify-content: unset;
	}

	.ba-btn-holder .title {
		font-size: 32px;
	}

	a.more-link {
		font-size: 14px;
		padding: 12px 10px;
	}

	.nyc-plastic-before-after {
		margin-top: 40px;
		background: #9e6c5a;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}

	.nyc-plastic-before-after .right,
	.nyc-plastic-before-after .left {
		max-width: 100%;
	}

	.nyc-plastic-before-after .right ul {
		margin-bottom: 20px;
		margin-left: 20px;
	}

	.visit-gallery a {
		font-size: 24px;
		padding-right: 55px;
	}

	.visit-gallery a span {
		font-size: 36px;
	}

	.visit-gallery a::after {
		width: 39px;
		background-position: top 0px left -747px;
	}

	.common-about .right p {
		font-size: 16px;
	}

	.page-update {
		font-size: 16px;
		padding: 10px;
	}

	.media-tab-nav {
		top: 65px;
	}

	.flc-media .entry-summary {
		height: 380px;
		padding: 25px 15px;
		gap: 15px;
	}

	.visit-gallery.content p {
		font-size: 20px;
	}

	.who-is-the {
		gap: 40px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.who-is-the .right {
		max-width: 50%;
	}

	.who-is-the .right p:not(:last-child) {
		margin-bottom: 15px;
	}

	.what-anatomy-left .youtube-box {
		background-repeat: no-repeat;
		border-radius: 5px;
		background-size: cover;
		padding: 20px 15px;
	}

	.upper-lip-faq .faq-left {
		max-width: 350px;
	}

	.upper-lip-faq .faq-left h2 {
		font-size: 24px;
	}

	.upper-lip-faq .faq-left h2 span {
		font-size: 36px;
	}

	.upper-lip-faq .faq-left ul li a {
		font-size: 16px;
	}

	.upper-lip-faq .faq-accordion {
		padding: 10px;
	}

	.upper-lip-faq .faq-accordion .title {
		font-size: 18px;
		line-height: 1.5;
		gap: 10px;
	}

	.upper-lip-faq .faq-accordion .body p {
		font-size: 16px;
		line-height: 1.5;
	}

	.schedule-button {
		padding: 40px;
		background: #202020;
	}

	.schedule-button a {
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
		margin-left: 0;
		margin-right: auto;
		font-size: 28px;
		padding-right: 50px;
	}

	.schedule-button a span {
		font-size: 34px;
	}

	.schedule-button a::after {
		width: 30px;
		background-position: top 0 left -757px;
	}

	.nyc-plastic-before-after .left h2 {
		padding-bottom: 20px;
	}

	.double-board-right button {
		width: 100px;
		height: 100px;
		background-position: top -464px left -43px;
	}

	.dobule-board-sec {
		margin-bottom: 50px;
	}

	.all-logo img {
		min-width: 1000px;
		padding-bottom: 5px;
	}

	.your-consultation-sec ul li a {
		font-size: 16px;
		padding: 10px;
	}

	.your-consultation-sec h2 {
		margin-bottom: 30px;
	}

	.your-consultation h3 {
		margin-bottom: 20px;
	}

	.your-consultation {
		padding: 40px 20px;
	}

	.first-con p:not(:last-child),
	.first-con h3 {
		margin-bottom: 20px;
	}

	.best-ear-plastic {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.best-ear-plastic-right,
	.best-ear-plastic-left {
		max-width: 100%;
		width: 100%;
	}

	.best-ear-plastic-right p:not(:last-child) {
		margin-bottom: 20px;
	}

	.ear-surgery-caro-sec .lip-beaf-arrow {
		margin-right: 0;
		margin-left: 0;
	}

	.default-btn {
		font-size: 18px;
		padding: 12px;
	}

	.who-good-sec ul li {
		-webkit-box-flex: 200px;
		-ms-flex: 200px;
		flex: 200px;
	}

	.surgery-done-cont {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.surgery-done-sec .right {
		max-width: 100%;
	}

	.surgery-done-sec .right ul {
		margin-bottom: 20px;
	}

	.surgery-done-bg {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.surgery-done-bg .cont {
		padding: 250px 15px 40px 15px;
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
		width: 100%;
		max-width: 100%;
	}

	.facelift-right iframe {
		height: 300px;
	}

	.facelift-left h2 {
		margin-bottom: 20px;
	}

	.facelift-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.facelift-right,
	.facelift-left {
		max-width: 100%;
		-webkit-box-flex: 300px;
		-ms-flex: 300px;
		flex: 300px;
	}

	.eyelid-box {
		padding: 40px 20px;
		margin-top: 40px;
		background: #9E6C5A;
	}

	.why-get-facelift {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.why-get-facelift-right,
	.why-get-facelift-left {
		max-width: 100%;
		-webkit-box-flex: 300px;
		-ms-flex: 300px;
		flex: 300px;
	}

	.contraindication {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.contraindication::after {
		display: none;
	}

	.contraindication>div {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 800px;
		margin-inline: auto;
	}

	.male-facelift .contraindication-right p:not(:last-child),
	.contraindication-right ul:not(:last-child),
	.contraindication p:not(:last-child) {
		margin-bottom: 20px;
	}

	.male-facelift {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}

	.male-facelift .contraindication-right {
		max-width: 100%;
	}

	.fut-hair h2 {
		margin-bottom: 30px;
	}

	.fut-hair iframe {
		height: 350px;
		margin-bottom: 25px;
	}

	.good-candidate {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.good-candidate-left,
	.good-candidate-right {
		max-width: 100%;
	}

	.methods-con {
		padding: 40px 15px;
		margin-top: 50px;
		background: #9E6C5A;
	}

	.hair-grafts-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}

	.hair-grafts-left,
	.hair-grafts-right {
		max-width: 100%;
	}

	.hair-grafts-right ul:not(:last-child),
	.hair-grafts-right p:not(:last-child) {
		margin-bottom: 20px;
	}

	.natural-appearance ul li {
		padding: 20px;
		-webkit-box-flex: 250px;
		-ms-flex: 250px;
		flex: 250px;
	}

	.treatment-tab-nav li a,
	.media-tab-nav li {
		letter-spacing: 1px;
	}
	.fullWidthIn.schadule .inner-wrp .sch_a {
		font-size: 30px;
		padding-right: 0;
		margin-bottom: 10px;
	}

	.fullWidthIn.schadule .inner-wrp ul li a {
		font-size: 26px;
		line-height: normal;
	}

	.blog-post-thumb {
		height: 180px;
	}

	.single-blog-post .post-title {
		font-size: 18px;
		min-height: unset;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.blog-post-exerp p {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.blog-post-exerp a {
		margin-top: 12px;
	}

	blockquote p {
		font-size: 20px;
	}
	.fullWidthIn.schadule {
		padding: 0px;
	}
}

/*1024 End */
@media all and (max-width:768px) {
	.single-footer.footer.center {
		flex-direction: column;
	}
	.single-footer .bg-btn {
		width: 100%;
		height: 84px;
	}
	.main-inner .gallery-item figcaption {
		max-width: 320px;
	}
	.about-christina-right::after {
		height: 70%;
	}
	.header-consultation, .header-wrp .before-after-btn {
		font-size: 14px;
	}
	.before-after-btn .inner-wrp, .fullWidthIn.schadule .inner-wrp {
		padding: 20px 0 20px 330px;
		background-size: contain;
	}
	.fullWidthIn.schadule{
		background-size: contain;
	}
	.main-inner .gallery .gallery-item {
		max-width: 100%;
		height: auto;
	}
	.gallery-1-2-holder .gallery:nth-child(2) .gallery-item img {
		height: auto;
	}
	.common-about {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		/* text-align: center; */
	}
	.single-transplant-box {
		padding: 30px 10px;
		margin: 10px 0px;
	}

	.single-transplant-box>p {
		font-size: 18px;
		padding: 0px;
		margin: 20px 0px;
	}

	.gallery-1-2-holder {
		width: 100%;
		flex-direction: column;
	}

	.gallery-1-2-holder .gallery:nth-child(1),
	.gallery-1-2-holder .gallery:nth-child(2) {
		width: 100%;
	}

	.gallery-1-2-holder .gallery:first-child figure {
		max-width: 100%;
	}

	.main-inner .gallery-1-2-holder .gallery .gallery-item img {
		max-width: 100%;
		width: 100% !important;
	}

	.newsletter-consent__checkbox {
		width: 55px;
	}

	form.contact__form {
		margin-top: 30px;
	}

	.general-inputs {
		grid-template-columns: 1fr;
	}
	.contact-from-content {
		padding: 35px 20px;
	}

	.main-inner.blog figure.alignright,
	.main-inner.blog figure.alignleft {
		float: none;
		margin-left: 0px;
		margin-right: 0px;
	}

	ul.col-2-ul li {
		width: 100%;
	}

	.heading span {
		font-size: 18px;
	}

	.default-btn {
		font-size: 18px;
		padding: 12px 15px;
	}

	.heading {
		font-size: 32px;
	}

	/* Main Header Top  */
	.offcanvas-left {
		width: 40px;
		top: 15px;
		right: 15px;
	}

	.off-close-btn {
		height: 40px;
		width: 40px;
	}

	.single-footer .social {
		margin-top: 30px;
	}

	.off-close-btn::before {
		left: 5px;
		top: 18px;
	}

	.off-close-btn::after {
		left: 5px;
		top: 18px;
	}

	/* Home Banner Section  */
	.banner-menu {
		gap: 14px;
	}

	.banner-content h1 {
		letter-spacing: .5px;
		font-size: 20px;
	}

	.banner-menu li a {
		padding: 15px;
		font-size: 16px;
		letter-spacing: .5px;
	}

	.facial-plastic-tab-nav li {
		letter-spacing: .5px;
	}

	.single-enhance-lip .title sup {
		font-size: 18px;
	}

	.surgery-office-right span {
		bottom: 15px;
		font-size: 16px;
	}

	.surgery-office-right span::before {
		margin-bottom: 8px;
	}

	/* City Facial Plastics Tab Section  */
	.facial-plastic-tab-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.facial-plastic-tab-left {
		max-width: 100%;
	}

	.philosophy-con .signature {
		gap: 25px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.single-key-differentiator .right {
		margin-top: 0;
		margin-bottom: 0;
	}

	.key-differentiators-wrp .custom-nav {
		position: unset;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
		margin-top: 30px;
	}

	.single-video-testimonial {
		min-height: 210px;
	}

	.single-video-testimonial button {
		width: 60px;
		height: 60px;
		background-position: top -162px left -297px;
	}

	/* Inner Banner Section  */
	.about-doctor-content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.about-doctor-content .left {
		max-width: 100%;
	}

	.about-doctor-content .right {
		max-width: 100%;
		width: 100%;
	}

	.about-doctor-content .right img {
		width: 100%;
		max-height: 500px;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: top center;
		object-position: top center;
	}

	.four-logo {
		height: 100px;
	}

	.patient-doc p:not(:last-child) {
		margin-bottom: 15px;
	}

	.background-training .faq-left {
		position: unset;
		max-width: 100%;
		width: 100%;
	}

	.background-training .faq-left .award {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 13px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.background-training .faq-left ul {
		display: none;
	}

	.background-training .faq-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.background-training .faq-left .award img {
		margin-top: 0;
		width: 150px;
	}

	.background-training .faq-right .title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 12px;
	}

	.background-training .faq-right {
		max-width: 100%;
		width: 100%;
	}

	.background-training .faq-right .body p:not(:last-child) {
		margin-bottom: 15px;
	}

	.logo-heading::before {
		display: none;
	}

	.christina-before-after .item {
		max-width: 100%;
		height: 350px;
	}

	.office-carousel .item {
		height: 350px;
	}

	.treatment-carousel .gallery-item {
		max-width: 100%;
		height: auto;
	}

	.treatment-arrow {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.nyc-plastic-before-after {
		gap: 20px;
	}

	.nyc-plastic-before-after .left h2 {
		padding-bottom: 15px;
		;
	}

	.nyc-plastic-before-after .right p:not(:last-child) {
		margin-bottom: 15px;
	}

	.view-result-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.view-result-left {
		max-width: 100%;
	}

	.view-result-left img {
		max-height: 500px;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: top center;
		object-position: top center;
	}

	.flc-media .entry-summary {
		max-width: calc(50% - 10px);
	}

	.flc-media .entry-summary::after {
		height: 215px;
	}

	.media-tab-nav {
		padding-top: 10px;
	}

	.inner-banner-left p {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.what-anatomy-left,
	.what-anatomy-right {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		max-width: 100%;
		width: 100%;
	}

	.upper-lip-faq .faq-wrp {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.upper-lip-faq .faq-left {
		max-width: 100%;
		position: unset;
	}

	.upper-lip-faq .faq-left ul {
		display: none;
	}

	.youtube-lip-gallery .left p {
		padding: 20px;
	}

	.double-board-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.double-board-right,
	.double-board-left {
		max-width: 100%;
		-webkit-box-flex: 350px;
		-ms-flex: 350px;
		flex: 350px;
	}

	.double-board-left p,
	.double-board-left h2 {
		margin-bottom: 20px;
	}

	.why-choose-box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.why-choose-box .left h2 {
		padding-bottom: 20px;
	}

	.why-choose-box .right,
	.why-choose-box .left {
		max-width: 100%;
		width: 100%;
	}

	.why-choose-box .right ul li {
		margin-top: 8px;
	}

	.eyelid-box>div {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.eyelid-box>div p {
		max-width: 100%;
	}

	.eyelid-box>div iframe {
		max-width: 100%;
	}

	.bg-accordion .accordion-title {
		font-size: 20px;
		padding: 12px;
	}

	.bg-accordion .accordion-title::after {
		margin-top: 3px;
	}

	.bg-accordion .accordion-body {
		padding: 20px;
	}

	.what-complications-sec .single-accordion {
		max-width: 100%;
		-webkit-box-flex: 300px;
		-ms-flex: 300px;
		flex: 300px;
	}

	.facelifts-faq {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.facelift-faq-left h2 {
		margin-bottom: 20px;
	}

	.facelift-faq-left {
		max-width: 100%;
	}

	.hair-transplant-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.hair-transplant-left {
		max-width: 100%;
	}

	.candidate-for {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 20px;
	}

	.candidate-left {
		max-width: 100%;
	}

	.candidate-left iframe {
		aspect-ratio: 16/9;
		border-radius: 5px;
	}

	.candidate-right {
		border-radius: 5px;
		max-width: 100%;
	}

	.ways-harvest-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.ways-harvest-left iframe {
		height: 100%;
		aspect-ratio: 16/9;
	}

	.ways-harvest-sec.faq .ways-harvest-left {
		max-width: 100%;
	}

	/* Min Inner Page ------------------ */
	.main-inner h2 {
		font-size: 26px;
	}

	.main-inner h3 {
		font-size: 24px;
	}

	.main-inner h4 {
		font-size: 22px;
	}

	.main-inner h5 {
		font-size: 20px;
	}

	.main-inner .gallery .gallery-item img {
		max-width: 100%;
		height: 350px;
	}

	.sch_a {
		font-size: 24px;
		line-height: normal;
	}

	.sch_a span {
		font-size: 30px;
	}

	.main-inner .gallery .inner-wrp {
		padding-top: 0;
		padding-bottom: 80px;
	}

	.main-inner .gallery .inner-wrp .slick-arrow {
		top: unset;
		bottom: 0;
		width: 45px;
		height: 45px;
	}

	.main-inner .gallery .inner-wrp .slick-arrow.slick-prev::after {
		display: none;
	}

	.main-inner .gallery .inner-wrp .slick-arrow.slick-prev {
		background-position: top 15px left -342px;
		left: calc(50% - 55px);
	}

	.main-inner .gallery .inner-wrp .slick-arrow.slick-next {
		background-position: top 14px left -425px;
		left: 52%;
	}

	/* Body Font Size   */
	.background-head p,
	.patient-doc p,
	.single-key-differentiator .right p,
	.philosophy-con p,
	.copy-right p,
	.single-footer ul li a,
	body {
		font-size: 16px;
		line-height: 1.5;
	}

	.single-blog-post {
		max-width: 100%;
		flex: 250px;
	}

	/* Force full viewport breakout */
	.treatment-carousel {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	/* Better mobile card spacing */
	.treatment-carousel .slick-list {
		padding-left: 10px;
	}

	.patient-review-wrp {
		display: block;
		/* stop flex on mobile */
	}

	.patient-review {
		width: 100%;
		overflow: hidden;
	}
	.philosophy-con p {
		max-width: 100%;
	}
	.philosophy-sec::after{
		display: none;
	}
}

/* MOBILE FIX */
@media (max-width: 767px) {

	.patient-review-wrp {
		flex-direction: column;
		gap: 30px;
	}

	.patient-review-wrp .left {
		width: 100%;
		text-align: center;
	}

	.patient-review-wrp .patient-review {
		width: 100%;
		min-width: 0;
	}

	.single-patient-review {
		max-width: 100%;
		padding: 25px;
	}

	.single-patient-review p {
		font-size: 16px;
		line-height: 1.7;
	}

}

/*768 End */
@media all and (max-width:767px) {
	.philosophy-sec::after {
		width: 100%;
		opacity: .4;
	}
	/* Min Header Top  */
	.main-header {
		padding-bottom: 0;
	}

	.header-wrp {
		gap: 10px 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.schedule-call-wrp {
		width: calc(100% + 30px);
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background: var(--yellow);
		padding: 10px;
		margin: 0 -15px;
	}

	.schedule-call-wrp ul {
		gap: 0;
	}

	.schedule-call-wrp ul li {
		line-height: 1;
	}

	.schedule-call-wrp ul li:first-child {
		margin-right: 20px;
		padding-right: 20px;
		border-right: 1px solid #000;
	}

	.header-phone, .header-consultation {
		font-size: 18px;
		line-height: 1;
		padding: 0;
		background: transparent;
		color: #000;
		font-weight: 500;
	}

	.header-phone::before {
		display: none;
	}

	/* Home Banner Section  */
	.banner-content h1 {
		font-size: 16px;
		line-height: normal;
		margin-bottom: 5px;
	}

	.banner-content h2 {
		font-size: 42px;
		line-height: 1;
	}

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

	.youtube-year .youtube-view {
		margin-left: 10px;
		padding-left: 10px;
	}

	.banner-logo {
		min-width: 580px;
		min-height: 37px;
	}

	.facial-plastic-tab-right {
		padding: 20px 15px;
	}

	.facial-plastic-tab-right .board-certified {
		font-size: 30px;
	}

	.facial-plastic-tab-right p {
		margin-top: 14px;
	}

	.single-enhance-lip {
		-webkit-box-flex: 180px;
		-ms-flex: 180px;
		flex: 180px;
	}

	.overflow-auto img {
		min-width: 800px;
	}

	.christina-before-after .item {
		height: 250px;
	}

	.what-upper-lip {
		margin-top: 40px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.what-complications-sec .head {
		margin-bottom: 40px;
	}

	.visit-gallery.content p,
	.facial-plastic-tab-right p,
	body {
		font-size: 16px;
		line-height: 1.5;
	}

	.tab-area-wrp {
		flex-wrap: wrap;
	}

}

/*767 End */
@media all and (max-width: 576px) {
	.copy-right {
		justify-content: center;
	}
	.single-footer.footer ul.social {
		column-count: unset;
		display: flex;
		flex-direction: row;
	}
	.single-footer ul li a {
		font-size: 15px;
		line-height: 1.5;
	}
	.single-footer.three {
		max-width: 100%;
	}
	.contact-from-content {
		margin: 0px 0px;
		padding: 50px 20px;
	}
	.single-key-differentiator .right {
		padding: 20px;
	}
	.content-reviewed {
		padding: 20px;
	}
	.single-footer.two ul {
		display: block;
		column-count: 2;
	}
	.single-footer .bg-btn {
		height: 140px;
	}
	.footer-logo {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.footer-wrp {
		flex-direction: column;
		width: 100%;
	}
	.single-footer {
		max-width: 100%;
		width: 100%;
	}
	section.inner-banner-sec .container {
		padding-right: 15px;
	}
	.hair-transplant-head {
		margin-bottom: 50px;
		margin-top: 50px;
	}
	.about-christina-right::after {
		height: 50%;
	}
	.header-wrp .before-after-btn {
		padding: 7px;
	}
	.main-inner h2 span {
		font-size: 16px;
	}

	.main-inner h2 {
		font-size: 24px;
	}

	.main-inner > .gallery:first-child {
		margin-top: -50px;
	}

	.on-this-page-area {
		top: 110px !important;
	}

	.ba-btn-holder {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		padding: 30px 0 0;
	}

	.main-inner figure img,
	.main-inner img,
	.main-inner figure {
		width: unset !important;
		height: auto;
		display: block;
	}

	.heading {
		font-size: 26px;
	}

	/* Min Header Top  */
	.side-menu {
		padding: 75px 20px 20px 20px;
	}
	.copy-right p {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 8px;
	}

	.copy-right .dmca {
		margin-left: 0;
	}
	.facial-plastic-tab-nav {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.facial-plastic-tab-left {
		height: 350px;
		order: 2;
		margin-top: 40px;
	}
	.all-surgical-head {
		margin-bottom: 60px;
	}
	.facial-plastic-tab-left img {
		-o-object-position: top center;
		object-position: top center;
	}

	.facial-plastic-tab-right h2 {
		font-size: 26px;
	}

	.hair-transplant-tab-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 25px;
	}

	.hair-transplant-tab-nav {
		max-width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 10px;
		overflow: auto;
	}

	.hair-transplant-tab-nav li {
		min-width: -webkit-max-content;
		min-width: -moz-max-content;
		min-width: max-content;
	}

	.hair-transplant-tab-nav li:not(:last-child) {
		padding-bottom: 0;
	}

	.hair-transplant-tab-nav li::after {
		display: none;
	}

	.single-hair-transplant h2 {
		font-size: 32px;
	}

	.single-hair-transplant p {
		font-size: 16px;
		line-height: 1.5;
	}

	.surgery-office-right span {
		bottom: 20px;
		font-size: 13px;
	}

	.surgery-office-right span::before {
		margin-bottom: 5px;
	}

	.single-key-differentiator .right h3 {
		font-size: 20px;
		margin-bottom: 14px;
	}

	/* Inner Banner Section  */
	.inner-banner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.inner-banner>div {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
	}

	.inner-banner-left {
		padding: 40px 0;
	}

	.inner-banner-left .title {
		font-size: 28px;
		line-height: 1.2;
	}

	.inner-banner-left p:last-child {
		margin-bottom: 0;
	}

	.inner-banner-right {
		min-height: 250px;
	}

	.inner-banner-right img {
		min-height: unset;
		height: auto;
	}

	.about-garry-right,
	.about-garry-left {
		max-width: 100%;
	}

	.about-doctor-content .left {
		padding: 40px 15px;
	}

	.about-doctor-content .left h2 {
		font-size: 32px;
	}

	.four-logo {
		height: 75px;
	}

	.patient-doc {
		padding: 40px 15px;
	}

	.about-christina {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.about-christina>div {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
	}

	.about-christina-left {
		padding: 40px 15 px;
		border-radius: 5px 5px 0 0;
	}

	.about-christina-right {
		border-radius: 0 0 5px 5px;
	}

	.about-christina-right img {
		min-height: 240px;
	}

	.logo-heading {
		font-size: 29px;
	}

	.treatment-carousel .gallery-item figcaption {
		font-size: 16px;
		;
		margin-top: 15px;
	}

	.ba-btn-holder .title {
		font-size: 26px;
	}

	.nyc-plastic-before-after {
		padding: 40px 15px;
	}

	.view-result-right h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.visit-gallery.content,
	.visit-gallery {
		padding: 40px 15px;
	}

	.visit-gallery a {
		font-size: 20px;
		padding-right: 50px;
	}

	.visit-gallery a span {
		font-size: 20px;
	}

	.visit-gallery a::after {
		width: 31px;
		background-position: top 0px left -754px;
		right: -100px;
	}

	.common-about {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.media-tab-nav {
		top: 105px;
	}

	.flc-media .entry-summary {
		max-width: 100%;
		-webkit-box-flex: 250px;
		-ms-flex: 250px;
		flex: 250px;
	}

	.youtube-btn {
		margin-left: 15px;
	}

	.what-upper-lip .left {
		height: 250px;
		padding: 20px 15px;
	}

	.who-is-the {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.who-is-the .left,
	.who-is-the .right {
		max-width: 100%;
		width: 100%;
	}

	.who-is-the .left img {
		width: 100%;
	}

	.lip-beaf-arrow {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.what-anatomy-right ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.what-anatomy-right ul li {
		max-width: 165px;
		padding: 15px;
	}

	.single-patient-review .default-btn {
		margin-top: 20px;
	}

	.schedule-button {
		padding: 40px 15px;
	}

	.youtube-lip-gallery .left p {
		padding: 15px;
		font-size: 16px;
	}

	.youtube-lip-gallery {
		gap: 20px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.single-yoututbe-gallery {
		min-height: 300px;
		width: 100%;
	}

	.youtube-lip-gallery .left {
		min-height: 400px;
	}

	.contact-form .single-input {
		max-width: 100%;
	}

	.contact-form .single-input label input {
		min-width: 20px;
		width: 20px;
		height: 20px;
	}

	.single-lip-after-before h3 {
		margin-bottom: 12px;
		font-size: 20px;
	}

	.your-consultation {
		padding: 40px 15px;
	}

	.your-consultation-sec ul {
		gap: 35px 10px;
	}

	.facelift-wrp {
		margin-top: 20px;
	}

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

	.eyelid-box {
		padding: 20px 15px;
	}

	.jetlyft-procedure>div {
		padding: 20px 15px;
	}

	.jetlyft-procedure h3 {
		font-size: 28px;
	}

	.why-get-facelift-right p:not(:last-child),
	.why-get-facelift-right h2:not(:last-child) {
		margin-bottom: 20px;
	}

	.fut-hair iframe {
		height: 300px;
	}

	.natural-appearance ul li {
		-webkit-box-flex: 200px;
		-ms-flex: 200px;
		flex: 200px;
	}

	.single-surgical-all,
	.single-surgical-all.slick-current {
		height: 330px;
		max-width: 100%;
	}

	/* Min Inner Page ------------ */
	.sidebar-right {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}

	.banner-sec::before {
		content: '';
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgb(0, 0, 0, .3);
	}

	.banner-sec::after {
		z-index: -2;
		background-position: top -80px right -200px;
	}

	.bg-accordion .accordion-title {
		line-height: 1.4;
	}

	.single-enhance-lip {
		min-height: 150px;
		background-position: center;
	}

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

	.google.review::before {
		left: -20px;
		top: 43px;
		transform: scale(.4) rotate(182deg);
	}

	.google.review::after {
		right: -35px;
		bottom: -27px;
		transform: scale(.4);
	}

	.before-after-btn .inner-wrp {
		border-radius: 0;
	}

	.before-after-btn .inner-wrp a {
		font-size: 22px;
		padding-right: 0;
	}

	.before-after-btn .inner-wrp .bef_af {
		font-size: 24px;
		margin: 5px 0;
	}

	.before-after-btn .inner-wrp a::after {
		display: none;
	}

	.main-inner .gallery .gallery-item {
		max-width: 100%;
		height: auto;
	}

	.main-inner .gallery .gallery-item img {
		height: auto;
	}
	.fullWidthIn.schadule .inner-wrp .sch_a {
		font-size: 26px;
	}

	.fullWidthIn.schadule .inner-wrp .sch_a span {
		font-size: 32px;
	}

	blockquote {
		padding: 40px 15px;
	}

	blockquote p {
		font-size: 16px;
		line-height: 1.5;
	}

	section.patient-doctor-sec.mr-0 {
		margin-top: 0;
	}

	.surgery-done-bg .cont {
		padding: 50px 15px 40px 15px;
	}
	.single-transplant-box>p {
		font-size: 16px;
	}
	.before-after-btn .inner-wrp, .fullWidthIn.schadule .inner-wrp {
		padding: 20px 0 20px 100px;
	}
	.fullWidthIn.schadule, .before-after-btn .inner-wrp {
		background-position: -10% center;
	}
	.single-footer.footer ul {
		flex-wrap: wrap;
		flex-direction: column;
	}
	.single-footer .social {
		justify-content: center;
	}
	.single-footer.footer ul li {
		border-right: 0px;
		padding-right: 0px;
	}
	.single-footer.footer ul {
		display: block;
		column-count: 2;
	}
}

/*576 End */
@media all and (max-width: 430px) {
	.single-footer .bg-btn {
		height: 145px;
	}
	.on-this-page-area {
		top: 93px !important;
	}

	/* Main Header Top  */
	.header-menu-btn {
		padding: 2px 10px 2px 0;
	}

	.header-logo img {
		height: 30px;
	}

	.schedule-call-wrp ul li:first-child {
		margin-right: 10px;
		padding-right: 10px;
	}

	.header-phone,
	.header-consultation {
		font-size: 14px;
	}

	/* Main Mene -------- */
	.side-main-menu ul li a {
		font-size: 20px;
	}

	span.dropdown-menu-items {
		top: 13px;
	}

	span.dropdown-menu-items.rotate {
		top: 2px;
	}

	.best-version-wrp>div {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
	}

	/* Home Banner Section  */
	.banner-sec {
		padding-bottom: 40px;
	}

	.youtube-year {
		gap: 20px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.youtube-year .youtube-view {
		margin-left: 0;
		padding-left: 0;
		border: none;
	}

	.youtube-year .youtube-view::before {
		display: none;
	}

	.youtube-year .year span {
		font-size: 70px;
		margin-left: -10px;
	}

	.youtube-year .youtube-view .star {
		font-size: 22px;
		margin-top: 0;
	}

	.youtube-year .youtube-view .star span {
		font-size: 16px;
	}

	.banner-menu li {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
	}

	.banner-menu li a {
		padding: 12px;
		font-size: 14px;
		border-radius: 5px;
	}

	.single-key-differentiator {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.about-doctor-content .right img {
		max-height: 350px;
	}

	.patient-review-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.patient-review,
	.patient-review-wrp .left {
		max-width: 100%;
	}

	.christina-before-after .item {
		height: auto;
		width: 100%;
	}

	.media-tab-nav.tab-nav.tab-dropdown {
		position: sticky;
		top: 93px;
	}

	.what-anatomy-right ul li {
		max-width: 100%;
		padding: 10px;
		-webkit-box-flex: 130px;
		-ms-flex: 130px;
		flex: 130px;
		font-size: 14px;
	}

	.who-good-sec ul li {
		-webkit-box-flex: 150px;
		-ms-flex: 150px;
		flex: 150px;
		padding: 10px;
		font-size: 14px;
	}

	.natural-appearance ul li {
		-webkit-box-flex: 150px;
		-ms-flex: 150px;
		flex: 150px;
		padding: 15px;
		font-size: 14px;
		line-height: 1.4;
	}

	/* Min Inner Page ------------------ */
	.main-inner h3 {
		font-size: 20px;
	}

	.main-inner h4 {
		font-size: 18px;
	}

	.main-inner h5 {
		font-size: 16px;
	}

	.tab-dropdown {
		position: relative;
		overflow: unset;
		flex-direction: column;
		gap: 10px;
		padding: 14px;
		border: 1px solid #000;
		border-radius: 5px;
	}

	.tab-dropdown::after {
		content: '▼';
		position: absolute;
		right: 15px;
		top: 27px;
		transform: translateY(-50%);
		font-size: 12px;
		color: #000;
		transition: transform 0.3s;
	}

	.tab-dropdown.open::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.tab-dropdown li {
		padding: 0;
		display: none;
		transition: unset;
		border-bottom: 0;
		text-align: left;
	}

	.tab-dropdown li::after {
		display: none;
	}

	.tab-dropdown li.active {
		display: block;
	}

	.treatment-tab-nav li a,
	.media-tab-nav li {
		letter-spacing: 0px;
		padding-bottom: 0;
		border-bottom: 0;
		text-align: left;
	}

	ul.treatment-tab-nav.tab-dropdown {
		top: 8px;
	}
	.schadule .inner-wrp {
		padding-left: 20px;
	}
	.main-inner .gallery .gallery-item a {
		display: block;
	}
	.main-inner .gallery .inner-wrp {
		padding-inline: 0;
		max-width: calc(100% - 30px) !important;
	}
	.main-inner .gallery .gallery-item {
		max-width: 100%;
		margin: 0;
	}
	.main-inner .gallery .gallery-item img {
		min-height: 280px;
		border-radius: 5px;
		display: block;
		max-width: calc(100% - 30px);
	}
	.main-inner .gallery-item figcaption {
		font-size: 18px;
		margin: 20px;
		max-width: 300px;
		text-align: center;
	}
}

/*425 End */
@media all and (max-width: 390px) {
	.single-footer .bg-btn {
		height: 120px;
	}
}