/*-----------------------------------------------------------------------------------
Theme Name: Bariatrics
Theme URI: https://www.bariatricsurgerynewjersey.com/
Description: This is Version College web site. 
Author: Bariatric Surgery New Jersey
Author URI: https://www.bariatricsurgerynewjersey.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: 'Europa';
	src: url('fonts/Europa-Bold.woff2') format('woff2'),
		url('fonts/Europa-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Europa';
	src: url('fonts/Europa-Regular.woff2') format('woff2'),
		url('fonts/Europa-Regular.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: 80%;
	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: 90%;
	}
}
/*Video Popup End----*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: 'Europa';
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
	background: #FFFFFF;
}
a {
	text-decoration: none;
	display: inline-block;
	font-family: 'Europa';
}
a:hover {
	text-decoration: none;
}
button {
	border: none;
	outline: none;
	cursor: pointer;
	background: transparent;
	font-family: 'Europa';
}
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	font-family: 'Europa';
}
input {
	border: none;
	outline: none;
	font-family: 'Europa';
}
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;
}
.container {
	width: 100%;
	max-width: 1396px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-x {
	width: 100%;
	max-width: 1630px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container-i {
	width: 100%;
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
/* Typography  -------- */
.sec-m {
	margin-top: 110px;
	margin-bottom: 110px;
}
.sec-p {
	padding-top: 110px;
	padding-bottom: 110px;
}
.default-btn, .download-btn {
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	color: #fff;
	border-radius: 15px;
	background: #124986;
	position: relative;
	z-index: 2;
	padding: 30px 100px 30px 40px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.main-inner .download-btn, .main-inner .default-btn {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	margin-top: 50px;
	display: block;
	width: 100%;
	min-width: 200px;
	max-width: max-content;
	margin: 50px auto 0px;
}
.aioseo-breadcrumbs {
    border-bottom: 1px solid #ccc;
	text-align: center;
}
.aioseo-breadcrumbs, .aioseo-breadcrumbs a {
    color: #989898;
    margin-bottom: 20px;
    text-decoration: none;
}
.main-inner .inner-btn-wrp .download-btn, .main-inner .inner-btn-wrp .default-btn {
	min-width: unset;
	max-width: unset;
	margin: 0px;
}
.page-id-25892 .single-banner.inner-dr .default-btn {
	font-size: 19px;
}
.default-btn:hover, .download-btn:hover {
	background: #C6EAFB;
}
.default-btn:hover{
    color:#124986;
}
.default-btn.orange::after{
	   width: 55px;
    height: 55px;
    background: url(images/sp.svg) no-repeat;
    background-position: top -155px left -464px;
}
.default-btn.light-blue::after{
	   width: 55px;
    height: 55px;
    background: url(images/sp.svg) no-repeat;
    background-position: top -155px left -464px;
}

 .default-btn:hover::after {
    width: 55px;
    height: 55px;
    background: url(images/sp.svg) no-repeat;
    background-position: top -155px left -464px;
} 
.default-btn::after, .download-btn:after  {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 48px;
	height: 48px;
	margin: auto;
	background: url('images/sp.svg') no-repeat;
	background-position: top -155px left -364px;
}
.default-btn.orange {
	background: #C6EAFB;
	color: #124986;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	border: 2px solid transparent;
}
.default-btn.cap {
	text-transform:uppercase;
}
.default-btn.light-blue {
	background: #C6EAFB;
	color: #124986;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	border: 2px solid transparent;
}
.default-btn.light-blue:hover, .default-btn.orange:hover {
    color: #FFF;
    background: #124986;
    border-color: #C6EAFB;
    border: 2px solid;
}
.default-btn.light-blue:hover,
.default-btn.orange:hover {
	color: #FFF;
	background: #124986;
	border-color: #C6EAFB;
}
.default-btn.light-blue:hover::after,
.default-btn.orange:hover::after {
	-webkit-filter: brightness(100);
	filter: brightness(100);
}
.heading-one {
	font-weight: normal;
	font-size: 50px;
	line-height: normal;
	color: #124986;
}
.heading {
	font-weight: normal;
	font-size: 55px;
	line-height: normal;
	color: #fff;
}
.heading a{
	color: #fff;	
}
.heading span {
	font-weight: normal;
	font-size: 22px;
	letter-spacing: 0.15em;
	line-height: normal;
	color: #fff;
	display: block;
	margin-bottom: 24px;
}
/* play video button ------- */
.play-btn {
    width: 145px;
    height: 145px;
    background: #C6EAFB;
    border-radius: 50%;
    position: relative;
    display: block;
    -webkit-box-shadow: 0px 0px 0 20px rgb(173 207 248 / 45%);
    box-shadow: 0px 0px 0 20px rgb(173 207 248 / 45%);
}
/* pulse wave */
.play-btn:before {
	content: "";
	position: absolute;
	width: 130%;
	height: 130%;
	-webkit-animation: pulsate1 2s;
	animation: pulsate1 2s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid #12498614;
	top: -18%;
	left: -18%;
}
/* triangle */
.play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	-ms-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid #fff;
	z-index: 100;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.play-btn:hover::after {
	-webkit-transform: translateX(-29%) translateY(-54%) scale(1.5);
	-ms-transform: translateX(-29%) translateY(-54%) scale(1.5);
	transform: translateX(-29%) translateY(-54%) scale(1.5);
}
@-webkit-keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 1;
		-webkit-box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
			0px 0px 25px 10px rgba(255, 255, 255, 0.75);
		box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
			0px 0px 25px 10px rgba(255, 255, 255, 0.75);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}
@keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 1;
		-webkit-box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
			0px 0px 25px 10px rgba(255, 255, 255, 0.75);
		box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
			0px 0px 25px 10px rgba(255, 255, 255, 0.75);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}
.star {
	color: #F1C40F;
	font-size: 33px;
}
.z-index {
	position: relative;
	z-index: 99 !important;
}
.after-none::after,
.before-none::before {
	display: none;
}
:root {
	--bg-blue: #124986;
	--bg-lite-blue: #C6EAFB;
	--bg-orange: #C6EAFB;
}
.br-none {
	display: none;
}
/* Typography End  -------- */
/*----------------------------------
1. HEADER AREA START
---------------------------------- */
.min-header {
	background: #FFF;
	-webkit-box-shadow: 0px 20px 40px rgba(14, 33, 106, 0.09);
	box-shadow: 0px 20px 40px rgba(14, 33, 106, 0.09);
	position: sticky;
	top: 0;
	z-index: 999;
}
/* header top  */
.header-top {
	background: #124986;
	padding: 6px 0;
}
.header-top-con {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
}
.header-top-con p {
	font-weight: normal;
	font-size: 18px;
	line-height: normal;
	color: #fff;
}
.header-top-con p a {
	font-weight: normal;
	font-size: 20px;
	line-height: normal;
	color: #fff;
	position: relative;
	padding-left: 35px;
	margin-left: 18px;
}
.header-top-con p a:hover {
	color: #C6EAFB;
}
.header-top-con p a::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 25px;
	height: 22px;
	background: url('images/sp.svg') no-repeat;
}
.header-top-con .e-waiting {
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	text-align: center;
	color: #000003;
	border-radius: 5px;
	background: #fff;
	padding: 7px 35px;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
}
.header-top-con .e-waiting:hover {
	background: #C6EAFB;
	color: #FFFFFF;
}
/* header bottom  */
.header-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}
/* header nav menu  */
.sidebar-gallery .menu-item-has-children:after, .sidebar-gallery .menu-item-has-children:before  {
	display: none;
}
.main-menu ul .menu-item-has-children {
	position: relative;
}
.main-menu ul .menu-item-has-children:after, .main-menu ul .menu-item-has-children:before  {
	content: '';
	width: 5px;
	height: 1px;
	background: #000;
	transform: rotate(45deg);
	position: absolute;
	right: -11px;
	top: 0;
	bottom: -5px;
	margin: auto;
}
.main-menu ul .menu-item-has-children:before{
	transform: rotate(-45deg);
	right: -14px;
}
.main-menu ul ul .menu-item-has-children:before {
	right: 10px;
	transform: rotate(30deg);
	top: -9px;
}
.main-menu ul ul .menu-item-has-children:after {
	right: 10px;
	transform: rotate(-30deg);
	top: -4px;
}
.header-nav {
	margin-left: auto;
}
.main-menu > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}
.main-menu ul li {
	position: relative;
}
.main-menu > ul > li > a {
	padding: 39px 0px;
}
.main-menu ul li a {
	font-weight: normal;
	font-size: 18px;
	line-height: normal;
	color: #444;
	display: block;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
.main-menu ul li a:hover {
	color: #204985;
}
/* Drop Down  */
.main-menu ul ul {
	position: absolute;
	top: 100%;
	width: 350px;
	background: #FFF;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
	opacity: 0;
	visibility: hidden;
}
.main-menu ul li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.main-menu ul ul ul {
	left: 100%;
	top: 0;
}
.main-menu ul ul li a {
	padding: 10px 15px;
}
.main-menu ul ul li a:hover {
	background: #EEE;
}
/* book online   */
.book-online {
	font-weight: bold;
	font-size: 21px;
	line-height: normal;
	color: #124986;
	border-radius: 5px;
	background: #C6EAFB;
	padding: 25px 25px 25px 88px;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.book-online:hover {
	color: #FFF;
}
.book-online:hover::before {
	-webkit-filter: brightness(100);
	filter: brightness(100);
}
.book-online::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	width: 50px;
	height: 50px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -153px left -88px;
}
.book-online::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #124986;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
}
.book-online:hover::after {
	width: 100%;
}
/* Mobile Bars -------------- */
.mobail-bars {
	position: relative;
	width: 55px;
	height: 55px;
	background: #124986;
	border-radius: 4px;
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	-ms-grid-column-align: end;
	justify-self: end;
	z-index: 9999;
}
/*Single Bar */
.mobail-bars span {
	position: absolute;
	width: 75%;
	height: 4px;
	background: #FFF;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	border-radius: 4px;
}
.mobail-bars span:nth-child(1) {
	-webkit-transform: translateY(-13px);
	-ms-transform: translateY(-13px);
	transform: translateY(-13px);
}
.mobail-bars span:nth-child(2) {
	-webkit-transform: translateY(13px);
	-ms-transform: translateY(13px);
	transform: translateY(13px);
}
/*when click bar */
.mobail-bars.active span:nth-child(1) {
	-webkit-transform: translateY(0px) rotate(45deg);
	-ms-transform: translateY(0px) rotate(45deg);
	transform: translateY(0px) rotate(45deg);
	width: 40px;
}
.mobail-bars.active span:nth-child(2) {
	-webkit-transform: translateY(0px) rotate(-45deg);
	-ms-transform: translateY(0px) rotate(-45deg);
	transform: translateY(0px) rotate(-45deg);
	width: 40px;
}
.mobail-bars.active span:nth-child(3) {
	-webkit-transform: translateX(60px);
	-ms-transform: translateX(60px);
	transform: translateX(60px);
}


/* Banner Section -------------------------- */
.banner-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
/* banner side bar  */
.banner-side-bar {
	min-width: 160px;
	height: 100%;
	background: #FFFFFF;
}
.banner-side-bar ul {
	padding-top: 175px;
	padding-bottom: 290px;
	position: relative;
}
.banner-side-bar ul::before {
	content: '';
	position: absolute;
	bottom: 70px;
	left: 0;
	right: 0;
	margin: auto;
	width: 1px;
	height: 110px;
	background: rgb(0 0 0 / 33%);
}
.banner-side-bar ul::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 40px;
	height: 60px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -376px right -30px;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
	-webkit-animation: up-down 5000ms;
	animation: up-down 5000ms;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
@-webkit-keyframes up-down {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		-webkit-filter: invert(1);
		filter: invert(1);
	}
}
.banner-side-bar ul li {
	width: 45px;
	height: 45px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}
