/*-----------------------------------------------------------------------------------
Theme Name: vrmny
Theme URI: https://www.vrmny.com/
Description: This is Version College web site. 
Author: vrmny
Author URI: https://www.vrmny.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: 'Gill Sans';
	src: url('fonts/GillSans-Light.woff2') format('woff2'),
		url('fonts/GillSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Times New Roman';
	src: url('fonts/TimesNewRomanPSMT.woff2') format('woff2'),
		url('fonts/TimesNewRomanPSMT.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
/*----------------------------------
1. TYPOGRAPHY
---------------------------------- */

/*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;
}
html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}
body {
	font-family: 'Gill Sans';
	font-size: 18px;
	line-height: 30px;
	color: #000000;
	background: #FFFFFF;
	max-width: unset!important;
}
a {
	text-decoration: none;
	display: inline-block;
}
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%;
	border-radius: 10px;
}
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;
}
.container {
	width: 100%;
	max-width: 1366px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-l {
	width: 100%;
	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;
}
.sec-m {
	margin-top: 100px;
	margin-bottom: 100px;
}
.sec-p {
	padding-top: 100px;
	padding-bottom: 100px;
}
/*----------------------------------
1. HEADER AREA START
---------------------------------- */
.landing-header {
	padding: 40px 0;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.landing-header.fixed {
	background: #FFF;
	padding: 15px 0;
}
.landing-header .container {
	max-width: 1500px;
}
.landing-header-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.landing-header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
}
.landing-header-right .call {
	font-size: 24px;
	font-weight: 600;
	color: #000000;
	position: relative;
	padding-left: 75px;
}
.landing-header-right .call span {
	font-family: Times New Roman;
	font-size: 16px;
	font-weight: 400;
	color: #2a2a2a;
	text-transform: capitalize;
	display: block;
}
.landing-header-right .call::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
	border-radius: 100px;
	background-position: top -47px left 10px;
}
.landing-header-right .call:hover {
	text-decoration: underline;
}
/* Banner Section  */
.banner-sec {
	padding-top: 160px;
	padding-bottom: 90px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/bannerBg.jpg') no-repeat;
	background-size: cover;
}
.banner-wrap {
	max-width: 1680px;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
/* left */
.banner-left {
	max-width: 760px;
	-webkit-box-flex: 300px;
	-ms-flex: 300px;
	flex: 300px;
}
.banner-left .star {
	font-size: 16px;
	font-weight: 600;
	border: 1px solid #F3BC6E;
	padding: 10px 30px;
	border-radius: 100px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 30px;
}
.banner-left .star span {
	color: #ff9500;
	font-size: 21px;
	line-height: 25px;
}
.banner-left .star::before {
	content: '';
	display: block;
	width: 115px;
	height: 44px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
	background-position: top -269px left -4px;
}
.banner-left h1 {
	font-family: Times New Roman;
	font-size: 70px;
	font-weight: 400;
	line-height: 1;
	color: #ec7739;
	margin-bottom: 30px;
}
.banner-left h1 span {
	font-family: Times New Roman;
	font-size: 38px;
	font-weight: 400;
	color: #000;
	display: block;
}
.banner-left h2 {
	font-size: 34px;
	font-weight: 600;
	margin: 30px 0;
}
.banner-left p {
	font-family: Gill Sans;
	font-size: 18px;
	line-height: 30px;
	max-width: 595px;
	margin: 20px 0px;
}
.banner-left .default-btn {
	margin-top: 30px;
}
/* right  */
.banner-right {
	max-width: 760px;
	-webkit-box-flex: 300px;
	-ms-flex: 300px;
	flex: 300px;
}
/* Leaders in Education Section  */
.leaders-sec {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/LeadersBg.jpg') no-repeat;
	background-size: cover;
}
.leaders-sec h2 {
	margin-bottom: 30px;
}
.leaders-sec p {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}
.leaders-sec .overflow-auto {
	margin-top: 50px;
}
.leaders-sec .overflow-auto img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* eatured In Section */
.feature-sec {
	padding: 50px 0;
}
.feature-box {
	position: relative;
	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;
}
.feature-box img {
	display: block;
}
.feature-box h2 {
	color: #FFF;
	text-transform: uppercase;
	position: absolute;
}
/* Three Section  */
.three-sec {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/threeSecBg.jpg') no-repeat;
	background-size: cover;
}
/* Transforming  */
.transforming-sec {
	position: relative;
	padding-bottom: 100px;
	z-index: 2;
}
.transforming-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 296px;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 1520px;
	width: 100%;
	height: 300px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/ReDot.png') no-repeat;
}
.transfroming-box {
	text-align: center;
	max-width: 1125px;
	margin-inline: auto;
}
.transfroming-box h2 {
	max-width: 815px;
	margin-inline: auto;
}
.transfroming-box ul {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 30px;
}
.transfroming-box ul li {
	padding: 95px 55px;
	background: #ec7739;
	color: #FFF;
	border-radius: 175px;
	width: 280px;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}