.banner-side-bar ul li button {
	display: block;
	width: 100%;
	height: 100%;
	background: url('images/sp.svg') no-repeat;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
}
.banner-side-bar ul li button:hover {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}
.banner-side-bar ul .face button {
    background-position: top -383px left -264px;
}
.banner-side-bar ul .yout button {
	background-position: top -382px left -425px;
}
.banner-side-bar ul .insta button {
	background-position: top -382px left -497px;
}
/* banner content  --------- */
.banner-righ {
	max-width: calc(100% - 160px);
	width: 100%;
}
.single-banner {
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	padding-top: 85px;
}
.single-banner.testi{
	padding-top:113px;
}
.single-banner.dr {
	padding-top: 143px;
	padding-left: 115px;
}
.single-banner .dr-sadek .dr-title {
	font-weight: normal;
	font-size: 64px;
	line-height: normal;
	color: #124986;
}
.single-banner .dr-sadek .dr-title span {
	color: #124986;
}
.single-banner .dr-sadek p {
	font-weight: normal;
	font-size: 26px;
	line-height: normal;
	color: #444;
	margin-bottom: 30px;
}
.dr-sadek img {
	display: block;
	margin-bottom: 78px;
}
/* right  */
.dr-img {
	max-width: 960px;
	width: 100%;
	border-radius: 40px 0px 200px;
	background: -o-radial-gradient(#051c32 0%, #051c32 0.59%, #0d4a87 100%);
	background: radial-gradient(#051c32 0%, #051c32 0.59%, #0d4a87 100%);
	position: relative;
}
.home .dr-img img {
	display: block;
	margin: 0;
}
.dr-img img {
	display: block;
	position: absolute;
	bottom: 0px;
	height: 120%;
	width: auto;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.home .dr-img img {
	display: block;
	margin-top: -90px;
	position: unset;
	height: auto;
}
.single-banner .left {
	padding: 115px 50px 165px 115px;
	border-radius: 0px 40px 0px 0px;
	background: rgba(18, 73, 134, 0.72);
	max-width: 880px;
	width: 100%;
}
.single-banner .banner-title {
	font-weight: bold;
	font-size: 90px;
	line-height: 100px;
	color: #C6EAFB;
}
.single-banner .banner-title span {
	display: block;
	color: #FFF;
}
.single-banner.testi .banner-title {
	position: relative;
	padding-bottom: 25px;
	display: block;
}
.single-banner.testi .banner-title::after {
	content: '';
	position: absolute;
	bottom: -35px;
	left: 247px;
	width: 36px;
	height: 55px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -159px right -29px;
}
.single-banner.testi .banner-title span {
	display: inline-block;
}
.single-banner p {
	font-weight: normal;
	font-size: 34px;
	line-height: 47px;
	color: #fff;
	margin: 40px 0 50px 0;
}
.single-banner.testi p {
	position: relative;
	padding-left: 65px;
}
.single-banner.testi p::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 39px;
	height: 36px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -72px left 0;
}

.single-banner .left .default-btn:hover::after {
    width: 55px;
    height: 55px;
    background: url(images/sp.svg) no-repeat;
    background-position: top -155px left -464px;
}

.single-banner .left .default-btn:hover {
    background: #124986 !important;
    color: #ffffff !important;
    border: 2px solid white;
}
.single-banner .left .default-btn {
    border: 2px solid transparent;
}
.single-banner .left .default-btn {
	background: #c6eafb;
	color: #124986;
}
.single-banner .left .default-btn:hover {
	background: #C6EAFB;
	color: #FFF;
}
.single-banner .left .default-btn::after {
	background-position: top -153px left -461px;
	width: 60px;
	height: 60px;
}
.single-banner .left .default-btn:hover::after {
	-webkit-filter: brightness(100);
	filter: brightness(100);
} 
.banner-content .slick-dots {
	position: absolute;
	bottom: 110px;
	left: 115px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}
.banner-content .slick-dots li button {
	font-size: 0;
	display: block;
	width: 15px;
	height: 15px;
	background: #C6EAFB;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.banner-content .slick-dots li.slick-active button {
	width: 20px;
	height: 20px;
	background: #124986;
}
/* Awards Section -------------- */
.awards-sec {
	margin: 65px 0 130px 0;
}
.awards-sec h2 {
	text-align: center;
	margin-bottom: 25px;
}
.awards {
/* 	overflow: auto; */
	padding-bottom: 5px;
	max-width: 1260px;
	width: 100%;
	margin: auto;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
.awards::-webkit-scrollbar-track {
	scrollbar-width: auto;
	scrollbar-color: #8f54a0 #124986;
	border-radius: 17px;
}
/* Chrome, Edge, and Safari */
.awards::-webkit-scrollbar {
	width: 14px;
	border-radius: 17px;
}

.awards::-webkit-scrollbar-track {
	background: #124986;
}
.awards::-webkit-scrollbar-thumb {
	background-color: #C6EAFB;
	border-radius: 17px;
	border: 3px solid #124986;
}
.awards img {
	min-width: -webkit-max-content;
	min-width: -moz-max-content;
	min-width: max-content;
	width: 100%;
	height: auto;
}
/* Advanced Surgical Section --------- */
.advanced-surgi-sec {
	background: url('images/advancedBg.jpg') no-repeat;
	background-size: 100% 87%;
	background-position: top center;
	border-radius: 200px 0;
	margin-bottom: 130px;
}
.advanced-sur-top {
	padding: 135px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}
.advanced-sur-top h1 {
	position: relative;
	padding-top: 0px;
	max-width: 445px;
}
/* .advanced-sur-top h1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 82px;
	height: 82px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -486px left -111px;
} */
.advanced-top-left {
	max-width: 715px;
	width: 100%;
}
.advanced-top-left p {
	font-weight: normal;
	font-size: 21px;
	line-height: 30px;
	color: #fff;
	margin-bottom: 35px;
}
.advanced-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 25px;
}
.advanced-btn a {
	padding-left: 20px;
	padding-right: 80px;
}
/* advanced bottom  */
.advanced-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 55px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.single-advanced {
	-webkit-filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.08));
	filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.08));
}
.single-advanced a {
	display: block;
	text-align: center;
	border-radius: 0 52px;
	background: #FFF;
	overflow: hidden;
}
.single-advanced a img {
	display: block;
	width: 100%;
	height: 290px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 30px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.single-advanced a h3 {
	font-weight: bold;
	font-size: 25px;
	color: #124986;
	margin-bottom: 5px;
	padding: 0 10px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.single-advanced a:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.single-advanced a:hover h3 {
	color: #0078b1;
}
.single-advanced a p {
	font-weight: normal;
	font-size: 17px;
	line-height: normal;
	color: #444;
	opacity: 0.6;
	padding: 0 10px;
	padding-bottom: 35px;
}
/* Video Section ------------ */
.video-bg {
	background: url('images/videoBg.jpg') no-repeat;
	background-size: cover;
	background-position: center;
	height: 650px;
	border-radius: 100px 0;
	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;
}
/* Our Specialties Section  --------------- */
.our-specialist-sec {
	padding: 100px 0 150px 0;
	border-radius: 200px 0px;
	background: #124986;
}
.our-sp-head {
	text-align: center;
	margin-bottom: 80px;
}
.our-sp-head p {
	font-weight: normal;
	font-size: 21px;
	line-height: 29px;
	color: #fff;
	margin-top: 20px;
}
.our-specialist {
	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;
	gap: 30px;
}
.single-spcial-wrp {
	max-width: 395px;
	width: 100%;
}
.single-special {
	position: relative;
	height: 520px;
	border-radius: 50px 10px;
	overflow: hidden;
	z-index: 2;
	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;
	text-align: center;
	width: 100%;
}
.single-special::after {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 360px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 56, 103, 0)), to(#093567));
	background: -o-linear-gradient(rgba(8, 56, 103, 0) 0%, #093567 100%);
	background: linear-gradient(rgba(8, 56, 103, 0) 0%, #093567 100%);
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.first-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.first-img img {
	width: 100%;
	display: block;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
/* hover image  */
.hover-img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 40px 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.single-special:hover {
	background: #FFF;
}
.single-special:hover .text {
	background: #093567;
}
.single-special:hover::after {
	opacity: 0;
}
.single-special:hover .hover-img {
	opacity: 1;
	visibility: visible;
}
.single-special:hover .first-img {
	opacity: 0;
	visibility: hidden;
}
.single-special .text {
	padding: 25px 0;
	border-radius: 50px 10px 47px 6px;
	width: 100%;
	margin: 8px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.single-special h3 {
	font-weight: normal;
	font-size: 25.43px;
	line-height: normal;
	color: #fff;
}
.single-special p {
	font-weight: normal;
	font-size: 19.56px;
	line-height: normal;
	color: #fff;
	margin-top: 5px;
}
/* Finding the Best Section ------------ */
.finding-the {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 65px;
}
/* left  */
.finding-the .left {
	min-width: 660px;
	border-radius: 0 248px;
	overflow: hidden;
	border: 2px solid #fff;
	background: #134A86;
	background: linear-gradient(90deg, rgba(19,74,134,1) 12%, rgba(255,255,255,1) 79%);
}
.finding-the .left img {
	display: block;
	margin-right: -20px;
	margin-left: 20px;
}
/* right  */
.finding-the .right h2  {
	color: #124986;
	margin-bottom: 50px;
}
.finding-the .right .text {
	margin-bottom: 50px;
	padding-left: 23px;
	border-left: 3px solid #124986;
}
.finding-the .right p {
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	color: #444;
}
.finding-the .right p + p {
	margin-top: 40px;
}
/* Find a Provider Section --------- */
.find-provider-sec {
	position: relative;
	text-align: center;
}
.find-provider {
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	max-width: 950px;
	width: 100%;
	margin: auto;
}
.find-provider p {
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	color: #444;
	margin: 50px 0;
}
.find-provider-sec img {
	display: block;
}
/* Seminars Section  ------------ */
.seminars-sec {
	position: relative;
	z-index: 2;
}
.seminars-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/seminarBg.png') no-repeat;
	background-position: bottom right;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}
.seminar-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 84px;
}
/* left  */
.seminar-left img {
	display: block;
}
/* right  */
.seminar-right {
	margin-top: 30px;
}
.seminar-right h2 {
	position: relative;
	padding-top: 100px;
	margin-bottom: 30px;
}
.seminar-right h2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 69px;
	height: 66px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -486px left 0;
}
.seminar-right p {
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	color: #444;
	max-width: 495px;
	width: 100%;
	margin-bottom: 50px;
	padding-left: 28px;
	border-left: 3px solid #0D4A87;
}
/* Home Review Section ---------- */
.home-review {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}
.home-review > div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
}
/* left  */
.home-review-left {
	padding: 50px 130px 50px 270px;
}
.home-single-review .star {
	position: relative;
	padding-top: 55px;
	display: block;
	margin-bottom: 20px;
}
.home-single-review .star::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 41px;
	height: 41px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -155px left 0;
}
.home-single-review .text {
	padding-left: 33px;
	border-left: 3px solid #FFF;
	margin-bottom: 50px;
}
.home-single-review .text p {
	font-weight: normal;
	font-size: 22px;
	line-height: 40px;
	color: #fff;
}
.home-single-review .name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}
.home-single-review .thum {
	width: 72px;
	height: 72px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -264px left -456px;
	padding: 10px;
}
.home-single-review .thum img {
	width: 56px;
	height: 56px;
	border-radius: 100%;
}
.home-single-review .name span {
	font-weight: normal;
	font-size: 27px;
	line-height: normal;
	color: #fff;
}
.home-single-review .name span span {
	font-weight: normal;
	font-size: 18px;
	opacity: 0.66;
	display: block;
	margin-top: 3px;
}
/* home review arrows  */
.home-review-left .slick-next, .home-review-left .slick-prev {
	position: absolute;
	z-index: 99;
	bottom: 20px;
	right: 260px;
	font-size: 0;
	width: 23px;
	height: 20px;
	background: #124986 url(images/sp.svg) no-repeat;
	background-position: top -72px left -379px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
section.home-review-sec {
	border-radius: 200px 0px 200px 0px;
	background: #124986;
}
.home-review-left .slick-prev {
	right: 215px;
	background-position: top -72px left -445px;
}
.home-review-left .slick-next:hover,
.home-review-left .slick-prev:hover {
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}
/* right  */
.home-single-review-right {
	border-radius: 0px 0px 200px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	height: 700px;
	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;
}
/* home review right  */
.home-review-right .slick-prev, 
.home-review-right .slick-next {
	position: absolute;
	bottom: 0;
	font-size: 0;
	width: 70px;
	height: 70px;
	z-index: 99;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	background: #c6eafb url('images/sp.svg') no-repeat;
}
.home-review-right .slick-prev {
	left: 0;
	background-position: top -46px left -131px;
}
.home-review-right .slick-next {
	left: 70px;
	background-position: top -46px left -187px;
}
.home-review-right .slick-prev:hover, 
.home-review-right .slick-next:hover {
	background-color: #FAA634
}
/* Wanting To Connect Section ----------- */
.wanting-to {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 60px;
}
/* left  */
.wanting-left {
	width: 100%;
	height: 810px;
	background: url('images/waingingBg.png') no-repeat;
	background-size: contain;
	background-position: left center;
}
/* right  */
.wanting-right {
	max-width: 580px;
	width: 100%;
}
.wanting-right .heading {
	color: #124986;
}
.wanting-right .heading span {
	color: #000000;
}
.wanting-right .pera {
	font-weight: normal;
	font-size: 25px;
	line-height: 30px;
	color: #444;
	margin: 28px 0 50px 0;
}
/* Which is right for you Section  */
.which-for {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 28px 37%;
	grid-template-columns: 1fr 37%;
	gap: 28px;
}
/* left  */
.which-for-left {
	border-radius: 200px 0px;
	background: #124986;
	padding: 115px 20px;
}
.which-for-left > div {
	max-width: 765px;
	width: 100%;
	margin: auto;
}
.which-for-left h2 {
	margin-bottom: 50px;
}
.which-for-left p {
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	padding-left: 28px;
	border-left: 3px solid #FFFFFF;
}
/* right  */
.which-for-right {
	background: url('images/whichRightBg.png') no-repeat;
	background-size: cover;
	border-radius: 0px 200px;
}
/* News and Research Section ------------- */
.news-head {
	margin-bottom: 70px;
	text-align: center;
}
.news-head h2 {
	color: #124986;
	margin-bottom: 20px;
}
.news-head h2 span {
	color: #000000;
	margin-bottom: 15px;
}
.news-head p {
	font-weight: normal;
	font-size: 22px;
	line-height: 30px;
	color: #444;
}
.news-wrap {
	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;
	gap: 18px;
}
.single-news {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 405px;
	width: 100%;
}
.single-news .news-thum img {
	height: 290px;
	border-radius: 0 50px 0 0;
	display: block;
}
.single-news .news-text {
	background: #fff;
	-webkit-filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.08));
	filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.08));
	padding: 25px 28px 35px 28px;
	border-bottom-left-radius: 50px;
}
.single-news .news-text h3 a{
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	color: #124986;
	margin-bottom: 20px;
	min-height: 85px;
}
.single-news .news-text p {
	font-weight: normal;
	font-size: 19px;
	line-height: 30px;
	color: #444;
	opacity: 0.8;
	margin-bottom: 30px;
	min-height: 85px;
}
.single-news .news-text a {
	font-weight: normal;
	font-size: 22px;
	line-height: normal;
	color: #124986;
	-webkit-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.single-news .news-text a:hover {
	color: #C6EAFB;
}
.news-btn {
	margin-top: 70px;
	text-align: center;
}
/* Our Locations Section -------------- */
.main-inner-sec.sec-p {
	padding-bottom: 0px;
}
.our-location-sec {
	position: relative;
	z-index: 99;
	background: #FFFF;
	padding: 200px 0 100px 0;
}
.our-location-sec::before {
	content: '';
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	height: calc(100% - 100px);
	background: #eceef3;
	z-index: -1;
	border-radius: 0px 200px 0px 0px;
}
.our-location-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: -20%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #eceef3;
}




.our-loca-head {
	margin-bottom: 65px;
	text-align: center;
}
.our-loca-head h2 {
	color: #124986;
}
.our-loca-head h2 span {
	color: #000000;
}
.our-location {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 130px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.our-location-left {
	max-width: 550px;
	width: 100%;
}
.our-location-left ul li {
	margin-bottom: 8px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.our-location-left ul li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}
.our-location-left ul li > span {
	font-weight: bold;
	font-size: 28px;
	line-height: normal;
	color: #124986;
	margin-bottom: 15px;
	display: block;
}
.our-location-left ul li a, .our-location-left ul li span.address {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444;
	position: relative;
	padding-left: 28px;
	margin-bottom: 0px;
	display: unset;
}
.our-location-left ul li a:hover, .our-location-left ul li span.address:hover {
	color: #124986;
}
.our-location-left ul li a::before, .our-location-left ul li span.address::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 22px;
	background: url('images/sp.svg') no-repeat;
	background-position: top 0 left -64px;
}
.our-location-left ul li a:last-child::before, .our-location-left ul li span.address:last-child::before {
	background-position: top 0 left -124px;
}
/*.our-location-left ul li a:hover::before, .our-location-left ul li span.address:hover::before {
-webkit-filter: invert(1);
filter: invert(1);
}*/
/* right  */
.contact-us-map{
	overflow: hidden;
}
.contact-us-map iframe{
	margin-top:-60px;
}
.our-location-right {
	width: 50%;
	overflow: hidden;
    border-radius: 20px;
}
.our-location-right iframe{
	margin-top:-60px;
}
.our-location-right iframe {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	border: 0px;
}
/* Footer Section -------------- */
.main-footer {
	position: relative;
	z-index: 9;
	border-radius: 200px 0px;
	background: #124986;
	padding: 110px 0;
}
.main-footer .container {
	max-width: 1300px;
}
.footer-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 70px;
}
/* footer one  */
.single-footer.one {
	position: relative;
	padding-bottom: 150px;
	-ms-flex-item-align: baseline;
	align-self: baseline;
	min-width: 220px;
}
.single-footer.one::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 135px;
	height: 122px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -618px left -242px;
}
.single-footer.two {
	min-width: 255px;
}
.single-footer h5 {
	font-weight: bold;
	font-size: 26px;
	line-height: normal;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 60px;
	padding-bottom: 15px;
	position: relative;
}
.single-footer h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 37px;
	height: 3.8px;
	background: #C6EAFB;
}
.single-footer ul li a {
	font-weight: normal;
	font-size: 19px;
	line-height: 40px;
	color: #fff;
}
.single-footer ul li a:hover {
	color: #C6EAFB;
}
/* footer three  */
.single-footer.three {
	min-width: 185px;
}
/* single footer four  */
.single-footer.four {
	max-width: 416px;
	width: 100%;
}
.single-footer.four .contact li a {
	position: relative;
	padding-left: 37px;
}
.single-footer.four .contact li a::before {
	content: '';
	position: absolute;
	top: 11px;
	left: 0;
	width: 30px;
	height: 30px;
	background: url('images/sp.svg') no-repeat;
	background-position: top 0 left 0;
}
.single-footer.four .contact li.loc a::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 30px;
    height: 30px;
    background: url(images/sp.svg) no-repeat;
    background-position: top 0px left -183px;
}