.transfroming-box ul li.research {
	margin-top: 150px;
}
.transfroming-box ul li.diagnostics {
	background: #FFFAF4;
	border: 1px solid #ED7839;
	color: #000;
	margin-top: 65px;
}
.transfroming-box ul li.physicians {
	background: #17627c;
}
.transfroming-box ul li::before {
	content: '';
	display: block;
	width: 80px;
	height: 80px;
	margin-inline: auto;
	margin-bottom: 40px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
}
.transfroming-box ul li.research::before {
	background-position: top -141px left 4px;
}
.transfroming-box ul li.diagnostics::before {
	background-position: top -141px left -134px;
}
.transfroming-box ul li.physicians::before {
	background-position: top -141px left -273px;
}
/* Lifetime of section  */
.fifetime-sec .container {
	max-width: 1020px;
}
.fifetime-sec h2 {
	margin-bottom: 50px;
}
.fifetime-sec p {
	margin-bottom: 50px;
}
/* Meet Our Doctors Section  */
.meet-our-doctor-sec {
	margin-top: 80px;
}
.meet-our-doctor-sec .container {
	max-width: 1660px;
}
.meet-our-doctor-sec h2 {
	margin-bottom: 60px;
}
.single-doctor {
	position: relative;
	border-radius: 30px;
	background: #ffffff;
	padding: 20px;
	text-align: center;
	margin: 0 10px;
}
.single-doctor img {
	display: block;
	margin: auto;
	width: 300px;
	height: 300px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 100%;
}
.single-doctor > span {
	font-family: Times New Roman;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.10;
	display: block;
	text-align: center;
	color: #101926;
	margin-top: 40px;
	margin-bottom: 20px;
}
.single-doctor .book-appoin {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.63;
	color: #ec7739;
}
.single-doctor .book-appoin:hover {
	text-decoration: underline;
}
.single-doctor .select {
	margin-top: 20px;
	position: relative;
}
.single-doctor .select::after {
	content: '';
	position: absolute;
	top: 17px;
	right: 20px;
	width: 10px;
	height: 10px;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.single-doctor .select select {
	width: 100%;
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.63;
	color: #000000;
	border: none;
	outline: none;
	padding: 10px 20px;
	display: block;
	border: 1px solid #E1E1E1;
	border-radius: 10px;
	-moz-appearance:none;
	-webkit-appearance:none; 
	appearance:none;
}
.single-doctor .link {
	position: absolute;
	z-index: 99;
	top: 20px;
	right: 20px;
	width: 45px;
	height: 45px;
	background: #ED7839 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
	background-position: top 13px left -223px;
	border-radius: 100px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.single-doctor .link:hover {
	background-color: #17627C;
}
/* default dots arrow style  */
.default-dots {
	position: relative;
	padding-bottom: 120px;
}
.default-dots::after {
	content: '';
	position: absolute;
	bottom: 29px;
	left: 0;
	right: 0;
	width: 61%;
	height: 1px;
	background: #EB9419;
	margin: auto;
	opacity: .5;
}
.default-dots .slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
	position: absolute;
	bottom: 27px;
	left: 100px;
}
.default-dots .slick-dots li button {
	display: block;
	width: 23px;
	height: 6px;
	font-size: 0;
	border-radius: 100px;
	background: #17627c;
	opacity: 0.30;
}
.default-dots .slick-dots li.slick-active button {
	opacity: 1;
}
.default-dots .slick-arrow {
	width: 58px;
	height: 58px;
	border: 1px solid #D7DCEB;
	border-radius: 100px;
	font-size: 0;
	position: absolute;
	z-index: 99;
	bottom: 0;
	background: #FFF url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
}
.default-dots .slick-prev {
	right: 170px;
	background-position: top 19px left -34px;
}
.default-dots .slick-next {
	right: 100px;
	background-position: top 19px left -96px;
}
.default-dots .slick-prev:hover {
	background-color: #17627c;
	background-position: top 19px left -264px;
}
.default-dots .slick-next:hover {
	background-color: #17627c;
	background-position: top 19px left -160px;
}
/* awards & recognition */
.award-sec {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/awardBg.jpg') no-repeat;
	background-size: cover;
}
.award-sec .container {
	max-width: 1630px;
}
.award-sec h2 {
	margin-bottom: 180px;
}
.award-list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: -80px;
}
.award-list li {
	position: relative;
	font-family: Gill Sans;
	font-size: 22px;
	font-weight: 600;
	max-width: 340px;
	width: 100%;
	aspect-ratio: 1;
	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;
	text-align: center;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/bubble.png') no-repeat;
	background-position: top 24px right 26px;
	padding: 65px;
}
.award-list li.henkind {
	top: -106px;
	left: -54px;
	margin-right: auto;
}
.award-list li.bedelle {
	top: -106px;
	right: 40px;
}
.award-list li.alcon {
	top: -310px;
	left: -195px;
}
.award-list li.patz {
	top: -230px;
	left: 163px;
}
/* What Our Clients  */
.what-clients-sec {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/whatClientsBg.jpg') no-repeat;
	background-size: cover;
}
.what-clients-sec .container {
	max-width: 1660px;
}
.what-clients-sec h2 {
	margin-bottom: 20px;
}
.what-clients-wrp {
	margin-top: 80px;
}
.single-clients {
	position: relative;
	border-radius: 38px;
	background: #ffffff;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
	padding: 30px 40px;
	margin: 0px 7px;
}
.single-clients::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	margin-bottom: 30px;
	border-radius: 50px;
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
	background-position: top -43px left -73px;
	-webkit-box-shadow: 0px 22px 32px 0px rgba(15, 108, 178, 0.23);
	box-shadow: 0px 22px 32px 0px rgba(15, 108, 178, 0.23);
}
.single-clients::after {
	content: 'â˜… â˜… â˜… â˜… â˜…';
	position: absolute;
	z-index: 99;
	bottom: 28px;
	right: 40px;
	color: #eb9419;
	font-size: 17px;
}
.single-clients p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 19px;
	min-height: 145px;
}
.single-clients span {
	font-family: Gill Sans;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	border-right: 1px solid rgb(0, 0, 0,.30);
	padding-right: 15px;
}
/* Locations Section  */
.location-sec .container {
	max-width: 1010px;
}
.location-sec .sub-title {
	font-family: Gill Sans;
	font-size: 26px;
	font-weight: 600;
	line-height: normal;
	display: block;
	margin-bottom: 10px;
}
.location-wrap {
	margin-top: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 28px 24px;
}
.single-location {
	position: relative;
	border-radius: 30px;
	background: #17627c;
	-webkit-box-shadow: 42px 41px 177px 0px rgba(99, 99, 99, 0.10);
	box-shadow: 42px 41px 177px 0px rgba(99, 99, 99, 0.10);
	padding: 50px 40px;
	max-width: 480px;
	width: 100%;
	-webkit-box-flex: 350px;
	-ms-flex: 350px;
	flex: 350px;
}
.single-location span {
	font-family: Times New Roman;
	font-size: 28px;
	font-weight: 400;
	line-height: 35px;
	color: #FFF;
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.single-location ul {
	margin-left: 22px;
}
.single-location ul li {
	list-style: disc;
	line-height: 1.8;
}
.single-location ul li::marker {
	color: #FFF;
}
.single-location ul li a {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	color: #FFF;
}
.single-location ul li a:hover {
	text-decoration: underline;
}
.single-location .link {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
	background-position: top 12px left -222px;
	border-radius: 100px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.single-location .link:hover {
	background-color: #507F71;
}
/* Contact us today */
.contact-sec {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/whatClientsBg.jpg') no-repeat;
	background-size: cover;
}
.contact-sec form {
	border-radius: 30px;
	background: #ffffff;
	-webkit-box-shadow: 42px 41px 177px 0px rgba(99, 99, 99, 0.10);
	box-shadow: 42px 41px 177px 0px rgba(99, 99, 99, 0.10);
	padding: 60px;
	max-width: 980px;
	margin-inline: auto;
	margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 40px;
}
.single-input {
	position: relative;
	max-width: calc(50% - 20px);
	width: 100%;
}
.single-input.full-width {
	max-width: 100%;
}
.single-input textarea,
.single-input input {
	width: 100%;
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #101926;
	opacity: 1;
	padding-bottom: 15px;
	padding-right: 40px;
	border: none;
	outline: 0;
	border-bottom: 1px solid rgb(0, 0, 0,.10);
}
.single-input textarea:focus,
.single-input input:focus {
	border-color: #eb9419;
}
.single-input textarea {
	min-height: 145px;
	resize: none;
}
.single-input textarea::-webkit-input-placeholder, .single-input input::-webkit-input-placeholder {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #101926;
}
.single-input textarea::-moz-placeholder, .single-input input::-moz-placeholder {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #101926;
}
.single-input textarea:-ms-input-placeholder, .single-input input:-ms-input-placeholder {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #101926;
}
.single-input textarea::-ms-input-placeholder, .single-input input::-ms-input-placeholder {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #101926;
}
.single-input textarea::placeholder,
.single-input input::placeholder {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #101926;
}
.single-input .default-btn {
	width: 100%;
}
.single-input .default-btn::after {
	margin-left: auto;
}
.single-input::after {
	content: '';
	position: absolute;
	top: 7px;
	right: 0;
	width: 30px;
	height: 30px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
}
.single-input.name::after {
	background-position: top -63px left -171px;
}
.single-input.email::after {
	background-position: top -63px left -252px;
}
.single-input.number::after {
	background-position: top -63px left -331px;
}
.single-input.message::after {
	display: none;
}
/* Footer Section  */
.footer-sec {
	padding-top: 100px;
	padding-bottom: 60px;
}
.footer-sec .container {
	max-width: 1400px;
}
.footer-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
/* left  */
.footer-left {
	-webkit-box-flex: 300px;
	-ms-flex: 300px;
	flex: 300px;
	max-width: 500px;
	width: 100%;
}
.footer-left p {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	margin-top: 50px;
}
.footer-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: auto;
	margin-bottom: 25px;
}
.copy-right {
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid rgb(0, 0, 0,.30);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.copy-right p {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.79;
}
.copy-right ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.copy-right ul li {
	position: relative;
}
.copy-right ul li:not(:last-child) {
	padding-right: 15px;
	margin-right: 15px;
}
.copy-right ul li:not(:last-child)::after {
	content: '/';
	position: absolute;
	top: 5px;
	right: -4px;
}
.copy-right ul li a {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.79;
	color: #000;
}
.copy-right ul li a:hover {
	text-decoration: underline;
}
/* Typography -------- */
.default-btn, .contact-sec .single-input .default-btn {
	position: relative;
	z-index: 99;
	min-width: 250px;
	font-size: 18px;
	font-weight: 600;
	line-height: 0.97;
	color: #FFF;
	text-align: center;
	background: #ec7739;
	border-radius: 6px;
	padding: 20px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 14px;
}
.default-btn:hover {
	background: #17627c;
}
.default-btn::after {
	content: '';
	display: block;
	width: 20px;
	height: 15px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp.svg') no-repeat;
	background-position: top 0px left -3px;
	margin-top: 3px;
}
.default-btn.bg-blue {
	background: #17627c;
}
.default-btn.bg-blue:hover {
	background: #ec7739;
}
/* heading  */
.heading {
	font-family: Times New Roman;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.2;
	color: #000000;
}
.heading.fifty {
	font-size: 50px;
}
/* over flow  */
.overflow-auto {
	overflow: auto;
}
.banner-right img {
	border-radius: 30px 0px 0px 30px;
}
.award-list {
	position: relative;
}

.award-list li {
	position: relative;
	animation: moveRandom 5s ease-in-out infinite alternate;
}

@keyframes moveRandom {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(var(--randX), var(--randY));
	}
}
/***Nexhealth*****/
.nextpatient-provider-times div div span {
	display: inline-block;
}
.nextpatient-location-name, .nextpatient-location-address{
	color: #666;text-align:center;
}
.nextpatient-provider-times {
	display: flex;
	justify-content: center;
}
.nextpatient-box.nextpatient-font {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid #d5d5d5;
	border-radius: 18px;
	padding: 20px 0px 0px;
	background: #fff;
}
span.bookappt {
	color: #ec7739;
	margin: 10px 0px 40px;
	font-weight: normal;
	font-size: 22px;
	font-family: inherit;
}
.meet-our-doctor .nextpatient-provider-times {
	margin-top: 5px;
	margin-bottom: 10px;
	text-align: center;
}
.meet-our-doctor .nextpatient-provider-times div a {
	font-size: unset;
	line-height: 16px;
	color: #ffffff;
	text-transform: unset;
	background: #ec7739;
	padding: 5px;
	border: 1px solid #ed7839;
}
.meet-our-doctor .nextpatient-reason-select select {
	background: #17627c;
	color: #fff;
	border-radius: 5px;
	border: none;
}
.meet-our-doctor .nextpatient-provider-times > div {
	background: none!important;
	color: #666;
	border: none!important;
	position: relative;
}
.inner-main .meet-our-doctor .npDiv > p {
	font-size: 1.25rem;
	line-height: 34px;
	color: #666;
	margin-bottom: 20px;
	margin-top: 20px;
	text-align: center;
}
.meet-our-doctor .nextpatient-provider-table .next-appt-block .time-line span {
	font-size: 18px;
	display: inline-block;
}
.inner-area h1.fullh1 {
	width: 100%;
	max-width: unset;
	background: #497F71;
	color: #fff;
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 50px 0px;
	font-size: 40px;
}
.inner-main h1.fullh1:after {
	display: none;
}
.nextpatient-box {
	margin: 0 auto;
}
.meet-our-doctor  .npDiv .nextpatient-reason-select select {
	background: #497F71;
}
.meet-our-doctor  .npDiv .nextpatient-location-name, .npDiv .nextpatient-location-address, .npDiv .nextpatient-provider-times > div{
	color: #497F71; 
	text-align:center;
}
.nextpatient-provider-age-range {
	text-align: center!important;
}
.single-doctor h3 {
	margin: 30px 0px;
}
.single-doctor > div {
	height: 100%;
	max-height: 250px;
	min-height: 250px;
	overflow-y: auto;
}
footer p, footer a{
	max-width: max-content!important;
}
.bf-main {
	display: flex;
	gap: 15px;
	margin-bottom: 100px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.bf-main .bf-inner {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.20);
	margin-bottom: 0px;
	padding-bottom: 8px;
}
section.before-after {
	margin: 100px 0px 50px;
}
h1.ln-heading {
	font-size: clamp(2rem, 1.5rem + 2vw, 4rem);
	text-align: center;
}
section.conditions-treated-sec h1.ln-heading {
	margin-bottom: 70px;
}
.bf-main .bf-inner img {
	width: 100%;
	hei
	ght: 100%;
}
.youtube-video {
	margin: 0px 10px;
}
.youtube-video iframe {
	width: 100%;
	max-width: 1000px;
	text-align: center;
	margin: 100px auto;
	display: block;
	height: auto;
	aspect-ratio: 16 / 9;
	border: 1px solid #ccc;
	border-radius: 10px;
}
section.before-after .ln-heading {
	text-align: center;
	margin-bottom: 50px;
}
.what-tixel-left ul {
	list-style: disc;
	margin-left: 30px;
}
.beneefits-box p {
	max-width: 465px;
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	color: #FFF;
	position: relative;
}
.single-care p {
	color: #fff;
	font-size: 20px;
}
.why-vrmn-left ul {
	list-style: disc;
	color: #fff;
	margin-left: 30px;
}
.why-vrmn-left ul li::marker {
	color: #fff!important;
}
.what-can-right.new p {margin-bottom: 30px;font-size: 22px;}

.what-can-right.new {
	max-width: 550px;
}
section.what-can-sec.new {
	margin-bottom: 90px;
}
/* RESPONSIVE CSS -------------------------------------------------- */
@media all and (max-width:1440px){
	/* Header Top  */
	.landing-header {
		padding: 20px 0;
	}
	/* Banner Section  */
	.banner-wrap {
		padding: 0 15px;
	}
	.banner-left .star {
		padding: 7px 10px;
		margin-bottom: 20px;
	}
	.banner-left h1 span {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.banner-left h1 {
		font-size: 52px;
		margin-bottom: 35px;
	}
	.banner-left h2 {
		font-size: 30px;
		margin: 20px 0;
	}
	.banner-left .default-btn {
		margin-top: 20px;
	}
}
/*1440 End */
@media all and (max-width:1200px){
	.sec-p {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	/* Banner Seciton  */
	.banner-sec {
		padding-bottom: 50px;
	}
	.banner-left h1 span {
		font-size: 24px;
	}
	.banner-left h1 {
		font-size: 42px;
	}
	.banner-left h2 {
		font-size: 24px;
	}
	.feature-sec {
		padding: 0;
	}
	.transforming-sec {
		padding-bottom: 50px;
	}
	.meet-our-doctor-sec {
		margin-top: 40px;
	}
	.default-dots {
		padding-bottom: 85px;
	}
	.single-doctor {
		padding: 10px 20px 35px 20px;
	}
	.single-doctor img {
		width: 200px;
		height: 200px;
	}
	.default-dots .slick-dots {
		left: 0;
	}
	.default-dots .slick-next {
		right: 0;
	}
	.default-dots .slick-prev {
		right: 70px;
	}
	.award-sec h2 {
		margin-bottom: 40px;
	}
	.award-list {
		margin-bottom: 20px;
	}
	.award-list li {
		position: unset;
		font-size: 18px;
		line-height: 1.5;
		max-width: 250px;
		padding: 21px 50px;
		background-size: 100%;
	}
	.award-list li.henkind {
		margin-right: unset;
	}
	.what-clients-sec h2 {
		margin-bottom: 10px;
	}
	.what-clients-wrp {
		margin-top: 40px;
	}
	.single-clients {
		border-radius: 15px;
		padding: 25px 20px;
	}
	.single-clients::after {
		bottom: 22px;
		right: 20px;
	}
	.location-wrap {
		margin-top: 40px;
		gap: 15px;
	}
	.contact-sec form {
		margin-top: 40px;
	}
	.footer-sec {
		padding-top: 50px;
		padding-bottom: 40px;
	}
	.footer-left p {
		margin-top: 20px;
	}
	.copy-right {
		margin-top: 30px;
		padding-top: 30px;
		gap: 10px 20px;
	}
}
/*1200 End*/
@media all and (max-width:992px){
	.new-york-con h2 {
		font-size: 26px;
		line-height: 1.2;
	}
	/* Header Top  */
	.landing-header-left a img {
		max-width: 180px;
	}
	.landing-header-right .call {
		font-size: 20px;
		padding-left: 50px;
	}
	.landing-header-right .call span {
		line-height: 1.2;
	}
	.landing-header-right .call::before {
		top: -8px;
		left: -9px;
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
	}
	.default-btn {
		min-width: 150px;
		padding: 15px;
		gap: 8px;
	}
	.landing-header-right {
		gap: 20px;
	}
	/* Banner Section  */
	.banner-sec {
		padding-top: 115px;
	}
	.heading.fifty {
		font-size: 40px;
	}
	.transfroming-box ul li {
		padding: 50px 30px;
		width: 205px;
	}
	.transforming-sec::after {
		top: 192px;
	}
	.fifetime-sec h2 {
		margin-bottom: 30px;
	}
	.fifetime-sec p {
		margin-bottom: 35px;
	}
	.single-doctor span {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.meet-our-doctor-sec h2 {
		margin-bottom: 40px;
	}
	.single-clients p {
		min-height: unset;
	}
	.single-location {
		border-radius: 15px;
		padding: 30px 20px;
		-webkit-box-flex: 250px;
		-ms-flex: 250px;
		flex: 250px;
	}
	.single-location span {
		font-size: 20px;
		line-height: 1.2;
		margin-bottom: 15px;
	}
	.single-location ul li a {
		font-size: 14px;
	}
	.single-location .link {
		bottom: 20px;
		right: 15px;
	}
	/* Body Font Size  */
	.copy-right ul li a,
	.footer-left p,
	.copy-right p,
	.single-clients p,
	.fifetime-sec p,
	.leaders-sec p,
	.banner-left p {
		font-size: 16px;
		line-height: 1.5;
	}
}
/*992 End */
@media all and (max-width:768px){
	.conditions-treated-sec {
		margin: 40px 0;
		padding: 0px;
	}
	section.conditions-treated-sec h1.ln-heading {
		margin-bottom: 40px;
	}
	h1.ln-heading {
		text-align: left;
		margin-left: 10px;
	}
	.youtube-video iframe {
		margin: 40px auto;
	}
	section.before-after {
		margin: 40px 0px 50px;
	}
	/* Header Top  */
	.landing-header-left a img {
		max-width: 135px;
	}
	.landing-header-right .call::before {
		display: none;
	}
	.landing-header-right .default-btn::after {
		display: none;
	}
	/* Banner Section  */
	.banner-left {
		max-width: 100%;
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
	.leaders-sec .overflow-auto {
		margin-top: 20px;
	}
	.heading.fifty,
	.heading {
		font-size: 36px;
	}
	.leaders-sec h2 {
		margin-bottom: 20px;
	}
	.transfroming-box ul li.research,
	.transfroming-box ul li.diagnostics {
		margin-top: 0;
	}
	.transforming-sec::after {
		display: none;
	}
	.default-dots {
		padding-bottom: 70px;
	}
	.default-dots::after {
		display: none;
	}
	.single-doctor {
		margin: 0 5px;
		border-radius: 15px;
	}
	.single-doctor .link {
		top: 20px;
		right: 10px;
		width: 35px;
		height: 35px;
		background-position: top 9px left -227px;
	}
	.default-dots .slick-arrow {
		width: 45px;
		height: 45px;
	}
	.default-dots .slick-prev {
		right: 55px;
		background-position: top 14px left -42px;
	}
	.default-dots .slick-next {
		background-position: top 14px left -102px;
	}
	.default-dots .slick-prev:hover {
		background-position: top 13px left -270px;
	}
	.default-dots .slick-next:hover {
		background-position: top 13px left -166px;
	}
	.award-sec h2 {
		margin-bottom: 20px;
	}
	.award-list li {
		font-size: 13px;
		line-height: 1.3;
		max-width: 170px;
		padding: 21px 30px;
		background-position: top 19px right 16px;
	}
	.contact-sec form {
		border-radius: 15px;
		padding: 30px 15px;
		gap: 20px;
	}
	.bf-main .bf-inner {
		padding: 20px;
	}
	.bf-main{
		flex-wrap: wrap;
	}
}
/*768 End */
@media all and (max-width: 576px){
	/* Header Top  */
	.landing-header.fixed,
	.landing-header {
		padding: 10px 0;
	}
	.landing-header-right {
		gap: 12px;
	}
	.landing-header-right .default-btn {
		padding: 10px 5px;
		font-size: 12px;
		min-width: unset;
	}
	.landing-header-right .call {
		font-size: 14px;
		padding-left: 0;
	}
	.landing-header-right .call span {
		line-height: 1.2;
		font-size: 12px;
	}
	/* Banner Section  */
	.banner-sec {
		padding-top: 80px;
	}
	.banner-left .star::before {
		display: none;
	}
	.overflow-auto img {
		min-width: 600px;
	}
	.heading.fifty,
	.heading {
		font-size: 26px;
	}
	.transfroming-box ul {
		margin-top: 30px;
		margin-bottom: 40px;
		gap: 15px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.transfroming-box ul li {
		padding: 40px 15px;
		border-radius: 15px;
		width: 100%;
		max-width: 210px;
		-webkit-box-flex: 160px;
		-ms-flex: 160px;
		flex: 160px;
		font-size: 18px;
		line-height: 1.5;
	}
	.transfroming-box ul li::before {
		margin-bottom: 20px;
	}
	.overflow-auto {
		padding: 0 15px;
	}
	.location-sec .sub-title {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.single-input textarea {
		min-height: 100px;
	}
	.single-input {
		max-width: 100%;
	}
	.footer-right {
		margin-bottom: 0;
	}
	.banner-right img {
		border-radius: 30px;
	}
}
/* 576 End  */
@media all and (max-width: 428px) { 
	.nextpatient-slot-time {
		width: 70px!important;
	}
	.nextpatient-slot-time-day {
		font-size: 10px!important;
		line-height: 16px!important;
	}
	.nextpatient-slot-time-time, .meet-our-doctor .nextpatient-provider-times div a {
		font-size: 12px!important;;
	}
	.default-dots .slick-prev {
		left: 35%;
	}
	.default-dots .slick-next {
		right: 35%;
	}
	.default-dots .slick-dots {
		display: none!important;
	}
	/* Header Top  */
	.landing-header-left a {
		max-width: 55px;
		overflow: hidden;
	}
	/* Banner Section  */
	.banner-left h1 span {
		font-size: 18px;
	}
	.banner-left h1 {
		font-size: 30px;
	}
	.banner-left h2 {
		font-size: 20px;
	}
	.banner-left .star span {
		display: none;
	}
	.feature-box h2 {
		font-size: 15px;
	}
	.single-doctor,
	.single-clients {
		margin: 0;
	}
}
/* New Landing Page Css ----------------------------------------------------------------------------- */
@font-face {
	font-family: 'Gilroy';
	src: url('fonts/Gilroy-Regular.woff2') format('woff2'),
		url('fonts/Gilroy-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('fonts/Gilroy-Bold.woff2') format('woff2'),
		url('fonts/Gilroy-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Times New Roman';
	src: url('fonts/TimesNewRomanPSMT.woff2') format('woff2'),
		url('fonts/TimesNewRomanPSMT.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gill Sans';
	src: url('fonts/GillSans-Medium.woff2') format('woff2'),
		url('fonts/GillSans-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* landing banner seciton  */
.ln-heading {
	font-family: Times New Roman;
	font-size: 46px;
	font-weight: 400;
	line-height: 68px;
	text-transform: uppercase;
}
.lg-sc {
	max-width: 2000px;
	width: 100%;
	margin-inline: auto;
}
.landing-banner-sec {
	padding: 250px 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/tixel-bannerBg.jpg') no-repeat;
	background-size: cover;
}
section.landing-banner-sec.one {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/tixel-bannerBg2.jpg') no-repeat;
	background-size: cover;
}
section.landing-banner-sec.BlephEx {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/BlephEx-banner-bg.jpg') no-repeat;
	background-size: cover;
}
section.landing-banner-sec.valeda {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/Valeda-banner.jpg') no-repeat;
	background-size: cover;
}
section.landing-banner-sec.lipiflow {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/banner-lipiflow.jpg') no-repeat;
	background-size: cover;
}
.ln-review {
	background: rgba(255, 250, 243, 1);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 32px;
	border-radius: 174px;
	margin-bottom: 50px;
}
.ln-review::before {
	content: '';
	display: block;
	width: 112px;
	height: 44px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg');
	background-position: top -308px left 0px;
}
.ln-review .star {
	color: #ff9500;
	font-size: 21px;
	letter-spacing: 3px;
}
.ln-review p {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	font-family: Gill Sans;
}
.landing-banner-wrp {
	max-width: 645px;
	width: 100%;
}
.landing-banner-wrp h1 {
	font-family: Times New Roman;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
	color: #FFF;
	text-transform: uppercase;
	margin-bottom: 35px;
}
.landing-banner-wrp> p {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 32.5px;
	color: #FFFF;
	margin-bottom: 30px;
}
.ln-button-wrp {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.ln-button-wrp a {
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	color: #FFF;
	border: 1px solid #FFF;
	padding: 20px 48px;
	border-radius: 5px;
	transition: .3s;
	outline: none;
}
.ln-button-wrp a:hover {
	background: rgba(255, 255, 255,.80);
	color: #ec7739;
	border-color: transparent;
}
.ln-button-wrp a.bg-white {
	background: rgba(255, 255, 255,.80);
	color: #ec7739;
	border-color: transparent;
}
.ln-button-wrp a.bg-white:hover {
	background: transparent;
	color: #FFF;
	border-color: #FFFF;
}
/* What Is Tixel Section */
.what-tixel-wrp {
	display: flex;
	flex-wrap: wrap;
}
.what-tixel-wrp > div {
	flex: 1;
	max-width: 50%;
}
.what-tixel-left {
	display: flex;
	align-items: center;
	margin-right: 75px;
	margin-left: auto;
	justify-content: end;
}
.what-tixel-left > div {
	max-width: 645px;
	width: 100%;
}
.what-tixel-left h2 {
	margin-bottom: 40px;
}
.what-tixel-left p {
	font-size: 20px;
	font-weight: 400;
	line-height: 32.5px;
	margin-top: 30px;
}
/* right */
.what-tixel-right {
	position: relative;
	z-index: 3;
}
.what-tixel-right video {
	display: block;
	width: 100%;
	height: 900px;
	object-fit: cover;
	object-position: right;
	border-radius: 10px 0px 0px 0px;
}
.what-tixel-right p {
	position: absolute;
	z-index: 55;
	bottom: 90px;
	right: 0;
	left: 0;
	margin: auto;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.10), 0px 20px 25px -5px rgba(0, 0, 0, 0.10);
	padding: 40px;
	max-width: 280px;
	font-family: 'Gilroy';
	font-size: 60px;
	font-weight: 700;
	line-height: 60px;
	color: #ec7739;
}
.what-tixel-right p span {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #55433a;
	display: block;
	margin-top: 8px;
}
/* Areas Tixel Can Treat Section  */
.treat-sec {
	position: relative;
	background-size: cover;
	background-position: bottom left;
	padding-top: 120px;
}
.treat-sec::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 130%;
	background: radial-gradient(ellipse at 20% 40%, #f5d9b0 0%, #fdf0e0 40%, #ffffff 70%);
}
.treat-wrp {
	max-width: 1365px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-inline: auto;
}
.treat-right {
	max-width: 630px;
	width: 100%;
}
.treat-right h2 {
	color: #ec7739;
	margin-bottom: 30px;
}
.treat-right p {
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}
.treat-right ul {
	margin-top: 30px;
	margin-bottom: 50px;
	padding-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 60px;
	position: relative;
}
.treat-right ul::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 575px;
	width: 100%;
	height: 1px;
	background: #000;
}
.treat-right ul li {
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	position: relative;
	padding-left: 30px;
	flex: auto;
	max-width: 285px;
	width: 100%;
}
.treat-right ul li::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg');
	background-position: top 0px left 0px;
}
.treat-right .starting {
	font-family: Times New Roman;
	font-size: 28px;
	line-height: 1.5;
	color: #ec7739;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.11);
	padding: 30px 30px 30px 40px;
	max-width: 580px;
	border-left: 8px solid #EC7739;
}
.treat-right .starting span {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	display: block;
}
/* Benefits Section  */
.benefits-sec {
	padding-top: 140px;
	position: relative;
	z-index: 2;
}
.benefits-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 157%;
	bottom: -39%;
	right: 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/benefitsBg.png') no-repeat;
	background-position: right center;
	background-size: contain;
}
.beneefits-box {
	max-width: 1325px;
	width: 100%;
	margin-inline: auto;
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/beautiful-face-young.png') no-repeat;
	background-position: bottom right;
	padding: 100px 110px;
	border-radius: 10px;
}
.beneefits-box.one {
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/beautiful-face-young2.png') no-repeat;
	background-position: bottom right;
	padding: 100px 110px;
	border-radius: 10px;
}
.beneefits-box.BlephEx {
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/Who-Is-a-Candidate-for-BlephEx.png') no-repeat;
	background-position: top right;
	padding: 100px 110px;
	border-radius: 10px;
}
.beneefits-box.valeda {
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/eye-anatomy.png') no-repeat;
	background-position: center right;
	padding: 100px 110px;
	border-radius: 10px;
}
.beneefits-box h2 {
	color: #FFF;
	max-width: 470px;
	margin-bottom: 60px;
}
.beneefits-box ul {
	margin-left: 25px;
}
.beneefits-box ul li {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	color: #FFF;
	margin-top: 10px;
	list-style: disc;
}
/* Conditions Treated Section */
.conditions-treated-sec {
	position: relative;
	z-index: 2;
	margin: 100px 0;
}
.conditions-treated-wrp {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	align-items: center;
	max-width: 1625px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.conditions-treated {
	max-width: 565px;
	width: 100%;
}
.conditions-treated h2 {
	margin-bottom: 25px;
}
.conditions-treated p {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}
.conditions-treated ul {
	margin-top: 50px;
	margin-left: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 20px;
}
.conditions-treated ul li {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 38px;
	list-style: disc;
	max-width: 235px;
	width: 100%;
}
/* What to Expect Section */
.what-expect-sec {
	background: #17627C;
	padding: 120px 0;
}
.what-expect-sec h2 {
	color: #FFF;
	margin-bottom: 100px;
	text-align: center;
}
.what-expect-box {
	max-width: 1450px;
	width: 100%;
	margin-inline: auto;
}
.what-expect-box ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	counter-reset: my-list-counter;
}
.what-expect-box ul li {
	flex: 300px;
	max-width: 465px;
	width: 100%;
	padding: 80px 60px;
	border: 1px solid rgb(255, 255, 255,.30);
	border-radius: 10px;
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	color: #FFF;
	position: relative;
}
.what-expect-box ul li::before {
	content: '';
	counter-increment: my-list-counter; 
	content: counter(my-list-counter, decimal-leading-zero);
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	margin: auto;
	font-family: Times New Roman;
	font-size: 100px;
	font-weight: 400;
	color: rgb(255,255,255,.20);
	max-width: 125px;
	width: 100%;
	background: #17627c;
	text-align: center;
}
.what-expect-box ul li::after {
	content: '';
	position: absolute;
	left: 35px;
	top: 88px;
	width: 14px;
	height: 12px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg');
	background-position: top 0 left -80px;
}
/* Recovery and Downtime Section  */
.recovery-sec {
	padding-top: 140px;
	position: relative;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/recoveryBg.png') no-repeat;
	background-position: top right;
	background-size: contain;
}
.recovery-box {
	background: #ffffff;
	padding: 125px 130px;
	max-width: 895px;
	position: relative;
	z-index: 9;
}
.recovery-box::after {
	content: '';
	position: absolute;
	max-width: 450px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 100%;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/recoverySideBg.png') no-repeat;
	background-size: contain;
}
.recovery-box h2 {
	font-size: 30px;
	margin-bottom: 20px;
}
.recovery-box ul li,
.recovery-box p {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}
.recovery-box ul {
	margin-left: 25px;
}
.recovery-box ul li {
	list-style: disc;
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 38px;
}
.recovery-box ul:not(:last-child),
.recovery-box p:not(:last-child) {
	margin-bottom: 30px;
}
/* Before and After Care Section  */
.before-after-sec {
	position: relative;
	z-index: 2;
	padding: 120px 0;
}
.before-after-sec::before {
	content: '';
	position: absolute;
	z-index: -1;
	max-width: 874px;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 437px;
	background: #f3bc6e;
	bottom: -50px;
	left: -220px;
	filter: blur(1040px);
}
.before-after-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	max-width: 874px;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 437px;
	background: #f3bc6e;
	bottom: 210px;
	right: 375px;
	filter: blur(1040px);
}
.bofore-after-care {
	max-width: 1590px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.before-after-sec h2 {
	text-align: center;
	color: #17627c;
	margin-bottom: 80px;
}
.single-care {
	border-radius: 10px;
	background: #ec7739;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.050);
	padding: 50px;
	flex: 1;
}
.single-care.bg-blue {
	background: #17627c;
}
.single-care h3 {
	font-family: Times New Roman;
	font-size: 30px;
	font-weight: 400;
	line-height: 48px;
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 20px;
}
.single-care ul li {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	color: #FFF;
	position: relative;
	padding: 15px 0 15px 35px;
}
.single-care ul li:last-child {
	padding-bottom: 0;
}
.single-care ul li::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 0;
	width: 22px;
	height: 20px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top 0 left -153px;
}
/* Laser Resurfacing Section  */
.laser-resurfacing-sec {
	padding: 140px 0;
	background: #ec7739;
}
.laser-resurfacing-sec h2 {
	text-align: center;
	margin-bottom: 100px;
	color: #FFF;
}
.laser-wrap {
	display: flex;
	gap: 20px 90px;
	flex-wrap: wrap;
}
.single-laser {
	width: 100%;
	padding: 100px 120px 70px 120px;
	border: 1px solid rgb(255, 255, 255,.50);
	border-radius: 10px;
	position: relative;
	flex: 1;
}
.single-laser span {
	font-family: Times New Roman;
	font-size: 50px;
	font-weight: 400;
	color: #FFF;
	text-align: center;
	max-width: 425px;
	width: 100%;
	padding: 20px 0;
	background: #ec7739;
	display: block;
	position: absolute;
	top: -38px;
	left: 0;
	right: 0;
	margin: auto;
}
.single-laser ul li {
	font-family: Gill Sans;
	font-size: 26px;
	font-weight: 400;
	line-height: 48px;
	color: #FFF;
	list-style: disc;
}
/* Patient Testimonials Section  */
.pt-testimonial-sec {
	position: relative;
	margin: 120px 0;
}
.pt-testimonial-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: -24%;
	right: 0;
	width: 100%;
	height: 289%;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/askedBg.png') no-repeat;
	background-position: center right;
	background-size: contain;
}
.pt-testimonial-sec h2 {
	text-align: center;
	margin-bottom: 80px;
}
.pt-testimonial {
	position: relative;
	z-index: 99;
	display: flex;
	gap: 20px 50px;
	flex-wrap: wrap;
	max-width: 1220px;
	width: 100%;
	margin-inline: auto;
}
.single-tp-review {
	flex: 1;
	width: 100%;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0px 4px 234px 0px rgba(0, 0, 0, 0.10);
	padding: 30px 40px 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.single-tp-review::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -65px left 12px;
	border-radius: 100px;
	margin-bottom: 30px;
	box-shadow: 0px 22px 32px 0px rgba(15, 108, 178, 0.23);
}
.single-tp-review p {
	font-family: Gill Sans;
	font-size: 22px;
	font-weight: 400;
	line-height: 33px;
}
.single-tp-review p:first-child {
	margin-bottom: auto;
}
.single-tp-review .name {
	padding-left: 22px;
	border-left: 2px solid rgb(0, 0, 0,.30);
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-top: 50px;
}
.single-tp-review .name span {
	color: #EB9419;
	font-size: 22px;
}
/* Frequently Asked Questions  */
.asked-question-sec h2 {
	text-align: center;
	color: #ec7739;
	margin-bottom: 80px;
}
.asked-question {
	max-width: 1220px;
	width: 100%;
	margin-inline: auto;
}
.single-ques {
	border-radius: 10px;
	background: #fff2da;
	padding: 30px;
	margin-top: 30px;
}
.single-ques span {
	font-family: Times New Roman;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}
.single-ques span::after {
	content: '';
	display: block;
	width: 13px;
	height: 9px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg');
	background-position: top -83px left -89px;
	margin-top: 11px;
	transition: .3s;
}
.single-ques.active span::after {
	transform: rotate(180deg);
}
.ques-body {
	margin-top: 40px;
}
.ques-body p {
	font-family: Gill Sans;
	font-size: 22px;
	font-weight: 400;
	line-height: 33px;
}
/* Why Choose VRMNY Section */
.why-vrmn-sec {
	padding: 140px 0;
}
.why-vrmn-wrp {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.why-vrmn-wrp > div {
	flex: 1;
	max-width: 50%;
	width: 100%;
}
/* left */
.why-vrmn-left {
	background: #17627c;
	padding: 140px 170px;
}
.why-vrmn-left h2 {
	font-family: Times New Roman;
	font-size: 54px;
	font-weight: 400;
	line-height: 70px;
	color: #FFFF;
	text-transform: uppercase;
	margin-bottom: 50px;
}
.why-vrmn-left p {
	font-family: Gill Sans;
	font-size: 27px;
	font-weight: 400;
	line-height: 1.66;
	color: #FFF;
}
.why-vrmn-wrp::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 145px;
	height: 145px;
	border-radius: 100%;
	background: #ec7739 url(
		'https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -136px left 24px;
}
/* right */
.why-vrmn-right video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* Schedule a consultation  */
.start-seeing-sec {
	position: relative;
	z-index: 2;
}
.start-seeing-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 370px;
	max-width: 490px;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 100%;
	background: #f3bc6e;
	filter: blur(1024px);
}
.start-seeing-head {
	text-align: center;
	margin-bottom: 80px;
}
.start-seeing-head h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.start-seeing-head h2 span {
	font-family: Gill Sans;
	font-size: 19px;
	font-weight: 400;
	line-height: 40px;
	text-transform: math-auto;
	display: block;
	margin-bottom: 30px;
}
.start-seeing-head p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
}
.start-seeing {
	max-width: 1000px;
	width: 100%;
	margin-inline: auto;
	padding: 20px;
	background: #FFF;
	text-align: center;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.npDiv input, .nextpatient-criteria-box input {
	min-width: 100px;
	border-radius: 0px;
	height: 42px !important;
}
/* Procedure Banner Section --------- */
.procedure-banner-sec {
	padding: 100px 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/procedureBnBg.jpg') no-repeat;
	background-size: cover;
}
.procedure-banner {
	display: flex;
	align-items: center;
	gap: 195px;
}
/* left */
.procedure-banner-left {
	max-width: 675px;
	width: 100%;
}
.procedure-banner-left .ln-review {
	margin-bottom: 40px;
	border-radius: 5px;
	background: #fff9f2;
}
.procedure-banner-left h1 {
	font-size: 60px;
	font-weight: 400;
	line-height: 80px;
	color: #FFF;
	text-transform: uppercase;
	font-family: 'Times New Roman';
	margin-bottom: 35px;
}
.procedure-banner-left h1 span {
	font-family: Gill Sans;
	font-size: 19px;
	font-weight: 400;
	line-height: 40px;
	display: block;
	color: #FFF;
	margin-bottom: 25px;
}
.procedure-banner-left >p {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.66;
	color: #FFF;
	margin-bottom: 40px;
}
.procedure-banner-left .proc-btn {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	border-radius: 5px;
	background: #ffffff;
	color: #000000;
	padding: 18px 50px 18px 18px;
	position: relative;
	transition: .3s;
	border: 1px solid transparent;
	outline: none;
}
.procedure-banner-left .proc-btn::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 23px;
	width: 20px;
	height: 13px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -82px left -160px;
	transition: .3s;
}
.procedure-banner-left .proc-btn:hover {
	color: #ec7739;
}
.procedure-banner-left .proc-btn:hover::after {
	right: 10px;
}
.banner-folder {
	width: 265px;
	height: 214px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/folder.png') no-repeat;
	background-size: cover;
	padding: 70px 50px 40px 30px;
	position: relative;
	z-index: 2;
	margin-top: 120px;
}
.banner-folder p {
	font-family: Gill Sans;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.66;
	color: #FFF;
}
.banner-folder::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: -31px;
	left: 129px;
	width: 289px;
	height: 59px;
	border-top: 1px solid rgb(255, 255, 255,.30);
	border-left: 1px solid rgb(255, 255, 255,.30);
	border-radius: 18px 0 0 0;
}
.banner-folder::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: #FF5800 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top 12px left -221px;
	border-radius: 100px;
}
/* New York Section  */
.new-york-sec {
	position: relative;
	z-index: 9;
	padding: 80px 0 140px; 
}
.new-york-sec::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: -215px;
	width: 874px;
	aspect-ratio: 1;
	border-radius: 100%;
	background: #f3bc6e;
	filter: blur(1024px);
}
.new-york-con {
	display: flex;
	align-items: center;
	gap: 100px;
	justify-content: center;
	/* background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/newyorkBoxBg.jpg') no-repeat; */
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	padding: 60px 60px 60px 90px;
	margin-bottom: 140px;
	background: #17627c;
}
.new-york-con h2 {
	font-family: Times New Roman;
	font-size: 32px;
	font-weight: 400;
	line-height: 40px;
	color: #FFF;
	margin-right: auto;
	/* max-width: 330px; */
	width: 100%;
	text-transform: uppercase;
	margin-bottom: 40px;
}
.new-york-center {
	width: 100%;
}
.new-york-con p:not(:last-child) {
	margin-bottom: 35px;
}
.new-york-con p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
	color: #FFF;
}
.new-york-con p a {
	color: #FFF;
	text-decoration: underline;
	display: unset;
}
.new-york-con p a:hover {
	text-decoration: none;
}
.new-york-right {
	max-width: 440px;
	width: 100%;
	height: 420px;
	border-radius: 10px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/newyorkRIght.jpg') no-repeat;
	background-size: cover;
}
/* Featured area ---------------- */
.featured-head {
	text-align: center;
	margin-bottom: 100px;
}
.featured-head span {
	display: block;
	font-family: Gill Sans;
	font-size: 19px;
	font-weight: 400;
	line-height: 40px;
	color: #ec7739;
	margin-bottom: 20px;
	text-transform: capitalize;
}
.featured-head h2 {
	font-family: Times New Roman;
	font-size: 50px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
}
.featured-area {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 150px;
}
.featured-area > div {
	flex: 350px;
	border-radius: 10px;
	max-width: 465px;
	width: 100%;
}
.single-featured {
	position: relative;
	z-index: 2;
	padding: 30px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	text-align: center;
}
.single-featured::after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(236, 119, 57, 0) 0%, #ec7739 100%);
	border-radius: 10px;
}
.featured-hidden {
	border-radius: 5px;
	background: linear-gradient(rgb(255, 255, 255) 0%, rgb(255, 231, 219) 100%);
	padding: 35px 50px;
	margin-bottom: 40px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}