.single-footer.four .contact .call {
	font-size: 32px;
	line-height: 47px;
}
.single-footer.four .default-btn {
	margin: 35px 0;
}
/* footer accordion  */
.accordion-body {
	display: none;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	margin: 15px 0;
}
.single-footer .accordion-title {
	font-weight: normal;
	font-size: 20px;
	line-height: 42px;
	color: #fff;
	cursor: pointer;
	padding-bottom: 10px;
	padding-right: 22px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgb(255 255 255 / 30%);
	position: relative;
}
.single-footer .accordion-title::after {
	content: '';
	position: absolute;
	top: 14px;
	right: 0;
	width: 8px;
	height: 8px;
	border-left: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.single-footer .accordion-title.active::after {
	-webkit-transform: rotate(140deg);
	-ms-transform: rotate(140deg);
	transform: rotate(140deg);
	top: 19px;
}
.single-footer .accordion-body ul li {
	padding-bottom: 7px;
}
.single-footer .accordion-body ul li a {
	padding-left: 30px;
	position: relative;
	line-height: 26px;
}
.single-footer .accordion-body ul li a::before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 30px;
	height: 30px;
	background: url('images/sp.svg') no-repeat;
}
.single-footer .accordion-body ul li .loca::before {
	background-position: top 0 left -186px;
}
.single-footer .accordion-body ul li .call::before {
	background-position: top 0 left -246px;
}
/* footer social link  */
.footer-social {
	position: relative;
	z-index: 2;
	margin-top: 105px;
	text-align: center;
}
.footer-social::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 21px;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgb(255 255 255 / 20%);
}
.footer-social ul {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 14px;
	background: #124986;
	padding: 0 60px;
}
.footer-social ul li a {
	width: 45px;
	height: 45px;
	display: block;
	background: url('images/sp.svg') no-repeat;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.footer-social ul li button:hover {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.footer-social ul .face a {
	background-position: top -383px left 0;
}
.footer-social ul .yout a {
	background-position: top -383px left -88px;
}
.footer-social ul .insta a {
	background-position: top -383px left -174px;
}
.footer-social p {
	font-weight: normal;
	font-size: 20px;
	line-height: normal;
	color: #fff;
	margin-top: 50px;
}
/* About Page ------------------------------------ */
.inner-side-banner {
	position: relative;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 650px;
	border-radius: 0 0 200px 0;
	background-position: center;
}
.inner-side-banner.tinny-banner {
	max-width: 830px;
	margin: 0 auto;
}
.inner-side-banner .title-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 880px;
	width: 100%;
	border-radius: 0px 130px 0px 0px;
	background: rgb(18 73 134 / 75%);
	text-align: center;
}
.inner-side-banner .title {
	font-weight: bold;
	font-size: 70px;
	line-height: normal;
	color: #fff;
	display: block;
	padding: 0px 40px;
}
/* Main Inner ------------- */
.main-inner .h1 {
	font-weight: normal;
	font-size: 46px;
	line-height: normal;
	color: #124986;
	position: relative;
	padding-top: 70px;
	padding-bottom: 15px;
	margin-bottom: 60px;
	text-align: center;
}
.main-inner  h1.centerh1 {
	text-align: center;
	color: #124986;
	font-size: 40px;
	font-weight: 300;
}
.main-inner .h1 span {
	display: block;
	font-size: 34px;
	margin-top: 5px;
}
.main-inner .h1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -263px left -360px;
	right: 0;
	margin: auto;
}
.main-inner .h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 130px;
	height: 3px;
	background: #C6EAFB;
	right: 0;
	margin: auto;
}
.main-inner h2 {
	font-weight: normal;
	font-size: 40px;
	line-height: 1.5;
	color: #124986;
	padding-bottom: 14px;
	margin-bottom: 40px;
	position: relative;
	margin-top: 70px;
	text-align: center;
}
.main-inner h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #C6EAFB;
}
.main-inner h2::after {
	content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	background: #C6EAFB;
	bottom: -10px;
}
.main-inner h2 a {
	color: inherit;
}
.main-inner h2.small {
	font-family: Europa;
	font-weight: normal;
	font-size: 34px;
	line-height: 58px;
	text-align: left;
	color: #124986;
}
.main-inner h2.small:after{
	display: none;
}
.main-inner h3 {
	font-weight: normal;
	font-size: 29px;
	line-height: normal;
	color: #124986;
}
.main-inner h4 {
	font-weight: normal;
	font-size: 26px;
	line-height: normal;
	color: #124986;
}
.main-inner h5 {
	font-weight: normal;
	font-size: 22px;
	line-height: normal;
	color: #124986;
}
.main-inner.resources h3 {
	font-weight: normal;
	font-size: 34px;
	line-height: normal;
	color: #124986;
}
.main-inner.resources .inner-video {
	margin-bottom: 80px;
	max-height: 450px;
}
.main-inner iframe {
	width: 100%;
	height: auto;
	border: none;
	margin-bottom: 50px;
	aspect-ratio: 16/9;
}
.main-inner img,
.main-inner h3,
.main-inner p,
.main-inner ul,
.main-inner ol {
	margin-bottom: 30px;
}
.main-inner ul,
.main-inner ol {
	margin-left: 40px;
}
.main-inner .small-p {
	max-width: 628px;
	width: 100%;
	font-weight: normal;
	font-size: 13px;
	line-height: 20px;
	color: #444;
	margin-left: auto;
	margin-right: auto;
}
.main-inner p,
.main-inner p a,
.main-inner ul li,
.main-inner ul li a,
.main-inner ol li,
.main-inner ol li a {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444;
}
.main-inner p a,
.main-inner ul li a,
.main-inner ol li a {
	text-decoration: underline;
	color: #124986;
}
.main-inner ul li {
	list-style: square;
}
.main-inner ul ul {
	margin-bottom: 20px;
	margin-top: 20px;
}
.main-inner ul li::marker {
	color: #124986;
}
.main-inner ul ul li {
	list-style: circle;
}
.main-inner p a:hover,
.main-inner ul li a:hover,
.main-inner ol li a:hover {
	text-decoration: none;
}
.main-inner.contact a {
	text-decoration: none;
}
.main-inner.contact ul li a:hover, .main-inner.contact p a:hover {
    color: #204985;
	text-decoration: underline;
}
.main-inner .sidebar-gallery ul li a:hover {
    color: #C6EAFB;
}
.main-inner img {
	width: 100%;
	height: auto;
}
.main-inner img.alignnone, .main-inner img.alignleft, .main-inner img.alignright {
	border-radius: 20px;
}
/* blockquote  */
.main-inner blockquote {
	background: #fff;
	-webkit-filter: drop-shadow(0px 0px 30px rgba(13, 74, 135, 0.1));
	filter: drop-shadow(0px 0px 30px rgba(13, 74, 135, 0.1));
	margin: 50px 0;
	padding: 40px 65px;
	border-radius: 15px;
	border-left: 2px solid #124986;
	border-right: 2px solid #124986;
}
.main-inner blockquote p {
	margin-bottom: 0;
}
/* inner quot  */
.main-inner .quto {
	border-radius: 15px;
	background: #c6eafb;
	position: relative;
	z-index: 2;
	padding: 90px 87px;
	margin: 70px 0;
}
.main-inner .quto::before, 
.main-inner .quto::after {
	content: '';
	position: absolute;
	top: 7px;
	left: 7px;
	width: 73px;
	height: 73px;
	border-radius: 10px 0px 18px 0px;
	background: #fff url('images/sp.svg') no-repeat;
	background-position: top 26px left -412px;
}
.main-inner .quto::after {
	bottom: 7px;
	left: unset;
	top: unset;
	right: 7px;
	border-radius: 18px 0px 10px 0px;
	background-position: top 26px left -475px;
}
.main-inner .quto p {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #444;
	margin-bottom: 0;
}
/* inner video  */
.inner-video-caro {
	margin-bottom: 80px;
}
.inner-video {
	position: relative;
	z-index: 2;
	min-height: 450px;
	width: 100%;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 50px 0;
	border-radius: 20px;
	overflow: hidden;
	/* -webkit-filter: drop-shadow(0px 0px 30px rgba(13, 74, 135, 0.1)); */
	/* filter: drop-shadow(0px 0px 30px rgba(13, 74, 135, 0.1)); */
	/*  border: 1px solid #12498621;*/
}
.inner-video.btn-none {
	border-radius: 15px; 
}
.inner-video.btn-none::before,
.inner-video.btn-none::after {
	display: none;
}
.inner-video::before {
	content: '';
	position: absolute;
	width: 134px;
	height: 134px;
	background: #ffffff54;
	border-radius: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border: 1px solid #1249862e;
	transition: .3s;
}
.inner-video:hover::before {
	background: #fff;
}
.inner-video::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
	border-left: 25px solid #C6EAFB;
	border-radius: 3px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.inner-video:hover::after {
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}
/* inner video carousel arrows  */
.inner-video-caro .slick-arrow {
	position: absolute;
	z-index: 9;
	bottom: -30px;
	font-size: 0;
	width: 57px;
	height: 57px;
	border-radius: 28.5px;
	background: #124986 url('images/sp.svg') no-repeat;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.inner-video-caro .slick-arrow:hover {
	background-color: #C6EAFB;
}
.inner-video-caro .slick-prev {
	left: calc(50% - 65px);
	background-position: top -54px left -252px;
}
.inner-video-caro .slick-next {
	right: calc(50% - 65px);
	background-position: top -54px left -302px;
}
/* inner schedule  */
.inner-schedule {
	margin: 50px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.inner-schedule > div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
	border-radius: 20px;
	text-align: center;
	height: 255px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* left  */
.inner-schedule .left {
	background: url('images/inner/innerSchBg.png') no-repeat;
	background-size: cover;
	background-position: center;
}
.inner-schedule .right a,
.inner-schedule .left .scd {
	font-weight: bold;
	font-size: 32px;
	line-height: 32px;
	text-align: center;
	color: #fff;
	position: relative;
	max-width: 190px;
	width: 100%;
	margin: auto;
	padding-top: 80px;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.inner-schedule .right a::before,
.inner-schedule .left .scd::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 52px;
	height: 52px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -153px left -185px;
}
.inner-schedule .left .scd:hover {
	color: #124986;
}
/* right  */
.inner-schedule .right {
	background: url('images/inner/InSchRightBg.png') no-repeat;
	background-size: cover;
	background-position: center;
}
.inner-schedule .right a {
	max-width: unset;
}
.inner-schedule .right a:hover {
	color: #C6EAFB;
}
.inner-schedule .right a::before {
	background-position: top -153px left -283px;
	width: 34px;
	height: 58px;
}
/* inner button wrap  */
.inner-btn-wrp {
	margin: 70px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	justify-content: flex-start;
}
/* inner dr sadek -- */
.main-inner .inner-dr-sadek-are,
.inner-dr-sadek-are {
	background: #eceef3;
	padding: 95px 0;
	margin-top: 90px;
}
.main-inner .inner-dr-sadek,
.inner-dr-sadek {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 22% 75px 1fr;
	grid-template-columns: 22% 1fr;
	gap: 75px;
}
/* left  */
.main-inner .inner-dr-sadek .img,
.inner-dr-sadek .img {
	border-radius: 20px 100px;
	background: #124986;
	-ms-flex-item-align: baseline;
	align-self: baseline;
	text-align: center;
	overflow: hidden;
}
.main-inner .inner-dr-sadek .img img,
.inner-dr-sadek .img img {
	display: block;
	margin: 0;
}
/* right  */
.main-inner .inner-dr-sadek p,
.inner-dr-sadek p {
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: #444;
}
.main-inner .inner-dr-sadek p:last-child,
.inner-dr-sadek p:last-child {
	margin-bottom: 0;
}
/* inner blog   */
/*img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
	border-radius: 20px 20px 20px 100px;
}*/
.inner-blog-bg {
	background: #FFF;
	padding-top: 90px;
}
.inner-blog .heading {
	color: #124986;
	text-align: center;
	display: block;
	margin-bottom: 15px;
}
.main-inner .inner-blog p,
.inner-blog p {
	font-weight: normal;
	font-size: 25px;
	line-height: 30px;
	color: #444;
	text-align: center;
	margin: 0;
}
.inner-blog-wrp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	max-width: 1356px;
	width: 100%;
	margin: 80px auto;
}
.single-inner-blog {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: block;
}
.single-inner-blog .img {
	overflow: hidden;
	margin-bottom: 10px;
	border-radius: 100px 20px;
}
.main-inner .single-inner-blog img,
.single-inner-blog img {
	height: 460px;
	display: block;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
	margin: 0;
}
.single-inner-blog:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.single-inner-blog:nth-child(2n) .img {
	border-radius: 20px 100px;
}
.single-inner-blog .text {
	border-radius: 20px 100px;
	background: #c6eafb;
	padding: 120px 70px;
}
.single-inner-blog:nth-child(2n) .text {
	border-radius: 100px 20px;
}
.single-inner-blog h3 {
	font-weight: normal;
	font-size: 30px;
	line-height: 45px;
	color: #444;
	margin-bottom: 50px;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
}
.single-inner-blog:hover h3 {
	color: #124986;
}
.main-inner .single-inner-blog p,
.single-inner-blog p {
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	text-align: left;
	color: #444;
	margin: 0;
}
/* Inner Main Side Bar ------ */
.mobile-top-menu {
	display: none;
}
.main-inner .sidebar-gallery {
	position: fixed;
	z-index: 1;
	top: 151px;
	left: calc((100vw - 1260px) / 2 - 330px);
	max-width: 370px;
	width: 100%;
	border-radius: 0px 20px 20px 0px;
	background: rgb(18 73 134 / 88%);
	padding: 50px 0 50px;
	overflow: auto;
	min-height: max-content;
}
.main-inner.contact .sidebar-gallery,
.main-inner.contact .sidebar-right {
	top: 230px;
}
.main-inner .sidebar-gallery .team {
	max-width: 340px;
	width: 100%;
	border-radius: 0px 35px 35px 0px;
	background: rgb(255 255 255 / 23%);
	padding: 15px 25px 15px 50px;
	font-weight: bold;
	font-size: 18px;
	line-height: 40px;
	color: #fff;
	text-transform: uppercase;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-bottom: 40px;
	display: block;
}
.main-inner .sidebar-gallery .team a {
	color: #fff;
}
/*.main-inner .sidebar-gallery .team:hover {
background: #C6EAFB;
}*/
.main-inner .sidebar-gallery ul {
	margin: 0;
}
.main-inner .sidebar-gallery > ul {
	overflow-y: auto;
	max-height: 690px;
}
.main-inner .sidebar-gallery ul li {
	list-style: none;
	padding: 3px 0px;
}
.main-inner .sidebar-gallery .current_page_item a {
	font-weight: bold;
	background: rgb(255 255 255 / 23%);
}
.main-inner .sidebar-gallery .current_page_item ul li a {
	background: none;
}
.main-inner .sidebar-gallery ul li a {
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 5px 15px 5px 50px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.main-inner .sidebar-gallery ul ul li a {
	padding-left: 0px;
}
.main-inner .sidebar-gallery ul li a:hover {
	background: rgb(255 255 255 / 23%);
}
/* Resources  */
.main-inner .sidebar-gallery .team {
	margin-bottom: 25px;
	position: relative;
}
.main-inner .sidebar-gallery ul ul {
	margin-left: 80px;
}
.main-inner .sidebar-gallery ul li.current-menu-item ul ,
.main-inner .sidebar-gallery ul li.current_page_parent ul {
	display: block;
}
.main-inner.resources .sidebar-gallery ul ul li {
	list-style: disc;
}
.main-inner.resources .sidebar-gallery ul ul li::marker {
	color: #FFF;
}
.main-inner.resources .sidebar-gallery ul li a {
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 16px;
}
.main-inner.resources .sidebar-gallery ul ul li a {
	padding-left: 0;
}
/* right  */
.sidebar-right {
	position: fixed;
	z-index: 1;
	top: 280px;
	right: calc((100vw - 1260px) / 2 - 330px);
	width: 300px;
}
.main-inner.resources .sidebar-right {
	top: 357px;
}
.single-bar-right {
	border-radius: 10px 0px 0px 10px;
	background: #124986;
	overflow: hidden;
}
.single-bar-right a, .single-bar-right button {
	position: relative;
	padding: 32px 15px 28px 70px;
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	text-transform: uppercase;
	width: 100%;
	text-align: left;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.single-bar-right a:before, 
.single-bar-right button:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	width: 30px;
	height: 59px;
	background: url('images/sp.svg') no-repeat;
	background-position: top -261px left 0;
	transition: .3s;
	transform: scale(.6);
}
.single-bar-right a:hover:before, 
.single-bar-right button:hover:before {
	left: 0px;
}
.single-bar-right.call-single-bar a::before {
	filter: brightness(100);
}
.single-bar-right a:hover, 
.single-bar-right button:hover {
	background: #C6EAFB;
}
.single-bar-right a span, 
.single-bar-right button span {
	display: block;
	font-weight: normal;
	font-size: 20px;
	line-height: 19.2px;
	color: rgb(255 255 255 / 56%);
	margin-bottom: 8px;
}
.sidebar-gallery ul.menu > li:first-child {
	display: none;
}
.single-bar-right.meet {
	background: #C6EAFB;
}
.single-bar-right.sch {
	background: #FFFFFF;
	border: 1px solid rgba(18, 73, 134, 0.21);
	border-right: 0;
}
.single-bar-right .meet {
	color: #124986;
}
.single-bar-right .meet span {
	color: rgb(18 73 134 / 56%);
}
.single-bar-right .sch {
	color: #124986;
}
.single-bar-right .sch span {
	color: rgb(18 73 134 / 56%);
}
.single-bar-right.call-single-bar a:hover {
    color: #124986;
}
.single-bar-right.call-single-bar a:hover span {
	color: rgb(18 73 134 / 56%) !important;
}
.single-bar-right.call-single-bar a:hover::before {
     filter: none;
}
/* Dr Ragui Sadek Page ------------------------ */
.single-banner.inner-dr {
	padding-left: 130px;
	padding-top: 125px;
}
.single-banner.inner-dr .dr-sadek {
	margin-top: 80px;
	max-width: 550px;
	width: 100%;
	padding-bottom: 80px;
}
.single-banner.inner-dr .dr-title {
	line-height: 1.2;
	margin-bottom: 50px;
	display: block;
}
/* inner Awards --- */
.main-inner .inner-award {
	margin-bottom: 80px;
}
.main-inner .inner-award h2 {
	font-weight: normal;
	font-size: 50px;
	line-height: normal;
	color: #124986;
	text-align: center;
	margin-bottom: 40px;
}
.main-inner .inner-award h2::after {
	display: none;
}
.main-inner .inner-award img {
	margin-bottom: 0;
}
/* inner five star  */
.inner-five-str-bg {
	background: #FFF;
}
.inner-five-star {
	max-width: 880px;
	width: 100%;
	padding: 0 40px;
	margin: 50px auto;
}
.main-inner .single-five-star {
	border-radius: 15px;
	background: #c6eafb;
	padding: 125px 90px;
	text-align: center;
	position: relative;
}
.main-inner .single-five-star::before {
	content: '';
	position: absolute;
	width: 128px;
	height: 128px;
	border-radius: 10px 0px 18px 0px;
	background: #fff url('images/sp.svg') no-repeat;
	background-position: top -22px left -30px;
	top: 10px;
	left: 10px;
}
.main-inner .single-five-star::after {
	content: '';
	position: absolute;
	background: #fff url('images/sp.svg') no-repeat;
	background-position: top 24px left -348px;
	bottom: 5px;
	right: 5px;
	width: 65.63px;
	height: 65.63px;
	border-radius: 18px 0px 12px 0px;
}
.main-inner .single-five-star .title {
	font-weight: bold;
	font-size: 23px;
	line-height: 30px;
	color: #124986;
	text-transform: uppercase;
	margin: 10px 0 20px 0;
	display: block;
}
.main-inner .single-five-star .star {
	color: #F1C40F;
	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;
	gap: 10px;
}
.main-inner .single-five-star .star span {
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	color: #124986;
}
.main-inner .single-five-star p, .main-inner .single-five-star span.c-name {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #124986;
	margin: 0 0 20px 0;
}
/* five star arrows  */
.inner-five-star .slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 28px;
	height: 55px;
	background: url('images/sp.svg') no-repeat;
	font-size: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.inner-five-star .slick-arrow:hover {
	-webkit-filter: brightness(0);
	filter: brightness(0);
}
.inner-five-star .slick-prev {
	left: 0;
	background-position: top -264px left 0;
}
.inner-five-star .slick-next {
	right: 0;
	background-position: top -264px left -75px;
}
/* Main inner Page --------- */
.title-bg.inner {
	padding: 140px 0;
	border-radius: 0px 200px 0px 0px;
}
.title-bg.inner .title span {
	color: #C6EAFB;
}
/* image list  --- */
.main-inner .image-list {
	margin: 50px 0;
}
.main-inner .image-list li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgb(112 112 112 / 50%);
}
.main-inner .image-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.main-inner .image-list li a {
	font-weight: normal;
	font-size: 23px;
	line-height: normal;
	color: #124986;
	margin-bottom: 25px;
	text-decoration: none;
	display: block;
}
.main-inner .image-list li a:hover {
	color: #0b3447;
    text-decoration: underline;
}
.main-inner .image-list li img {
	min-width: 190px;
	height: 196px;
	border-radius: 10px 10px 10px 60px;
	background: #c6eafb;
	margin-bottom: 0;
}
.main-inner .image-list li div p {
	margin-bottom: 0;
}
/* Testimonial Page ------------- */
.inner-banner-two-sec {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 9;
	border-radius: 0px 0px 100px 100px;
	overflow: hidden;
	padding: 160px 0;
}
.inner-banner-two-sec::after {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background: rgb(18 73 134 / 37%);
}
.inner-banner-tow {
	text-align: center;
}
.inner-banner-tow .title {
	font-weight: bold;
	font-size: 90px;
	line-height: normal;
	color: #fff;
}
/* Testimonial Page ---------------- */
.main-inner .video-testi-rea {
	margin-bottom: 100px;
	max-width: 1685px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.main-inner .video-testi-rea h2 {
	font-size: 43px;
	text-align: center;
}
.main-inner .video-testi-rea h2::after {
	display: none;
}
.main-inner .video-testi-rea p {
	text-align: center;
	margin: 30px auto 1px;
	max-width: 1000px;
}
.vide-testi-wrap {
	margin-top: 50px;
	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;
	gap: 90px 50px;
}
.vide-testi-wrap .inner-video {
	-webkit-box-flex: calc(50% - 25px);
	-ms-flex: calc(50% - 25px);
	flex: calc(50% - 25px);
	margin: 0;
	border-radius: 15px;
	max-width: 800px;
}
/* text testimonial  */
.text-testi {
	max-width: 1425px;
	width: 100%;
	margin: 100px auto;
	padding-left: 15px;
	padding-right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 100px 80px;
}
.main-inner .single-text-testi {
	position: relative;
	-webkit-box-flex: calc(50% - 40px);
	-ms-flex: calc(50% - 40px);
	flex: calc(50% - 40px);
	border-radius: 0px 60px 202px 0px;
	background-image: -webkit-gradient(linear, right top, left top, from(#e9f2fb), to(#fff));
	background-image: -o-linear-gradient(right, #e9f2fb 0%, #fff 100%);
	background-image: linear-gradient(to left, #e9f2fb 0%, #fff 100%);
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 35px 250px;
	grid-template-columns: 1fr 250px;
	gap: 35px;
	height: 500px;
	padding-right: 70px;
}
.main-inner .single-text-testi::before {
	content: '';
	position: absolute;
	top: 14px;
	right: 14px;
	width: 65px;
	height: 65px;
	border-radius: 100%;
	background: #FFF url('images/sp.svg') no-repeat;
	background-position: top 23px left -478px;
}
.single-text-testi.three {
	max-width: 1070px;
	margin: auto;
	-ms-grid-columns: 1fr 380px;
	grid-template-columns: 1fr 380px;
	height: auto;
}
.main-inner .single-text-testi .img img {
	width: auto;
	height: auto;
	margin-bottom: 0;
}
.main-inner .single-text-testi .text {
	padding-top: 95px;
}
.main-inner .single-text-testi .text p {
	font-weight: normal;
	font-style: italic;
	font-size: 18px;
	line-height: 26px;
	color: #444;
	margin-bottom: 15px;
}
.main-inner .single-text-testi .text span {
	font-weight: bold;
	font-size: 18px;
	line-height: 26px;
	color: #444;
	display: block;
	margin-bottom: 25px;
}
/* Listen  ------- */
.main-inner .listen-area p {
	margin-bottom: 0;
}
.main-inner .listen-area p:last-child iframe {
	margin-bottom: 0;
}
/* Resources Page ------------------------ */

/* Blog Page ---------------------- */
.blog-sec {
	max-width: 1340px;
	width: 100%;
	margin: auto;
}
.blog-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 80px;
}
.single-blog {
	-webkit-box-flex: calc(50% - 40px);
	-ms-flex: calc(50% - 40px);
	flex: calc(50% - 40px);
	max-width: 630px;
	width: 100%;
	margin: 0;
	background: #fff;
	-webkit-box-shadow: 0px 0px 30px rgba(13, 74, 135, 0.1);
	box-shadow: 0px 0px 30px rgba(13, 74, 135, 0.1);
	border-bottom: 2px solid #124986;
	overflow: hidden;
	border-radius: 100px 20px 111px 20px;
}
.single-blog:nth-child(odd) {
	border-radius: 20px 100px 20px 111px;
	overflow: hidden;
}
.single-blog .thum {
	overflow: hidden;
	border-radius: 100px 20px;
}
.single-blog:nth-child(odd) .thum {
	border-radius: 20px 100px;
}
.single-blog .thum img {
	height: 390px;
	width: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: .3s ease-in;
	-o-transition: .3s ease-in;
	transition: .3s ease-in;
	border-radius: 100px 20px;
}
.single-blog:hover .thum img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.single-blog:nth-child(odd) .thum img {
	border-radius: 20px 100px;
}
.single-blog .text {
	padding: 65px 65px 100px;
}
.single-blog .text span {
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	color: #045b85;
	display: block;
	margin-bottom: 15px;
}
.single-blog .text h2 {
	font-weight: normal;
	font-size: 22px;
	line-height: 34px;
	color: #124986;
	min-height: 60px;
	margin-bottom: 20px;
}
.single-blog .text p {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444;
}
/* blog navigation  */
#pagination-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px;
	margin-top: 80px;
}
.customPagination {
	width: 44px;
	height: 44px;
	background: #C6EAFB;
	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;
	border-radius: 50%;
	font-weight: bold;
	font-size: 16px;
	line-height: 19.2px;
	color: #fff;
	cursor: pointer;
}
/* Contact Page --------------- */
.inner-location {
	margin-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 25px 35px;
}

.main-inner .single-location:last-child {
    max-width: 48%;
}

.main-inner .single-location {
	border-radius: 15px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 30px rgba(13, 74, 135, 0.1);
	box-shadow: 0px 0px 30px rgba(13, 74, 135, 0.1);
	/* filter: drop-shadow(0px 0px 30px rgba(13, 74, 135, 0.1)); */
	padding: 33px 28px;
	-webkit-box-flex: calc(50% - 18px);
	-ms-flex: calc(50% - 18px);
	flex: calc(50% - 18px);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	border-right: 2px solid #124986;
	border-left: 2px solid #124986;
}
.main-inner .single-location.main {
	background: #C6EAFB;
}
.main-inner .single-location .loca-head {
	font-weight: bold;
	font-size: 27px;
	line-height: normal;
	color: #124986;
	margin-bottom: 15px;
}
.main-inner .single-location ul {
	margin: 0;
}
.main-inner .single-location ul li {
	padding: 0;
	list-style: none;
}
.main-inner .single-location ul li span,
.main-inner .single-location ul li a {
	display: inline-block;
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444;
	text-decoration: none;
	position: relative;
	padding-left: 30px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.main-inner .single-location ul li span:hover,
.main-inner .single-location ul li a:hover {
	color: #124986;
	text-decoration:underline;
}
.main-inner .single-location ul li span::before,
.main-inner .single-location ul li a::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 22px;
	height: 23px;
	background: url('images/sp.svg') no-repeat;
}
.main-inner .single-location .location::before {
	background-position: top 0 left -62px;
}
.main-inner .single-location .call::before {
	background-position: top 0 left -123px;
}
/* contact form -- */
.contact-form {
	margin: 50px 0 80px 0;
}
.contact-form form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 22px 33px;
}
.single-input {
	-webkit-box-flex: calc(50% - 23px);
	-ms-flex: calc(50% - 23px);
	flex: calc(50% - 23px);
}
.single-input.full-width {
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	width: 100%;
}
.single-input select,
.single-input textarea,
.single-input input {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444;
	width: 100%;
	height: 76px;
	padding: 22px 15px 22px 40px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(13, 74, 135, 0.25);
	outline: none;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.single-input.arrow {
	position: relative;
}
.single-input.arrow::after {
	content: '';
	position: absolute;
	top: 33px;
	right: 30px;
	width: 0px;
	height: 0;
	border: 10px solid transparent;
	border-top-color: #000000;
	border-top-width: 12px;
	pointer-events: none;
}
.single-input select {
	-webkit-appearance: none;
	border-radius: 22px;
	padding-right: 50px;
	cursor: pointer;
}
.single-input textarea {
	resize: none;
	height: 180px;
}
.single-input textarea::-webkit-input-placeholder, .single-input input::-webkit-input-placeholder {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0,.62);

}
.single-input textarea::-moz-placeholder, .single-input input::-moz-placeholder {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0,.62);

}
.single-input textarea:-ms-input-placeholder, .single-input input:-ms-input-placeholder {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0,.62);

}
.single-input textarea::-ms-input-placeholder, .single-input input::-ms-input-placeholder {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0,.62);

}
.single-input textarea::placeholder,
.single-input select,
.single-input input::placeholder {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0,.62);

}
.single-input select:focus,
.single-input textarea:focus,
.single-input input:focus {
	border-color: #C6EAFB;
}
.submin-btn {
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	color: #fff;
	border-radius: 22px;
	background: #124986;
	padding: 30px 80px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-left: auto;
	margin-top: 5px;
}
.submin-btn:hover {
	background: #C6EAFB;
}
/* contact gallery  */
.contact-gallery-bg {
	position: relative;
	z-index: 99;
	background: #FFF;
	padding: 50px 0;
	margin-bottom: -110px;
	padding-bottom: 100px;
}
.contact-gallery {
	max-width: 1200px;
	width: 100%;
	margin: 0px auto;
}
.main-inner .contact-gallery > div img {
	display: block;
	width: 100%;
	height: 675px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 20px;
	margin: 0;
}
/* contact gallery dots  */
.main-inner .contact-gallery .slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 12px;
	position: absolute;
	bottom: 65px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.main-inner .contact-gallery .slick-dots li {
	list-style: none;
}
.main-inner .contact-gallery .slick-dots li button {
	display: block;
	width: 78px;
	height: 13px;
	border-radius: 6.5px;
	background: #fff;
	border: 1px solid #124986;
	font-size: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.main-inner .contact-gallery .slick-dots li.slick-active button {
	background: #C6EAFB;
	border-color: transparent;
}
.nf-form-content .list-select-wrap .nf-field-element>div, .nf-form-content input:not([type=button]), .nf-form-content textarea {
	font-weight: normal!important;
	font-size: 18px!important;
	line-height: 30px!important;
	color: #000!important;
	width: 100%!important;
	height: 76px!important;
	padding: 22px 15px 22px 40px!important;
	border-radius: 22px!important;
	background: #fff!important;
	border: 1px solid rgba(13, 74, 135, 0.25)!important;
	outline: none!important;
	-webkit-transition: .3s!important;
	-o-transition: .3s!important;
	transition: .3s!important;
}
.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
	background: #124986!important;
	color: #fff!important;
	width: 150px!important;
	padding: 22px 15px 22px 15px!important;
}
hundefined {
	display: none;
}
.nf-form-content label {
	font-size: 18px;
	line-height: 20px;
	font-weight: normal!important;
	color: #124986a6!important;
}
.nf-form-content {
	padding: 5px;
	margin: 40px auto 0!important;
}
.nf-field-label .nf-label-span, .nf-field-label label {
	font-weight: 300!important;
	margin: 0;
	padding: 0;
	color: #124986!important;
}
.main-inner form ul li {
	width: 48%;
	list-style: none;
}
.main-inner form ul li {
	list-style: none;
}
.main-inner form ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 30px;
	margin: 0px;
}
.main-inner form ul li label {
	display: none;
}
form select, form textarea, form input {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: #444;
	width: 100%;
	height: 76px;
	padding: 22px 15px 22px 40px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(13, 74, 135, 0.25);
	outline: none;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
form ul li::marker{
	display: none;
}
form textarea::placeholder, form select, form input::placeholder {
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	color: rgb(0, 0, 0,.62);
}
form select {
	-webkit-appearance: none;
	border-radius: 22px;
	padding-right: 50px;
	cursor: pointer;
	position: relative;
}
form .ginput_container_select{
	position: relative;
} 
form .ginput_container_select::after{
	content: '';
	position: absolute;
	top: 33px;
	right: 30px;
	width: 0px;
	height: 0;
	border: 10px solid transparent;
	border-top-color: #000000;
	border-top-width: 12px;
	pointer-events: none;
}
form .arrow.fullwidth{
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
	width: 100%;
}
form textarea {
	resize: none;
	height: 180px;
}
form .gform_validation_container{
	display: none;
}
form input[type=submit] {
	font-weight: bold;
	font-size: 20px;
	line-height: normal;
	color: #fff;
	border-radius: 22px;
	background: #124986;
	padding: 30px 80px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-left: auto;
	margin-top: 5px;
}
.page-id-23502 .inner-btn-wrp, 
.page-id-26752 .inner-btn-wrp, 
.page-id-26753 .inner-btn-wrp, 
.page-id-26245 .inner-btn-wrp, 
.page-id-26253 .inner-btn-wrp,
.page-id-26755 .inner-btn-wrp,
.page-id-26255 .inner-btn-wrp,
.page-id-26259 .inner-btn-wrp,
.page-id-26247 .inner-btn-wrp,
.page-id-26249 .inner-btn-wrp,
.page-id-26754 .inner-btn-wrp,
.page-id-26257 .inner-btn-wrp,
.page-id-25617 .inner-btn-wrp,
.page-id-23491 .inner-btn-wrp{
	margin-bottom: 700px;
}
.page-id-26752 .inner-btn-wrp button, 
.page-id-26753 .inner-btn-wrp button, 
.page-id-26245 .inner-btn-wrp button,
.page-id-26253 .inner-btn-wrp button,
.page-id-26755 .inner-btn-wrp button, 
.page-id-26255 .inner-btn-wrp button,
.page-id-26259 .inner-btn-wrp button,
.page-id-26247 .inner-btn-wrp button,
.page-id-26249 .inner-btn-wrp button,
.page-id-26754 .inner-btn-wrp button,
.page-id-26257 .inner-btn-wrp button,
.page-id-24395 .inner-btn-wrp button,
.page-id-23975 .inner-btn-wrp button,
.page-id-25617 .inner-btn-wrp button{
	display: none;
}
.nf-form-content .listselect-wrap .nf-field-element div, .nf-form-content input.ninja-forms-field, .nf-form-content select.ninja-forms-field:not([multiple]) {
	height: 80px!important;
}
.nf-form-content .list-select-wrap>div div:after {
	top: 0!important;
	margin: auto!important;
}
.main-inner p a{
	display: unset;
}
.bullet-stylish {
	display: flex;
	flex-wrap: wrap;
}

.bullet-stylish li {
	width: 16%;
}
.page-id-26551 .title-bg.inner{
	display: none;
}
.seprator {
}
.center {
	display: block;
	margin: 40px auto 0;
	width: max-content;
}
.main-inner .two-col img {
	width: 48%;
	border: 1px solid #ccc;
	margin-bottom: 0px;
}
.main-inner .two-col {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}
.bariatric-img-fix{
	max-width:190px;
}
.lf-box-holder {
	display: flex;
    flex-direction: column;
    gap: 40px;
}
.lf-box-single {
	display: grid;
    grid-template-columns: 2fr 1fr;
	grid-gap: 20px;
}
.lf-box-single .lf-box-part:first-child {
	border-bottom: 1px solid #444;
}
.lf-box-single:nth-child(even) {
    grid-template-columns: 1fr 2fr;
}
.lf-box-single:nth-child(even) .lf-box-part:first-child {
	order: 2;
}
.lf-box-single:nth-child(even) .lf-box-part:last-child {
	order: 1;
}
.lf-box-part img {
	border-radius: 10px;
}
.modal {
    display: none;
    position: relative;
    z-index: 99;
    padding-top: 100px;
    top: 0;
    overflow: auto;
    background-color: #0000002b;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100vh;
    align-items: center;
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 50px;
    border: 1px solid #dcdcdc;
    width: 800px;
}
.modal-content p {font-size: 14px;max-width: fit-content;line-height: 22px;}
.modal-content strong {font-size: 16px;display: block;margin-bottom: 20px;padding-top: 4px;}
.close {color: #aaaaaa;float: right;font-size: 28px;font-weight: bold;}
.close:hover,.close:focus {color: #000;text-decoration: none;cursor: pointer;}
.disclaimerBtn {background: transparent;border: 0;text-decoration: underline;cursor: pointer;}
.linkedin-icon {
	display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 0;
	align-items: center;
}
.linkedin-icon a {
	width: 36px;
    height: 36px;
    margin: 5px 0;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}
.linkedin-icon a::after {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(https://www.bariatricsurgerynewjersey.com/wp-content/uploads/2024/04/linkedin-def-icon.png);
}
.linkedin-icon a:hover {
    transform: rotate(5deg);
}
.certification-badges{
	display:flex;
	flex-direction:row;
	column-gap: 10px;
}
.certification-badges img{
	width:150px;
	height:auto;
	margin-bottom:20px;
}
@media all and (max-width:1820px){
	.main-inner .sidebar-gallery {
		left: calc((100vw - 1140px) / 2 - 330px);
		max-width: 300px;
	}
	.main-inner .sidebar-gallery ul li a {
		font-size: 14px;
		padding: 3px 15px 3px 30px;
	}
	.sidebar-right {
		right: calc((100vw - 1140px) / 2 - 330px);
	}
}
/* RESPONSIVE CSS ------------------------------------------------------------------------- */
@media all and (max-width:1700px){
	/* Banner Section  */
	.single-banner.dr {
		padding-left: 50px;
	}
	/* Finding the Best Section  */
	.find-provider {
		position: unset;
		margin-bottom: 50px;
	}
	.find-provider-sec img {
		max-height: 540px;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: bottom center;
		object-position: bottom center;
		border-radius: 0 100px 0 0;
	}
	/* Home Review Section  */
	.home-review-left {
		padding: 100px;
	}
	/* Main Inner Side Bar  */
	.main-inner .sidebar-gallery {
		left: calc((100vw - 1040px) / 2 - 330px);
	}
	.sidebar-right {
		right: calc((100vw - 1040px) / 2 - 330px);
	}
}
/*1700 End */
@media all and (max-width:1600px) {
	.page-id-23502 .inner-btn-wrp, 
	.page-id-26752 .inner-btn-wrp, 
	.page-id-26753 .inner-btn-wrp, 
	.page-id-26245 .inner-btn-wrp, 
	.page-id-26253 .inner-btn-wrp,
	.page-id-26755 .inner-btn-wrp,
	.page-id-26255 .inner-btn-wrp,
	.page-id-26259 .inner-btn-wrp,
	.page-id-26247 .inner-btn-wrp,
	.page-id-26249 .inner-btn-wrp,
	.page-id-26754 .inner-btn-wrp,
	.page-id-26257 .inner-btn-wrp,
	.page-id-25617 .inner-btn-wrp,
	.page-id-23491 .inner-btn-wrp{
		margin-bottom: 0px;
	}
	.sidebar-right {
		right: calc((100vw - 940px) / 2 - 330px);
	}
	.main-inner .sidebar-gallery {
		left: calc((100vw - 940px) / 2 - 330px);
	}
}
/* 1600 End  */
@media all and (max-width:1500px) {
	.sidebar-right {
		right: calc((100vw - 782px) / 2 - 330px);
		max-width: 270px;
	}
	.main-inner .sidebar-gallery {
		left: calc((100vw - 781px) / 2 - 330px);;
		max-width: 270px;
	}
}
/* 1440  */
@media all and (max-width:1440px) {
	.single-banner .dr-sadek .dr-title {
		font-size: 80px;
	}
	/* Main Inner Side Bar  */
	.side-bar-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 40px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 50px;
	}
	.main-inner .sidebar-gallery {
		position: unset;
		padding: 30px 0;
		border-radius: 10px;
	}
	.main-inner .sidebar-gallery .team {
		padding: 10px 10px 10px 30px;
		margin-bottom: 20px;
	}
	.main-inner .sidebar-gallery ul li a {
		padding: 8px 10px 8px 30px;
	}
	/* right  */

	.sidebar-right {
		position: unset;        
		display: -webkit-box;        
		display: -ms-flexbox;        
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px;
	}
	.main-inner.resources .sidebar-right {
		align-self: baseline;
	}
	.single-bar-right {
		border-radius: 10px;
		width: 100%;
	}
	.single-bar-right a, .single-bar-right button {
		padding: 25px 50px;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
	}
	.single-bar-right a::before, 
	.single-bar-right button::before {
		display: none;
	}
	.single-bar-right.sch {
		border: 1px solid rgba(18, 73, 134, 0.21);
	}
	.main-inner .sidebar-gallery ul ul {
		margin-left: 60px;
	}
	.page-id-23502 .inner-btn-wrp {
		margin-bottom: 700px;
	}
	.heading {
		font-size: 40px;
	}
	.default-btn {
		font-size: 18px;
	}
	/* Banner Section ------- */
	.banner-side-bar {
		min-width: 100px;
	}
	.single-banner, 
	.single-banner.dr {
		padding-top: 50px;
		min-height: 670px;
	}
	.banner-righ {
		max-width: calc(100% - 100px);
	}
	.dr-img {
		max-width: unset;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: end;
		overflow: hidden;
		border-radius: 40px 0px 100px;
	}
	.dr-img img {
		height: 100%;
		width: auto;
		margin: 0px auto;
		position: unset;
	}
	.single-banner.inner-dr {
		padding-top: 20px;
		padding-left: 50px;
		justify-content: center;
		align-items: center;
	}
	.single-banner .left {
		padding: 50px;
	}
	.single-banner .banner-title {
		font-size: 75px;
		line-height: 1.1;
	}
	.single-banner p {
		font-size: 30px;
		margin: 35px 0 50px 0;
	}
	.banner-content .slick-dots {
		left: 50px;
		bottom: 50px;
	}
	/* Advanced Surgical Section  */
	.advanced-sur-top {
		max-width: 1230px;
		width: 100%;
		margin: auto;
	}
/* 	.advanced-sur-top h1 {
		padding-top: 100px;
	} */
	.advanced-top-left {
		max-width: 600px;
	}
	.advanced-btn a {
		padding-left: 15px;
		padding-right: 55px;
	}
	.advanced-btn .default-btn::after {
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		transform: scale(.5);
		right: -10px;
	}
	.advanced-top-left p {
		font-size: 18px;
		line-height: 28px;
	}
	/* Finding the Best Section  */
	.find-provider p {
		margin: 20px 0 40px;
	}
	.find-provider-sec img {
		max-height: 500px;
	}
	/* Seminars Section   */
	.seminar-left {
		max-width: 50%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: end;
	}
	.seminar-right h2 {
		padding-top: 75px;
	}
	/* Home Review Section  */
	.home-review-left {
		padding: 50px;
		border-radius: 50px 0 0 0;
	}
	.home-review-right .slick-track,
	.home-review-right .slick-list {
		height: 100%;
	}
	.home-review-left .slick-next, 
	.home-review-left .slick-prev {
		bottom: 80px;
	}
	/* Wanting To Connect Section  */
	.wanting-to {
		gap: 30px;
		max-width: 1200px;
		width: 100%;
		margin: auto;
	}
	.wanting-left {
		height: 485px;
	}
	/* About Page -------------- */
	.inner-side-banner {
		min-height: 550px;
	}
	.banner-side-bar ul {
		padding-top: 80px;
		padding-bottom: 200px;
	}
	/* Doctor Page -------- */
	.single-banner.inner-dr .dr-title {
		margin-bottom: 20px;
	}
	/* inner page ---- */
	.title-bg.inner {
		padding: 65px 0;
	}
	/* Testimonial Page ----- */
	.vide-testi-wrap {
		gap: 50px 25px;
	}
	.text-testi {
		gap: 100px 40px;
	}
	.main-inner .single-text-testi {
		padding-right: 70px;
	}
	/*	Side bar */
	.mobile-top-menu {
		display: block;
		margin-bottom: 40px;
		background: rgb(18 73 134 / 88%);
		padding-bottom: 1px;
		border-radius: 20px;
	}
	.side-bar-wrap .sidebar-gallery {
		display: none;
	}
	.mobile-top-menu > span {
		display: block;
		padding: 10px;
		color: #FFF;
		font-size: 20px;
		position: relative;
		margin-left: 34px;
	}
	.mobile-top-menu > span::after {
		content: '';
		position: absolute;
		top: 14px;
		right: 15px;
		width: 9px;
		height: 9px;
		border-left: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
		transform: rotate(-45deg);
		transition: .3s;
	}
	.mobile-top-menu > span.rotate::after {
		transform: rotate(140deg);
		top: 20px;
	}
	.mobile-top-menu ul {
		display: none;
	}
	.mobile-top-menu ul li {
		list-style: circle;
	}
	.mobile-top-menu ul li::marker {
		color: #FFF;
	}
	.mobile-top-menu ul li a {
		font-weight: normal;
		font-size: 16px;
		line-height: normal;
		color: #fff;
		text-decoration: none;
		/* display: block; */
		padding: 5px;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		text-decoration: none;
	}
	.mobile-top-menu ul li a:hover {
		background: rgb(255 255 255 / 23%);
	}
	.mobile-top-menu ul li a:hover{
		color: #C6EAFB;
	}
	.mobile-top-menu ul li a:hover {
		text-decoration: underline;
	}



}
/* 1440 End */
@media all and (max-width:1439px){
	/* Main Header  */
	.logo a img {
		height: 53px;
	}
	.main-menu > ul > li > a {
		padding: 19px 0px;
	}
	.book-online {
		font-size: 18px;
		padding: 20px 25px 20px 60px;
	}
	.book-online::before {
		left: 8px;
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
	}
	/* Advanced Surgical Section  */
	.advanced-bottom {
		gap: 30px;
	}
	.single-advanced {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	/* Finding the Best Section  */
	.finding-the .left {
		min-width: 550px;
	}
	.finding-the .right h2 {
		margin-bottom: 30px;
		font-size: 40px;
	}
	.finding-the .right p {
		font-size: 18px;
		line-height: 26px;
	}
	/* Finding the Best Section  */
	.find-provider-sec img {
		max-height: unset;
		width: 100%;
		aspect-ratio: 16/5.5;
	}
	/* News and Research Section  */
	.single-news .news-text h3 a {
		font-size: 18px;
		line-height: 28px;
		min-height: 55px;
	}
	.single-news .news-text p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 20px;
	}
	/* About Page -------------- */
	.inner-side-banner {
		min-height: 450px;
	}
}
/*1439 End */
@media all and (max-width:1200px){
	.sec-m {
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.sec-p {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.default-btn {
		padding: 30px 80px 30px 20px;
	}
	.default-btn.light-blue::after, .default-btn.orange::after {
		-webkit-transform: scale(.6);
		-ms-transform: scale(.6);
		transform: scale(.6);
		right: 0;
	}
	/* Main Header --- */
	.header-bottom {
		gap: 25px;
	}
	.main-menu > ul {
		gap: 20px;
	}
	.book-online {
		font-size: 17px;
		padding: 20px 15px 20px 60px;
	}
	/* Banner Section  */
	.single-banner .left {
		max-width: 600px;
	}
	.single-banner .dr-sadek .dr-title {
		font-size: 90px;
		line-height: 1.2;
	}
	.single-banner.testi .banner-title::after {
		bottom: -26px;
	}
	.single-banner .banner-title {
		font-size: 70px;
		word-wrap: break-word;
	}
	.single-banner .banner-title span {
		display: inline-block;
	}
	.single-banner .dr-sadek p {
		font-size: 22px;
		margin-bottom: 20px;
		margin-top: 15px;
	}
	.single-banner p {
		font-size: 24px;
		margin: 20px 0 40px 0;
	}
	.dr-img {
		max-width: 435px;
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.dr-sadek img {
		margin-bottom: 40px;
	}
	/* Awards Section  */
	.awards-sec {
		margin: 50px 0;
	}
	/* Advanced Surgical Section  */
	.advanced-surgi-sec {
		border-radius: 50px 0;
		background-size: cover;
		background-position: center;
		margin: 50px 0;
		padding-bottom: 50px;
	}
	.advanced-sur-top {
		padding: 80px 0;
	}
	.advanced-bottom {
		gap: 20px;
	}
	.single-advanced a img {
		height: 220px;
		margin-bottom: 20px;
	}
	.single-advanced a h3 {
		font-size: 22px;
	}
	.single-advanced a p {
		padding-bottom: 25px;
		min-height: 80px;
	}
	/* Video Section  */
	.video-bg {
		height: unset;
		border-radius: 50px 0;
		width: 100%;
		aspect-ratio: 16/9;
	}
	/* Our Specialties Section  */
	.our-specialist-sec {
		padding: 50px 0;
		border-radius: 50px 0px;
	}
	.our-sp-head {
		margin-bottom: 50px;
	}
	/* Finding the Best Section  */
	.finding-the .left {
		min-width: 40%;
		border-radius: 0 50px;
		-ms-flex-item-align: baseline;
		align-self: baseline;
		background: transparent;
	}
	.finding-the .left img {
		margin-right: 0;
		margin-left: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.find-provider p {
		max-width: 750px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.seminar-right {
		margin: 30px 0;
	}
	/* Home Review Section  */
	.home-single-review .star {
		padding-top: 45px;
		margin-bottom: 20px;
	}
	.home-single-review .text {
		padding-left: 15px;
		border-left: 2px solid #FFF;
		margin-bottom: 45px;
	}
	.home-single-review .text p {
		font-size: 18px;
		line-height: 29px;
	}
	.home-review-left .slick-prev {
		right: 50px;
	}
	.home-review-left .slick-next {
		right: 100px;
	}
	/* Wanting To Connect Section  */
	.wanting-right .pera {
		font-size: 20px;
	}
	/* Which is right for you Section  */
	.which-for-left {
		border-radius: 50px 0px;
		padding: 50px 30px;
	}
	.which-for-right {
		background-size: 180%;
		border-radius: 0px 50px;
		background-position: center;
	}
	/* News and Research Section  */
	.single-news .news-thum img {
		height: 200px;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.single-news .news-text {
		padding: 20px 15px 30px 15px;
	}
	/* Our Locations Section  */
	.our-location-sec {
		border-radius: 0px 50px 0px 0px;
		padding: 50px 0;
	}
	.our-location-sec::before {
		border-radius: 0px 50px 0px 0px;
	}
	.our-loca-head {
		margin-bottom: 50px;
	}
	.our-location {
		gap: 40px;
	}
	.our-location-right iframe {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.our-location-left ul li > span {
		font-size: 22px;
		margin-bottom: 10px;
	}
	/* Footer Section --------- */
	.main-footer {
		border-radius: 50px 0px;
		padding: 50px 0;
	}
	.footer-wrap {
		gap: 50px 30px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.single-footer h5 {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.footer-social {
		margin-top: 50px;
	}
	/* Main Inner Page ----------- */
	.main-inner .h1 {
		padding-top: 60px;
		padding-bottom: 10px;
		margin-bottom: 30px;
	}
	.main-inner img, .main-inner h3, 
	.main-inner p, .main-inner ul, 
	.main-inner ol {
		margin-bottom: 25px;
	}
	.main-inner .inner-dr-sadek-are, 
	.inner-dr-sadek-are {
		margin-top: 50px;
		padding: 50px 0;
	}
	.inner-blog-bg {
		padding-top: 50px;
	}
	.main-inner .inner-dr-sadek, 
	.inner-dr-sadek {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 30px;
	}
	.main-inner .inner-dr-sadek .img, 
	.inner-dr-sadek .img {
		border-radius: 10px;
		min-width: 210px;
	}
	/* inner margin break  */
	.main-inner.resources .inner-video {
		margin-bottom: 40px;
	}
	.text-testi,
	.main-inner blockquote,
	.inner-btn-wrp,
	.inner-schedule,
	.main-inner .quto,
	.inner-video {
		margin: 40px 0;
	}
	.inner-btn-wrp {
		gap: 30px;
	}
	/* inner margin break  */
	/* Inner Blog  */
	.main-inner .single-inner-blog img, 
	.single-inner-blog img {
		height: 350px;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: top center;
		object-position: top center;
	}
	.single-inner-blog .text {
		border-radius: 10px 50px;;
		padding: 50px;
	}
	.single-inner-blog:nth-child(2n) .text {
		border-radius: 50px 10px;
	}
	.single-inner-blog .img {
		border-radius: 50px 10px;
	}
	.single-inner-blog:nth-child(2n) .img {
		border-radius: 10px 50px;
	}
	.single-inner-blog h3 {
		font-size: 24px;
		line-height: 1.5;
		min-height: 72px;
	}
	.inner-blog-wrp {
		margin: 50px 0;
	}
	.inner-btn-wrp {
		gap: 20px;
	}
	/* Doctor Page --------- */
	.single-banner.inner-dr {
		padding-left: 50px;
		padding-top: 50px;
		min-height: auto;
	}
	.inner-five-star {
		margin: 40px auto;
	}
	.main-inner .inner-award {
		margin-bottom: 40px;
	}
	/* Inner Page ------ */
	.title-bg.inner {
		padding: 40px 0;
	}
	.inner-side-banner .title {
		font-size: 60px;
	}
	/* Testimonial Page ------ */
	.inner-banner-two-sec {
		border-radius: 0px 0px 50px 50px;
		padding: 80px 0;
	}
	.inner-banner-tow .title {
		font-size: 68px;
	}
	.main-inner .video-testi-rea {
		margin-bottom: 50px;
	}
	.inner-video {
		min-height: unset;
		aspect-ratio: 16/9;
		border-radius: 15px 15px 50px 15px;
	}
	/* Testimonial Page  */
	.main-inner .single-text-testi {
		padding-right: 70px;
		-ms-flex-item-align: start;
		align-self: flex-start;
		max-height: 400px;
		border-radius: 0px 30px 60px 0px;
	}
	.single-text-testi.three {
		max-height: unset;
	}
	.main-inner .single-text-testi .img img {
		max-height: 90%;
	}
	/* Blog Page -------- */
	.blog-wrap {
		gap: 50px 30px;
	}
	.single-blog {
		border-radius: 100px 20px 50px 20px;
	}
	.single-blog:nth-child(odd) {
		border-radius: 20px 100px 20px 50px;
	}
	.single-blog .thum {
		border-radius: 50px 20px;
	}
	.single-blog:nth-child(odd) .thum {
		border-radius: 20px 50px;
	}
	.inner-side-banner {
		border-radius: 0 0 100px 0;
	}
	.contact-gallery-bg {
		margin-bottom: 0;
		padding-bottom: 30px;
		padding-top: 30px;
	}
	.home .dr-img img {
		margin-top: 0px;
	}
}
/*1200 End*/
@media all and (max-width:1024px){
	.dr-sadek .certification-badges img{
	width:100px;
}
	.our-location-right iframe {
		height: 100%;
		min-height: 400px;
	}
	.menu-item-has-children:after, .menu-item-has-children:before  {
		display: none;
	}
	.main-inner .sidebar-gallery > ul {
		height: auto;
		overflow-y: none;
	}
	.main-inner form ul li {
		width: 100%;
	}
	.play-btn {
		width: 100px;
		height: 100px;
		-webkit-box-shadow: 0px 0px 0 10px rgb(250 166 52 / 33%);
		box-shadow: 0px 0px 0 10px rgb(250 166 52 / 33%);
	}
	.heading {
		font-size: 32px;
	}
	.heading span {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.heading-one {
		font-size: 38px;
	}
	.default-btn {
		font-size: 15px;
		padding: 18px 60px 18px 15px;
	}
	.default-btn::after {
		right: 0;
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		transform: scale(.5);
	}
	/* Min Header --------- */
	.book-online-btn {
		margin-left: auto;
	}
	.mobail-bars {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	/* Main Nav Menu  */
	.header-nav {
		margin: 0;
		position: fixed;
		z-index: 999;
		top: 105px;
		left: -100%;
		width: 100%;
		height: 100%;
		background: #FFF;
		-webkit-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	.header-nav.active {
		left: 0;
	}
	.main-menu {
		padding: 50px;
	}
	.main-menu > ul {
		gap: 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 400px;
		width: 100%;
	}
	.main-menu ul li {
		position: relative;
		padding-right: 20px;
	}
	.main-menu > ul > li > a {
		padding: 0;
		font-size: 20px;
	}
	/* Drop Down  */
	.main-menu ul ul {
		display: none;
		position: unset;
		width: 100%;
		background: transparent;
		border-radius: 3px;
		-webkit-box-shadow: unset;
		box-shadow: unset;
		-webkit-transition: unset;
		-o-transition: unset;
		transition: unset;
		opacity: 1;
		visibility: visible;
		padding-left: 12px;
		margin-top: 18px;
		margin-bottom: 10px;
	}
	.main-menu ul ul li {
		padding: 6px 0;
	}
	.main-menu ul ul li a {
		padding: 0;
	}
	.dropdown-menu-items {
		position: absolute;
		top: 4px;
		right: 0;
		width: 11px;
		height: 11px;
		border-left: 3px solid #000;
		border-bottom: 3px solid #000;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}
	.dropdown-menu-items.rotate {
		-webkit-transform: rotate(137deg);
		-ms-transform: rotate(137deg);
		transform: rotate(137deg);
		top: 8px;
	}
	/* Banner Section  */
	.banner-side-bar {
		display: none;
	}
	.banner-righ {
		max-width: 100%;
	}
	.single-banner, .single-banner.dr {
		min-height: 590px;
	}
	.dr-img {
		border-radius: 40px 0px;
	}
	.single-banner p {
		font-size: 24px;
		line-height: 1.4;
	}
	/* Our Specialties Section  */
	.our-specialist {
		display: block;
	}
	.single-spcial-wrp {
		max-width: unset;
		margin: 0 5px;
	}
	.single-special {
		height: 420px;
		border-radius: 30px 15px;
	}
	.first-img img {
		-o-object-position: top center;
		object-position: top center;
	}
	.hover-img {
		height: 70%;
		padding: 20px;
	}
	.hover-img img {
		height: 100%;
	}
	.single-special h3 {
		font-size: 20px;
	}
	.single-special p {
		font-size: 17px;
	}
	.our-specialist .slick-dots {
		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;
		gap: 12px;
		margin-top: 35px;
	}
	.our-specialist .slick-dots li button {
		font-size: 0;
		width: 10px;
		height: 10px;
		display: block;
		background: #C6EAFB;
		-webkit-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	.our-specialist .slick-dots li.slick-active button {
		background: #FFF;
		width: 12px;
		height: 12px;
	}
	/* Seminars Section   */
	.seminar-wrap {
		gap: 30px;
	}
	.seminar-right h2 {
		margin-bottom: 20px;
	}
	.seminar-right p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 40px;
		padding-left: 10px;
		border-left: 2px solid #0D4A87;
	}
	/* Home Review Section  */
	.seminars-sec::after {
		background-size: contain;
	}
	/* Wanting To Connect Section  */
	.wanting-left {
		height: 350px;
		max-width: 390px;
	}
	/* Footer Section ------- */
	.single-footer.four {
		max-width: 75%;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.single-footer .accordion-title {
		line-height: normal;
	}
	.single-footer .accordion-title::after {
		top: 5px;
	}
	.single-footer .accordion-title.active::after {
		top: 10px;
	}
	.footer-social p {
		font-size: 17px;
		margin-top: 25px;
	}
	/* Main Inner Page ------------ */
	.single-inner-blog .text {
		padding: 50px 20px;
	}
	.single-inner-blog h3 {
		font-size: 20px;
		line-height: 1.5;
		min-height: 60px;
		margin-bottom: 20px;
	}
	.main-inner .single-inner-blog p, 
	.single-inner-blog p {
		font-size: 18px;
	}
	/* Testimonial Page ------- */
	.inner-video::before {
		width: 80px;
		height: 80px;
	}
	.inner-video::after {
		border-top: 14px solid transparent;
		border-bottom: 13px solid transparent;
		border-left: 20px solid #C6EAFB;
	}
	/* Blog Page ------- */
	.single-blog .thum img {
		height: 250px;
	}
	.single-blog .text {
		padding: 40px 30px;
	}
	#pagination-container {
		margin-top: 40px;
	}
	/* Contact Page -------- */
	.inner-location {
		margin-bottom: 40px;
		gap: 25px;
	}
	.main-inner .contact-gallery > div img {
		min-height: 300px;
		max-height: 500px;
		aspect-ratio: 16/9;
	}
	.main-inner iframe {
		height: unset;
		aspect-ratio: 16/9;
		margin-bottom: 40px;
	}
}
/*992 End */
/* 991  */
@media all and (max-width:991px) {
	.awards {
		overflow: auto;
	}
	/* Home Banner Section  */
	.single-banner p br {
		display: none;
	}
	/* Finding the Best Section  */
	.finding-the {
		gap: 50px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		max-width: 700px;
		width: 100%;
		margin: auto;
	}
	.finding-the .left {
		min-width: 100%;
	}
	/* Home Review Section  */
	.home-review {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.home-review > div {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
	}
	/* Which is right for you Section  */
	.which-for {
		gap: 15px;
	}
	.which-for-right {
		background-size: cover;
	}
	/* News and Research Section  */
	.news-wrap {
		gap: 40px 18px;
	}
	.single-news {
		-webkit-box-flex: 320px;
		-ms-flex: 320px;
		flex: 320px;
		max-width: 500px;
	}
	.single-news .news-thum img {
		height: 250px;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center;
		object-position: center;
	}
	/* Our Locations Section  */
	.our-location {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.our-location-right {
		width: 100%;
		max-width: 525px;
	}
	.our-location-right img {
		height: 350px;
		width: 100%;
	}
	.our-location-left ul li a, .our-location-left ul li span.address {
		font-size: 18px;
		line-height: 28px;
	}
	/* About Page ----------- */
	.inner-side-banner {
		min-height: 350px;
		background-position: center;
	}
	.inner-side-banner .title {
		font-size: 60px;
	}
	/* Doctor Page -------- */
	.single-banner.inner-dr .dr-sadek {
		margin-top: 0;
	}
	/* Testimonial Page --------- */
	.text-testi {
		gap: 50px;
	}
	.main-inner .single-text-testi {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 600px;
		width: 100%;
		margin: auto;
	}
	.main-inner .single-text-testi .img img {
		max-height: 350px;
	}
	.single-text-testi.three {
		max-height: unset;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.single-text-testi.three .text {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.inner-side-banner {
		border-radius: 0;
	}

}
/* 991 End  */
@media all and (max-width:768px){
	.lf-box-single, .lf-box-single:nth-child(even) {
		grid-template-columns: 1fr;
	}
	.lf-box-single .lf-box-part:first-child {
		order: 2;
	}
	.lf-box-single .lf-box-part:last-child {
		order: 1;
	}
	.lf-box-single:nth-child(even) .lf-box-part:first-child {
		order: 2;
	}
	.lf-box-single:nth-child(even) .lf-box-part:last-child {
		order: 1;
	}
	.home-single-review-right {
		height: 450px;
	}
	.heading {
		font-size: 25px;
	}
	/* Main Header  */
	.header-top-con .e-waiting {
		padding: 7px 15px;
	}
	/* Banner Section  */
	.single-banner.dr {
		padding-left: 20px;
	}
	.single-banner, .single-banner.dr {
		min-height: 450px;
	}
	.single-banner .left {
		padding: 30px 20px;
	}
	.single-banner .dr-sadek .dr-title {
		font-size: 68px;
	}
	.single-banner .banner-title {
		font-size: 40px;
	}
	.single-banner.testi .banner-title::after {
		bottom: -18px;
		left: 50px;
		-webkit-transform: scale(.6);
		-ms-transform: scale(.6);
		transform: scale(.6);
	}
	.single-banner p {
		font-size: 20px;
		line-height: 1.5;
		max-width: 450px;
		width: 100%;
	}
	.dr-img {
		max-width: 300px;
	}
	.dr-sadek img {
		max-width: 315px;
		width: 100%;
	}
	.banner-content .slick-dots {
		bottom: 40px;
		left: 20px;
		gap: 10px;
	}
	.banner-content .slick-dots li button {
		width: 10px;
		height: 10px;
	}
	.banner-content .slick-dots li.slick-active button {
		width: 14px;
		height: 14px;
	}
	/* Advanced Surgical Section  */
	.advanced-sur-top {
		padding: 50px 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.advanced-bottom {
		gap: 40px 20px;
	}
	.single-advanced {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 500px;
	}
	/* Finding the Best Section  */
	.find-provider-sec {
		text-align: left;
	}
	.find-provider p {
		font-size: 18px;
		line-height: 28px;
	}
	/* Footer Section ---------- */
	.single-footer.one {
		padding-bottom: 70px;
	}
	.single-footer.one::after {
		bottom: -31px;
		left: -28px;
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		transform: scale(.5);
	}
	.single-footer.three {
		min-width: 468px;
		margin-right: auto;
		margin-left: auto;
	}
	/* Main Inner Page -------- */
	.main-inner .single-five-star {
		padding: 90px 20px;
	}
	.main-inner .single-five-star::before {
		width: 80px;
		height: 80px;
		background-position: top -49px left -55px;
	}
	.main-inner .image-list li {
		gap: 25px;
		padding-bottom: 20px;
		margin-bottom: 20px;;
	}
	/* Blog Page -------- */
	.main-inner .single-location {
		padding: 25px 15px;
	}
	.main-inner .single-location .loca-head {
		font-size: 20px;
	}
	.single-input select, 
	.single-input textarea, 
	.single-input input {
		line-height: normal;
		height: 60px;
		padding: 12px 15px 11px 15px;
		border-radius: 10px;
	}
	.single-input.arrow {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
	.single-input.arrow::after {
		top: 25px;
		right: 15px;
	}
}
/*768 End */
@media all and (max-width:767px) {
	/* Seminars Section   */
	.seminar-wrap {
		gap: 30px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.seminar-left {
		max-width: 100%;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.seminar-right {
		margin: 0;
	}
	/* Wanting To Connect Section  */
	.wanting-to {
		gap: 40px;
		max-width: 500px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}
	.wanting-left {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	/* News and Research Section  */
	.news-head p {
		font-size: 18px;
		line-height: 28px;
		color: #444;
		max-width: 350px;
		width: 100%;
		margin: auto;
	}
	/* Main Inner Page -------- */
	.vide-testi-wrap {
		gap: 30px 25px;
	}
	.single-inner-blog {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
	}
	.inner-blog-wrp {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.single-inner-blog h3 {
		min-height: auto;
	}
	/* Blog Page ---------- */
	.single-blog {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	/* Contact Page  */
	.main-inner .single-location {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		max-width: 400px;
		width: 100%;
		margin: auto;
	}
	.main-inner .single-location:last-child  {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		max-width: 400px;
		width: 100%;
		margin: auto;
	}
	.single-input {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
	.contact-gallery-bg {
		padding: 30px 0;
	}
	.main-inner .contact-gallery > div img {
		height: unset;
		min-height: unset;
		max-height: unset;
		aspect-ratio: 16/9;
	}
	.main-inner .contact-gallery .slick-dots {
		bottom: 20px;
	}
	.main-inner .contact-gallery .slick-dots li button {
		width: 20px;
		height: 7px;
	}
	.main-inner .contact-gallery > div img,
	.main-inner iframe {
		aspect-ratio: 16/13;
	}
}
/* 767 End  */
@media all and (max-width: 576px){
	.dr-sadek .certification-badges img {
    margin-bottom: 20px !important;
}
	.certification-badges {
    justify-content: center;
		flex-wrap:wrap;
}
	section.home-review-sec {
		border-radius: 100px 0px 100px 0px;
	}
	.home-single-review-right {
		height: 300px;
		border-radius: 0px 0px 100px 0px;
	}
	.our-location-sec {
		margin-top: 50px;
	}
	.our-location-sec::before {
		top: 0;
	}
	.main-inner .inner-btn-wrp .download-btn, .main-inner .inner-btn-wrp .default-btn {
		text-align: left;
	}
	.inner-btn-wrp {
		gap: 20px;
		flex-direction: column;
		margin: 0px;
	}
	.main-inner  h1.centerh1 {
		font-size: 30px;
	}
	.play-btn {
		width: 80px;
		height: 80px;
	}
	.heading {
		font-size: 25px;
	}
	.heading span {
		font-size: 18px;
	}
	.heading-one {
		font-size: 26px;
	}
	.default-btn {
		padding: 18px 60px 18px 15px;
	}
	/* Main Header Top  */
	.header-bottom {
		padding: 8px 0;
	}
	.header-top-con {
		gap: 20px;
	}
	.header-top-con p {
		font-size: 14px;
	}
	.header-top-con p a {
		font-size: 15px;
		padding-left: 0;
		margin-left: 10px;
	}
	.header-top-con p a::before {
		display: none;
	}
	.header-top-con .e-waiting {
		font-size: 14px;
		padding: 5px;
	}
	/* Main Header  */
	.book-online {
		font-size: 0;
		padding: 0;
		width: 50px;
		height: 50px;
	}
	.book-online::before {
		left: 0;
	}
	.mobail-bars {
		width: 50px;
		height: 50px;
	}
	/* Main Menu Nav --------- */
	.main-menu {
		padding: 40px 20px;
	}
	/* Banner Section ------ */
	.single-banner.dr {
		padding-left: 15px;
	}
	.single-banner .dr-sadek .dr-title {
		font-size: 34px;
	}
	.single-banner .banner-title {
		font-size: 30px;
	}
	.single-banner.testi .banner-title {
		padding-bottom: 0;
	}
	.single-banner.testi .banner-title::after {
		display: none;
	}
	.single-banner.testi p {
		padding-left: 40px;
		font-size: 18px;
	}
	.single-banner.testi p::before {
		top: 0;
		left: -4px;
		-webkit-transform: scale(.8);
		-ms-transform: scale(.8);
		transform: scale(.8);
	}
	.single-banner .dr-sadek p {
		font-size: 20px;
	}
	.dr-img {
		max-width: 145px;
		border-radius: 10px 0px;
	}
	.dr-sadek img {
		max-width: 180px;
	}
	.single-banner.dr .default-btn {
		padding: 18px 40px 18px 10px;
	}
	/* Awards Section  */
	.awards-sec h2 {
		margin-bottom: 10px;
	}
	/* Chrome, Edge, and Safari */
	.awards::-webkit-scrollbar {
		width: 5px;
		border-radius: 10px;
	}
	.awards::-webkit-scrollbar-thumb {
		border-radius: 10px;
	}
	/* Advanced Surgical Section  */
	.advanced-sur-top {
		padding: 50px 0;
	}
/* 	.advanced-sur-top h1 {
		padding-top: 55px;
	} */
/* 	.advanced-sur-top h1::before {
		top: -20px;
		left: -19px;
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		transform: scale(.5);
	} */
	.advanced-btn {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	/* Finding the Best Section  */
	.finding-the .right h2 {
		font-size: 32px;
	}
	.finding-the .right .text {
		padding-left: 15px;
		border-left: 2px solid #124986;
	}
	.finding-the .right p + p {
		margin-top: 20px;
	}
	.find-provider-sec img {
		border-radius: 0 50px 0 0;
	}
	/* Seminars Section  */
	.seminar-right h2 {
		padding-top: 60px;
	}
	.seminar-right h2::before {
		top: -10px;
		left: -14px;
		-webkit-transform: scale(.6);
		-ms-transform: scale(.6);
		transform: scale(.6);
	}
	/* Home Review Section  */
	.home-review-left {
		padding: 50px 15px;
	}
	.home-single-review .name {
		gap: 15px;
	}
	.home-review-left .slick-prev {
		right: 20px;
	}
	.home-review-left .slick-next {
		right: 60px;
	}
	.home-review-right .slick-prev, .home-review-right .slick-next {
		width: 50px;
		height: 50px;
	}
	.home-review-right .slick-prev {
		background-position: top -59px left -142px;
	}
	.home-review-right .slick-next {
		left: 50px;
		background-position: top -59px left -194px;
	}
	/* Wanting To Connect Section  */
	.wanting-left {
		height: 295px;
		max-width: 390px;
		background-position: center;
	}
	/* Which is right for you Section  */
	.which-for {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		gap: 40px;
	}
	.which-for-left h2 {
		margin-bottom: 30px;
	}
	.which-for-left {
		padding: 50px 15px;
	}
	.which-for-left p {
		padding-left: 15px;
		border-left: 2px solid #FFFFFF;
	}
	.which-for-right {
		aspect-ratio: 16/9;
	}
	/* Footer Section ----------- */
	.footer-wrap {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 30px 20px;
	}
	.single-footer.three {
		min-width: unset;
		width: 100%;
		margin-left: 0;
	}
	.single-footer.four {
		max-width: 100%;
	}
	.footer-social ul {
		padding: 0 20px;
	}
	/* About Page -------- */
	.inner-side-banner {
		min-height: 250px;
	}
	.inner-side-banner .title {
		font-size: 38px;
	}
	.inner-video::before {
		width: 80px;
		height: 80px;
	}
	.main-inner .inner-dr-sadek, .inner-dr-sadek {
		gap: 40px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.main-inner .inner-dr-sadek .img, 
	.inner-dr-sadek .img {
		max-width: 450px;
		width: 100%;
		margin: 0 auto;
	}
	/* Main Inner Page --------- */
	.main-inner .h1 {
		font-size: 26px;
	}
	.main-inner h2 {
		font-size: 26px;
		line-height: normal;
		padding-bottom: 10px;
		margin-bottom: 25px;
	}
	.inner-schedule {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inner-schedule > div {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: unset;
		min-width: 250px;
	}
	.inner-video {
		min-height: unset;
		height: unset;
		width: 100%;
		aspect-ratio: 16/9;
	}
	.main-inner .quto {
		padding: 60px 70px;
	}
	.main-inner .quto::before, 
	.main-inner .quto::after {
		width: 50px;
		height: 50px;
		background-position: top 15px left -420px;
	}
	.main-inner .quto::after {
		background-position: top 18px left -483px;
	}
	.side-bar-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.inner-video {
		border-radius: 10px 10px 50px 10px;
	}
	.main-inner .single-inner-blog img, 
	.single-inner-blog img {
		height: 280px;
	}
	.single-inner-blog .text {
		padding: 50px 15px;
	}
	/* Doctor Page ---------- */
	.single-banner.inner-dr {
		padding-left: 15px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: 20px;
		gap: 40px;
	}
	.single-banner.inner-dr .dr-sadek {
		text-align: center;
	}
	.single-banner.inner-dr .dr-img {
		max-width: 100%;
		border-radius: 20px;
	}
	.main-inner .inner-award h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.main-inner .h1 span {
		font-size: 24px;
		margin-top: 3px;
	}
	.main-inner h3 {
		font-size: 26px;
	}
	.main-inner h4{
		font-size:23px;
	}
	.main-inner h5{
		font-size:20px;
	}
	.inner-five-star {
		padding: 0 20px;
	}
	.main-inner .single-five-star {
		padding: 55px 20px;
	}
	.main-inner .single-five-star::before {
		-webkit-transform: scale(.6);
		-ms-transform: scale(.6);
		transform: scale(.6);
		top: -10px;
		left: -10px;
	}
	.main-inner .single-five-star::after {
		bottom: -4px;
		right: -4px;
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
	}
	.main-inner .single-five-star .star {
		font-size: 23px;
	}
	.main-inner .single-five-star .star span {
		font-size: 16px;
	}
	.main-inner .single-five-star .title {
		font-size: 18px;
		line-height: 1.5;
		margin: 5px 0 12px 0;
	}
	.inner-five-star .slick-arrow {
		width: 15px;
	}
	.inner-five-star .slick-next {
		background-position: top -264px left -90px;
	}
	/* Inner Page ------------ */
	.title-bg.inner {
		padding: 25px 0;
	}
	.inner-side-banner .title {
		font-size: 28px;
	}
	.main-inner .image-list li {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.main-inner .image-list li img {
		height: auto;
		border-radius: 10px;
	}
	.main-inner ul ul {
		margin-bottom: 10px;
		margin-top: 10px;
		margin-left: 25px;
	}
	.main-inner blockquote {
		padding: 30px 15px;
	}
	/* Testimonial Page ---------- */
	.inner-banner-two-sec {
		padding: 50px 0;
	}
	.inner-banner-tow .title {
		font-size: 42px;
	}
	.vide-testi-wrap .inner-video {
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
	.main-inner .video-testi-rea h2 {
		font-size: 34px;
		margin-bottom: 20px;
		padding-bottom: 0;
	}
	.main-inner .single-text-testi {
		-ms-grid-columns: 100%;
		grid-template-columns: 100%;
		justify-items: center;
		height: unset;
		min-height: unset;
		max-height: unset;
		gap: 0;
		padding-top: 0;
		padding-right: 15px;
		padding-left: 15px;
		text-align: center;
	}
	.main-inner .single-text-testi::before {
		top: 0;
		right: 0;
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
	}
	.main-inner .single-text-testi .img img {
		margin-top: 30px;
	}
	.main-inner .single-text-testi .text {
		padding: 20px 0;
	}
	.single-text-testi.three .text {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.single-text-testi.three .img {
		margin: auto;
	}
	.main-inner  .listen-head h2 {
		font-size: 36px;
		margin-bottom: 30px;
	}
	/* Blog Page ------- */
	.single-blog,
	.single-blog:nth-child(odd),
	.single-blog .thum,
	.single-blog .thum img,
	.single-blog:nth-child(odd) .thum,
	.single-blog:nth-child(odd) .thum img {
		border-radius: 20px;
	}
	.single-blog .text {
		padding: 40px 15px;
	}
	.single-blog .text h2 {
		font-size: 20px;
		line-height: 1.5;
		min-height: unset;
	}
	/* revision version 1  */
	.single-advanced a p {
		min-height: auto;
	}
	.home-review-left .slick-next, 
	.home-review-left .slick-prev {
		bottom: 55px;
	}
	.single-news .news-text p {
		min-height: auto;
		margin-bottom: 25px;
	}
	.single-news .news-text h3 a{
		min-height: auto;
	}
	.our-location-left ul li > span {
		font-size: 20px;
	}
	.our-location-left ul li a, .our-location-left ul li span.address {
		font-size: 16px;
	}
	.single-footer h5 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.single-footer.four .contact .call {
		font-size: 20px;
	}
	.single-footer .accordion-title {
		font-size: 18px;
	}
	.single-footer ul li a {
		font-size: 14px;
		line-height: 28px;
	}
	.home-single-review .star {
		padding-top: 50px;
		font-size: 25px;
	}
	.our-location-left {
		max-width: 390px;
	}
	.our-location-left ul li a span, .our-location-left ul li span.address span {
		display: block;
	}
	.our-location-left ul li span.address.marlboro span,
	.our-location-left ul li span.address.somerset span {
		display: unset;
	}
	.br-none {
		display: block;
	}
	.sidebar-right {
		width: 100%;
		max-width: 370px;
	}
	.header-nav {
		top: 120px;
	}
	/* mobile inner  */
	.main-inner p, 
	.main-inner p a, 
	.main-inner ul li, 
	.main-inner ul li a, 
	.main-inner ol li, 
	.main-inner ol li a {
		font-size: 16px;
		line-height: 1.6;
	}
	/* mobile paragraph font size */
	.main-inner .single-inner-blog p, 
	.single-inner-blog p,
	.main-inner .inner-dr-sadek p, 
	.inner-dr-sadek p,
	.main-inner .single-five-star p,
	.footer-social p,
	.single-news .news-text p,
	.news-head p,
	.which-for-left p,
	.wanting-right .pera,
	.home-single-review .text p,
	.seminar-right p,
	.find-provider p,
	.finding-the .right p,
	.advanced-top-left p,
	.single-advanced a p,
	.our-sp-head p {
		font-size: 16px;
		line-height: 1.6;
	}


}
/*576 End */
@media all and (max-width: 425px) {
	/* Main Header  */
	.logo a img {
		height: auto;
		width: 140px;
	}
	/* Finding the Best Section  */
	.finding-the .right h2 {
		font-size: 26px;
	}
	.our-location-left ul li a, .our-location-left ul li span.address {
		padding-left: 14px;
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 5px;
	}
	.our-location-left ul li a::before, .our-location-left ul li span.address::before {
		top: 2px;
		left: -8px;
		transform: scale(.8);
	}
}
/* 320  */
@media all and (max-width: 320px) {
	/* Main Header Top  */
	.header-top {
		display: none;
	}
	.header-nav {
		top: 66px;
	}

}