.single-featured:hover .featured-hidden {
	opacity: 1;
	visibility: visible;
}
.featured-hidden h3 {
	font-family: Times New Roman;
	font-size: 30px;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.featured-hidden p {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	max-width: 300px;
	margin-inline: auto;
	margin-bottom: 20px;
}
.featured-hidden .ft-btn {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	padding: 5px 10px;
	color: #000;
	border: 1px solid #000;
	border-radius: 5px;
	transition: .3s;
}
.featured-hidden .ft-btn:hover {
	background: #ec7739;
	color: #FFF;
	border-color: transparent;
}
.single-featured h4 {
	font-family: Times New Roman;
	font-size: 50px;
	font-weight: 400;
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 15px;
}
.single-featured > p {
	font-size: 18px;
	font-weight: 400;
	color: #FFF;
}
.featured-book {
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.30) 100%), #17627c;
	text-align: center;
	padding: 40px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-book span {
	font-family: Times New Roman;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
	color: #FFF;
	display: block;
	letter-spacing: -2%;
	margin-bottom: 20px;
}
.featured-book .ft-call {
	font-family: Gill Sans;
	font-size: 32px;
	font-weight: 400;
	line-height: 20px;
	color: #FFF;
	margin-bottom: 45px;
}
.featured-book .ft-call:hover {
	text-decoration: underline;
	text-decoration-thickness: .5px;
}
.featured-book .ft-book {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 0.97;
	text-transform: uppercase;
	color: #FFF;
	border-radius: 5px;
	background: #ec7739;
	padding: 35px 85px 35px 45px;
	position: relative;
	transition: .3s;
	border: 1px solid transparent;
}
.featured-book .ft-book::after {
	content: '';
	position: absolute;
	top: 38px;
	right: 50px;
	width: 19px;
	height: 11px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -84px left -237px;
}
.featured-book .ft-book:hover {
	background: transparent;
	border-color: #FFF;
}
.ln-brands {
	margin-top: 120px;
	text-align: center;
	overflow: auto;
}
.ln-brands img {
	filter: drop-shadow(0px 0px 40px rgba(158, 158, 158, 0.1));
}
/* In-Office Section ----------- */
.in-office-sec {
	position: relative;
	z-index: 3;
}
.in-office-sec::after {
	content: '';
	position: absolute;
	z-index: -5;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300%;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/inOfficeBg.png') no-repeat;
	background-position: bottom left;
	background-size: cover;
}
.in-office-bg {
	padding: 90px 0;
	position: relative;
	z-index: 3;
}
.in-office-bg::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	max-width: 1295px;
	width: 100%;
	height: 100%;
	background: rgb(255, 255, 255,.5);
	box-shadow: 60px 0px 24px 0px rgba(0, 0, 0, 0.070);
	border-radius: 0 100px 100px 0;
}
.in-office-bg::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	max-width: 750px;
	width: 100%;
	height: 100%;
	background: rgb(255, 255, 255,.5);
	box-shadow: -60px 0px 24px 0px rgba(0, 0, 0, 0.070);
	border-radius: 100px 0 0 100px;
}
.in-office {
	position: relative;
	max-width: 575px;
	width: 100%;
}
.in-office::after {
	content: '';
	position: absolute;
	top: 20%;
	right: -600px;
	max-width: 350px;
	width: 100%;
	aspect-ratio: 1;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/beautiful.jpg') no-repeat;
	border-radius: 100%;
	background-size: cover;
}
.in-office span {
	font-family: Gill Sans;
	font-size: 19px;
	font-weight: 400;
	line-height: 40px;
	display: block;
	color: #ec7739;
	margin-bottom: 25px;
	text-transform: capitalize;
}
.in-office h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.in-office p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
}
.in-office ul {
	margin-left: 30px;
	margin-block: 35px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}
.in-office ul li a {
	color: #000;
	text-decoration: underline;
}
.in-office ul li a:hover {
	text-decoration: none;
}
.in-office ul li {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
	color: #000;
	list-style: disc;
	flex: 250px;
}
/* Laser Surgeries Section  */
.laser-surgeri-wrp {	
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
}
.laser-surgeri-wrp::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 145px;
	height: 145px;
	border-radius: 100%;
	background: #ec7739 url(
		'https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -136px left 24px;
}
.laser-surgeri-wrp > div {
	flex: 1;
	max-width: 50%;
	width: 100%;
}
.laser-surgeri-left {
	padding: 70px 200px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/laserSugBg.jpg') no-repeat;
	background-size: cover;
}
.laser-surgeri-left h2 span {
	font-family: Gill Sans;
	font-size: 19px;
	font-weight: 400;
	line-height: 40px;
	display: block;
	margin-bottom: 20px;
	color: #ec7739;
	text-transform: capitalize;
}
.laser-surgeri-left h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	color: #FFF;
	text-transform: uppercase;
	margin-bottom: 35px;
}
.laser-surgeri-left ul li {
	list-style: disc;
}
.laser-surgeri-left ul li,
.laser-surgeri-left ul li a,
.laser-surgeri-left p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
	color: #FFF;
	max-width: 540px;
}
.laser-surgeri-left a {
	color: #FFF;
	text-decoration: underline;
}
.laser-surgeri-left a:hover {
	text-decoration: none;
}
.laser-surgeri-left ul {
	margin-block: 35px;
	margin-left: 30px;
}
.laser-surgeri-right video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
/* Surgical Procedures Section */
.surgical-prosec {
	padding: 140px 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/surgicalSecBg.jpg') no-repeat;
	background-size: cover;
}
.surgical-prosec.diagnostic {
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/diagnosticBg.jpg') no-repeat;
	background-size: cover;
}
.surgical-prosec.diagnostic .surgical-pro-wrp {
	flex-direction: row-reverse;
}

.surgical-pro-wrp {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	align-items: center;
}
.surgical-pro-left {
	height: 689px;
	width: 628px;
	background-size: contain;
	background-repeat: no-repeat;
}
.surgical-pro-wrp > div {
	flex: 350px;
}
.surgical-pro-left img {
	display: block;
	border-radius: 20px;
	pointer-events: none;
}
.surgical-pro-left {
	max-width: 625px;
	width: 100%;
}
.surgical-pro-right {
	max-width: 720px;
	width: 100%;
	text-align: center;
	display: block;
	margin: 0 auto;
}
.surgical-pro-right h2 span {
	font-family: Gill Sans;
	font-size: 19px;
	font-weight: 400;
	line-height: 40px;
	display: block;
	text-transform: capitalize;
	margin-bottom: 25px;
	color: #ec7739;
}
.surgical-pro-right h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
	max-width: 610px;
	margin-bottom: 50px;
}
.surgical-pro-right p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
	max-width: 615px;
}
.surgical-pro-right p a {
	color: inherit;
	text-decoration: underline;
}
.surgical-pro-right ul {
	margin-block: 50px;
	padding-right: 100px;
	height: 350px;
	overflow: auto;
}
.surgical-prosec.diagnostic .surgical-pro-right ul {
	height: 450px;
}
.surgical-pro-right ul::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #17627C;
	border-radius: 10px;
}
.surgical-pro-right ul::-webkit-scrollbar{
	width: 7px;
	background-color: #000;
	border-radius: 10px;
}
.surgical-pro-right ul::-webkit-scrollbar-thumb{
	background-color: #ec7739;
	border: 2px solid #ec7739;
	border-radius: 10px;
}
.surgical-pro-right ul li a {
	font-family: Gill Sans;
	/* font-size: 32px; */
	font-weight: 400;
	line-height: 1.66;
	color: #000;
	display: block;
	border-bottom: 1px solid rgb(27, 27, 27,.10);
	position: relative;
	margin-bottom: 15px;
	text-decoration: underline;
	padding: 15px 0;
	transition: .3s;
}
.surgical-pro-right ul li a:hover {
	color: #ec7739;
}
.surgical-pro-right ul li a::after {
	content: '';
	position: absolute;
	top: 8px;
	right: 100px;
	width: 50px;
	aspect-ratio: 1;
	background: #ec7739 url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg');
	background-position: top 11px left -305px;
	border-radius: 100px;
	transition: .3s;
	opacity: 0;
}
.surgical-prosec.diagnostic .surgical-pro-right ul li a {
	margin-bottom: 20px;
}
.surgical-prosec.diagnostic .surgical-pro-right ul li a::after {
	right: 0;
}
.surgical-pro-right ul li a:hover::after {
	opacity: 1;
}
/* Why Is Eye Surgery Necessary */
.eye-surgery-sec {
	padding: 120px 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/eyeSurgeryGb.jpg') no-repeat;
	background-size: cover;
}
.eye-surgery-sec h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 90px;
}
.eye-surgery-wrp {
	position: relative;
	max-width: 1230px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
}
.eye-surgery-wrp::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 85px;
	background: url(
		'https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -162px left -143px;
}
.eye-surgery-wrp > div {
	flex: 1;
	max-width: 50%;
	width: 100%;
}
.eye-surgery-wrp > div {
	flex: 1;
	max-width: 50%;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	padding: 180px 80px 80px 80px;
	border-radius: 300px 300px 40px 40px;
}
.eye-surgery-wrp p:not(:last-child) {
	margin-bottom: 45px;
}
.eye-surgery-wrp p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
}
.eye-surgery-wrp img {
	display: block;
	width: 100%;
	object-fit: cover;
}
/* What Can Surgical Section  */
.what-can-sec {
	position: relative;
	padding: 130px 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/whatCanBg.jpg') no-repeat;
	background-size: cover;
}
.what-can-wrp {
	max-width: 1000px;
	width: 100%;
	display: flex;
	gap: 100px;
	margin-left: 155px;
}
.what-can-left h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
	display: flex;
	gap: 45px;
}
.what-can-left h2::before {
	content: '';
	display: block;
	width: 70px;
	aspect-ratio: 1;
}
.what-can-left h2::before {
	content: '';
	display: block;
	min-width: 70px;
	height: 70px;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/sp2.svg') no-repeat;
	background-position: top -162px left -262px;
}
.what-can-right {
	max-width: 410px;
	width: 100%;
}
.what-can-right p {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.66;
}
.what-can-right ul {
	margin-block: 40px;
}
.what-can-right ul li:not(:last-child) {
	margin-bottom: 10px;
}
.what-can-right ul li {
	font-family: Gill Sans;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	border-radius: 5px;
	background: #ffffff;
	padding: 15px 20px;
}
.what-can-img {
	position: absolute;
	border-radius: 10px;
	margin-top: 40px;
}
/* Medications Section ------- */
.medications-sec {
	padding: 140px 0;
	background: url('https://www.vrmny.com/wp-content/themes/vrmny/new-vrmny-Landing/images/MedicationsBg.jpg') no-repeat;
	background-size: cover;
	margin-bottom: 120px;
}
.medications-sec h2 {
	font-family: Times New Roman;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	text-align: center;
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 80px;
}
.medications-list {
	max-width: 820px;
	width: 100%;
	margin-inline: auto;
}
.medications-list ul {
	color: #000000;
	/* list-style: disc; */
	width: max-content;
	margin: 0 auto;
	/* column-count: 2; */
	column-gap: 100px;
	display: flex;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 500px;
}
.medications-list ul li::marker {
	color: #fff;
}
.medications-list ul li {
	width: 48%;
	background: #fff;
	border-radius: 5px;
	padding: 15px 20px;
}
.medications-list ul li a:hover {
	background: #ec7739;
}
section.contact-area.color {
	display: none;
}
.beneefits-box ul li::marker, .single-laser ul li::marker {
	color: #fff;
}
select, input {
	border-radius: 5px!important;
	margin: 0px 5px!important;
}
.what-can-left {
	position: relative;
}
.what-expect-box ul li strong {
	margin-bottom: 10px;
	display: block;
}
.what-tixel-right img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: auto;
}
.conditions-treated.one ul li {
	max-width: 100%;
}
.surgical-pro-wrp.valeda {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.conditions-treated-right {
	max-width: 1000px;
	/* object-fit: contain; */
}
.conditions-treated-right video {
	width: 100%;
	height: auto;
}
.treat-wrp.lipiflow {
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.conditions-treated-right video {
	border-radius: 10px;
	width: 100%;
	max-width: 800px;
	height: auto;
}
/* Landing Page Responsive ---------------------- */
@media all and (max-width:1700px) {
	.landing-banner-sec {
		background-position: center;
	}
	.conditions-treated-wrp {
		margin-inline: auto;
		padding: 0 15px;	
	}
	.conditions-treated-wrp > div {
		flex: 350px;
	}
	.what-can-wrp {
		gap: 20px;
		margin-inline: auto;
		flex-wrap: wrap;
	}
	.what-can-left h2 {
		font-size: 32px;
		line-height: 1.2;
		gap: 10px;
		flex-direction: column;
	}
	.what-can-right {
		max-width: 100%;
	}
	.what-can-img {
		position: unset;
		bottom: unset;
		border-radius: 20px;
		margin-top: 40px;
		display: block;
		margin-inline: auto;
		height: auto;
	}

}
/* 1700 landing end */
@media all and (max-width:1440px) {
	.landing-banner-sec {
		padding: 50px 0;
	}
	.ln-review {
		padding: 10px 12px;
		margin-bottom: 20px;
	}
	.landing-banner-wrp h1 {
		margin-bottom: 20px;
	}
	.landing-banner-wrp> p {
		margin-bottom: 20px;
	}
	.ln-button-wrp a {
		padding: 15px 20px;
	}
	.what-tixel-left {
		margin: 0;
		padding: 40px 15px;
	}
	.what-tixel-right video {
		height: 100%;
		object-fit: cover;
		object-position: center right;
	}
	.what-tixel-right p {
		bottom: 20px;
		right: unset;
		left: 20px;
		padding: 15px;
		font-size: 46px;
		line-height: 1.2;
	}
	.beneefits-box {
		background-size: contain;
	}
	.why-vrmn-left {
		padding: 80px;
	}
	.procedure-banner-sec {
		background-position: center;
	}
	.banner-folder::before {
		display: none;
	}
	.procedure-banner {
		display: flex;
		align-items: flex-end;
		gap: 40px;
	}
	.new-york-sec {
		padding: 80px 0;
	}
	.new-york-con {
		justify-content: space-between;
		gap: 30px;
		padding: 40px;
		margin-bottom: 80px;
	}
	.in-office-bg::before {
		max-width: 100%;
		border-radius: 0;
	}
	.in-office-bg::after {
		display: none;
	}
	.in-office::after {
		left: calc(100% + 30px);
	}
	.laser-surgeri-left {
		padding: 50px;
	}
	.laser-surgeri-wrp ::after {
		transform: scale(.4);
	}
	.what-can-sec {
		padding: 50px 0;
	}

}
/* 1440 end landing  */
@media all and (max-width:1200px) {
	.treat-sec {
		padding: 50px 0;
	}
	.treat-wrp {
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.treat-wrp > div {
		flex: 300px;
	}
	.treat-right h2 {
		margin-bottom: 20px;
	}
	.treat-right ul {
		margin-top: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		gap: 8px 20px;
	}
	.beneefits-box {
		padding: 50px;
	}
	.beneefits-box h2 {
		margin-bottom: 30px;
	}
	.benefits-sec {
		padding-top: 0px;
	}
	.benefits-sec::after {
		display: none;
	}
	.conditions-treated-sec {
		padding: 50px 0;
	}
	.conditions-treated h2 {
		margin-bottom: 20px;
	}
	.conditions-treated ul {
		margin-top: 20px;
	}
	.what-expect-sec {
		padding: 50px 0;
	}
	.what-expect-sec h2 {
		margin-bottom: 50px;
	}
	.what-expect-box ul li::before {
		font-size: 52px;
		max-width: 85px;
		top: -38px;
	}
	.what-expect-box ul li::after {
		left: 12px;
		top: 54px;
	}
	.what-expect-box ul li {
		font-size: 18px;
		line-height: 1.5;
		padding: 42px 15px 20px 32px;
	}
	.recovery-sec {
		padding-top: 50px;
	}
	.recovery-box {
		padding: 50px;
		max-width: 700px;
	}
	.before-after-sec {
		padding: 50px 0;
	}
	.before-after-sec h2 {
		margin-bottom: 30px;
	}
	.bofore-after-care {
		gap: 20px;
	}
	.laser-resurfacing-sec {
		padding: 50px 0;
	}
	.laser-resurfacing-sec h2 {
		margin-bottom: 50px;
	}
	.laser-wrap {
		gap: 50px 20px;
	}
	.single-laser span {
		font-size: 22px;
		max-width: max-content;
		padding: 0px 20px;
		top: -17px;
	}
	.single-laser {
		padding: 40px 30px 40px 80px;
		border: 1px solid rgb(255, 255, 255,.50);
		flex: 350px;
	}
	.single-laser ul li {
		font-size: 22px;
		line-height: 1.5;
	}
	.pt-testimonial-sec {
		margin: 50px 0;
	}
	.pt-testimonial-sec h2 {
		margin-bottom: 30px;
	}
	.pt-testimonial {
		gap: 20px;
	}
	.asked-question-sec h2 {
		margin-bottom: 30px;
	}
	.why-vrmn-sec {
		padding: 50px 0;
	}
	.why-vrmn-left {
		padding: 80px 40px;
	}
	.why-vrmn-wrp::after {
		transform: scale(.4);
	}
	.why-vrmn-left h2 {
		font-size: 36px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.why-vrmn-left p {
		font-size: 22px;
	}
	.start-seeing-head h2 span {
		font-size: 17px;
		margin-bottom: 12px;
	}
	.start-seeing-head h2 {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.start-seeing-sec::after {
		max-width: 300px;
	}
	.start-seeing-head {
		margin-bottom: 40px;
	}
	.banner-folder {
		padding: 62px 30px 21px 15px;
		margin-top: 0;
		background-size: 100% 100%;
	}
	.new-york-sec {
		padding: 50px 0;
	}
	.new-york-con {
		justify-content: flex-start;
		align-items: flex-start;
		margin-bottom: 50px;
		flex-wrap: wrap;
	}
	.new-york-left {
		width: 100%;
	}
	.new-york-con h2 {
		max-width: 700px;
	}
	.new-york-con p:not(:last-child) {
		margin-bottom: 20px;
	}
	.new-york-center,
	.new-york-right {
		flex: 350px;
	}
	.featured-head {
		margin-bottom: 50px;
	}
	.ln-brands {
		margin-top: 50px;
	}
	.single-featured {
		padding: 20px;
	}
	.featured-hidden {
		background: rgb(255, 231, 219,.8);
		opacity: 1;
		visibility: visible;
		padding: 20px;
	}
	.single-featured h4 {
		font-size: 36px;
		line-height: 1.2;
		margin-bottom: 5px;
	}
	.featured-book {
		padding: 20px;
	}
	.featured-book .ft-book {
		padding: 20px 60px 20px 12px;
	}
	.featured-book .ft-book::after {
		top: 23px;
	}
	.in-office-bg {
		padding: 50px 0;
	}
	.in-office::after {
		max-width: 350px;
	}
	.laser-surgeri-left {
		padding: 40px 20px;
	}
	.laser-surgeri-left h2 span {
		line-height: 1.2;
		margin-bottom: 15px;
	}
	.laser-surgeri-left h2 {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.laser-surgeri-left ul li, .laser-surgeri-left ul li a, .laser-surgeri-left p {
		line-height: 1.5;
	}
	.laser-surgeri-left ul {
		margin-block: 20px;
	}
	.laser-surgeri-wrp > div {
		flex: 350px;
		max-width: 100%;
		width: 100%;
	}
	.laser-surgeri-wrp::after {
		transform: scale(.4);
	}
	.surgical-prosec {
		padding: 50px 0;
	}
	.surgical-pro-right h2 span {
		line-height: 1.2;
		margin-bottom: 15px;
	}
	.surgical-pro-right h2 {
		font-size: 30px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.surgical-pro-right p {
		font-size: 18px;
		line-height: 1.5;
	}
	.surgical-pro-right ul li a {
		/* font-size: 20px; */
		line-height: 2;
		/* margin-bottom: 10px; */
		padding: 0px;
		margin: 0px;
		border-bottom: 0px;
		position: relative;
	}
	.surgical-pro-right ul li a::after {
		top: 4px;
		right: 0;
		width: 30px;
		background-position: top 3px left -316px;
	}
	.surgical-pro-right ul {
		margin-block: 30px;
		height: 240px;
		padding-right: 15px;
	}
	.surgical-pro-wrp {
		align-items: flex-start;
	}
	.surgical-pro-wrp > div {
		flex: 320px;
		width: 100%;
		max-width: 100%;
		height: max-content;
	}
	.eye-surgery-sec {
		padding: 50px 0;
	}
	.eye-surgery-sec h2 {
		font-size: 30px;
		line-height: 1.2;
		margin-bottom: 40px;
	}
	.eye-surgery-wrp {
		gap: 25px;
	}
	.eye-surgery-wrp > div {
		padding: 140px 60px 40px 60px;
	}
	.eye-surgery-wrp p:not(:last-child) {
		margin-bottom: 20px;
	}
	.what-can-right ul {
		margin-block: 20px;
	}
	.medications-sec {
		padding: 50px 0;
		margin-bottom: 50px;
	}
	.medications-sec h2 {
		margin-bottom: 40px;
	}

}
/* 1200 end landing  */
@media all and (max-width:1199px) {
	.recovery-box::after {
		display: none;
	}
	.recovery-box {
		padding: 40px;
		max-width: 900px;
		margin-inline: auto;
		box-shadow: 0 0 15px #f0f0f0;
	}
	.recovery-box h2 {
		font-size: 26px;
		line-height: 1.2;
	}
	.recovery-box ul:not(:last-child), .recovery-box p:not(:last-child) {
		margin-bottom: 20px;
	}
	.new-york-sec::before {
		max-width: 874px;
		width: 100%;
	}
	.surgical-prosec.diagnostic .surgical-pro-right ul {
		height: 297px;
	}

}
/* 1199 end landing  */
@media all and (max-width:992px) {
	.ln-heading {
		font-size: 36px;
		line-height: 1.2;
	}
	.what-tixel-left h2 {
		margin-bottom: 20px;
	}
	.what-tixel-left p {
		font-size: 18px;
		font-weight: 400;
		line-height: 1.5;
		margin-top: 15px;
	}
	.what-tixel-right p span {
		font-size: 14px;
		line-height: 1.5;
		margin-top: 0;
	}
	.treat-right .starting {
		font-size: 22px;
		line-height: 1.5;
		padding: 12px 10px 12px 15px;
	}
	.beneefits-box {
		padding: 40px 20px;
	}
	.what-expect-box ul li {
		font-size: 18px;
		line-height: 1.5;
		padding: 42px 15px 20px 32px;
		flex: 230px;
	}
	.conditions-treated-wrp {
		align-items: flex-start;
	}
	.what-expect-box ul {
		gap: 45px 15px;
	}
	.single-care {
		border-radius: 10px;
		padding: 20px;
		flex: 350px;
	}
	.single-care h3 {
		font-size: 24px;
		line-height: 1.5;
		margin-bottom: 10px;
	}
	.single-care ul li {
		font-size: 18px;
		line-height: 1.5;
		padding: 8px 0 8px 30px;
	}
	.single-care ul li::before {
		top: 13px;
	}
	.procedure-banner-sec {
		padding: 50px 0;
	}
	.procedure-banner-left .ln-review {
		margin-bottom: 20px;
	}
	.procedure-banner-left h1 span {
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 10px;
	}
	.procedure-banner-left h1 {
		font-size: 42px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.procedure-banner-left >p {
		margin-bottom: 25px;
	}
	.procedure-banner {
		flex-wrap: wrap;
	}
	.procedure-banner-sec {
		position: relative;
		z-index: 2;
	}
	.procedure-banner-sec::after {
		content: '';
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgb(0, 0, 0,.30);
	}
	.in-office span {
		line-height: 1.2;
		margin-bottom: 15px;
	}
	.in-office h2 {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.in-office ul {
		margin-block: 20px;
	}
	.in-office ul li,
	.in-office p {
		font-size: 18px;
		line-height: 1.5;
	}
	.eye-surgery-wrp::after {
		display: none;
	}
	.eye-surgery-wrp > div {
		padding: 40px 20px;
		border-radius: 20px;
		flex: 350px;
		max-width: 100%;
	}
	.medications-list ul li {
		max-width: 365px;
	}
	.what-can-sec {
		padding-bottom: 0;
	}

}
/* 992 end landing  */
@media all and (max-width:991px)  {
	.in-office {
		margin-inline: auto;
	}
	.in-office::after {
		max-width: 350px;
		position: unset;
		display: block;
		margin-inline: auto;
		margin-top: 30px;
	}

}
/* 991 end landing  */
@media all and (max-width:768px) {
	.conditions-treated-sec {
		padding: 0px;
		margin: 40px 0px;
	}
	section.what-can-sec.new {
		margin-bottom: 40px;
	}
	.beneefits-box.valeda {
		background: #ec7739;
		padding: 30px;
	}
	.medications-list ul {
		max-width: unset;
		gap: 10px;
	}
	.medications-list ul {
		width: 100%;
	}
	.medications-list ul li{
		padding: 7px;
	}
	.landing-banner-wrp h1 {
		font-size: 30px;
		line-height: 1.2;
	}
	.landing-banner-wrp> p {
		font-size: 18px;
		line-height: 1.5;
	}
	.treat-left img {
		filter: drop-shadow(0px 0px 17px rgba(0,0,0,.1));
	}
	.beneefits-box h2 {
		margin-bottom: 20px;
	}
	.single-laser {
		padding: 40px 20px 30px 40px;
	}
	.single-tp-review {
		padding: 25px;
	}
	.single-tp-review::before {
		margin-bottom: 20px;
	}
	.single-tp-review p {
		font-size: 18px;
		line-height: 1.5;
	}
	.single-tp-review .name {
		margin-top: 30px;
	}
	.single-ques {
		padding: 15px;
		margin-top: 15px;
	}
	.ques-body {
		margin-top: 15px;
	}
	.single-ques span {
		font-size: 22px;
	}
	.ques-body p {
		font-size: 18px;
		line-height: 1.5;
	}
	.why-vrmn-left {
		padding: 40px 20px;
	}
	.why-vrmn-wrp::after {
		display: none;
	}
	.why-vrmn-left h2 {
		font-size: 26px;
	}
	.why-vrmn-left p {
		font-size: 18px;
	}
	.why-vrmn-wrp > div {
		flex: 350px;
		max-width: 100%;
		width: 100%;
	}
	.why-vrmn-right video {
		aspect-ratio: 1;
	}
	.new-york-con p {
		line-height: 1.5;
	}
	.featured-head h2 {
		font-size: 32px;
		line-height: 1.2;
	}
	.featured-head span {
		line-height: 1.2;
		margin-bottom: 15px;
	}
	.featured-area > div {
		flex: 250px;
	}
	.laser-surgeri-wrp::after {
		display: none;
	}
	.surgical-pro-right h2 {
		font-size: 26px;
	}
	.eye-surgery-wrp p {
		line-height: 1.5;
	}

}
/* 768 end landing  */
@media all and (max-width:576px) {
	.conditions-treated ul li{
		max-width: unset;
	}
	.featured-area {
		margin-bottom: 70px;
	}
	.ln-heading {
		font-size: 28px;
		line-height: 1.2;
	}
	.landing-banner-sec {
		position: relative;
		z-index: 6;
	}
	.landing-banner-sec::after {
		content: '';
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #00000073;
	}
	.ln-review p {
		font-size: 15px;
	}
	.ln-review .star {
		font-size: 20px;
		letter-spacing: 0;
	}
	.ln-button-wrp a {
		padding: 15px;
		font-size: 16px;
	}
	.what-tixel-wrp > div {
		flex: 100%;
		max-width: 100%;
		width: 100%;
	}
	.what-tixel-right video {
		height: auto;
		aspect-ratio: 1;
	}
	.what-tixel-right p {
		bottom: 10px;
		right: unset;
		left: 10px;
		padding: 8px;
		font-size: 28px;
		line-height: 1.2;
		border-radius: 10px;
	}
	.beneefits-box {
		background: #ec7739;
	}
	.what-expect-box ul li {
		max-width: 100%;
	}
	.recovery-box {
		padding: 40px 15px;
	}
	.recovery-box ul li, .recovery-box p {
		font-size: 18px;
		line-height: 1.5;
	}
	.procedure-banner-left h1 {
		font-size: 32px;
	}
	.procedure-banner-left h1 span {
		font-size: 14px;
	}
	.procedure-banner-left >p {
		font-size: 18px;
	}
	.new-york-con {
		padding: 40px 15px;
	}
	.featured-head h2 {
		font-size: 26px;
		line-height: 1.2px;
	}
	.featured-head span {
		line-height: 1.2;
		margin-bottom: 30px;
	}
	.ln-brands img {
		min-width: 600px;
	}
	.laser-surgeri-right video {
		aspect-ratio: 1;
	}
	.surgical-pro-right ul {
		height: auto;
		padding-right: 0;
	}
	.eye-surgery-sec h2 {
		font-size: 26px;
	}
	.medications-sec h2 {
		font-size: 28px;
	}
	.medications-list ul li {
		max-width: 100%;
		flex: 250px;
	}
	.surgical-prosec.diagnostic .surgical-pro-right ul {
		margin-bottom: 0;
	}

}
/* 576 end landing  */
@media all and (max-width:425px) {
	.ln-heading {
		font-size: 24px;
	}
	.ln-review::before {
		display: none;
	}
	.landing-banner-wrp h1 {
		font-size: 26px;
	}
	.treat-right ul li {
		font-size: 18px;
	}
	.treat-right .starting {
		font-size: 18px;
		line-height: 1.5;
		padding: 12px 8px 12px 8px;
		border-left-width: 3px;
	}
	.treat-right .starting span {
		font-size: 16px;
	}
	.conditions-treated ul li {
		font-size: 18px;
		line-height: 1.5;
	}
	.recovery-box h2 {
		font-size: 22px;
	}
	.single-laser ul li {
		font-size: 18px;
	}
	.single-ques span {
		font-size: 18px;
		line-height: 1.5;
	}
	.single-ques span::after {
		min-width: 13px;
	}
	.what-can-left h2 {
		font-size: 26px;
	}
	.what-can-right ul li {
		line-height: 1.5;
		padding: 10px;
	}
	.featured-book .ft-book {
		padding: 20px 35px 20px 12px;
		text-align: left;
		font-size: 16px;
	}
	.featured-book .ft-book::after {
		right: 20px;
	}

}
/* 425 end landing  */






