@charset "UTF-8";
:root {
	--bodycolor: #fff;
	--primary: #00B4E1;
	--secondery: #E1AF00;
	--blue: #3B98B7;
	--lightblue: #D3F3FC;
	--darkblue: #006283;
	--white: #fff;
	--text: #4E4E4E;
	--grey: #868686;
	--black: #000;
	--ftrbg: #003749;
	--lightbg: #F5F5F5;
	--bodytxt: #464646;
	

	--h1: 48px;
	--h2: 45px;
	--h3: 28px;
	--font20: 20px;
	--font18: 18px;
	--font17: 17px;
	--font16: 16px;
	--font15: 15px;
	--font14: 14px;
	--font13: 13px;

	--body-font: 'Manrope', sans-serif;
	
}



h1,
h2,
h3,
h4,
h5,
p{
    margin: 0;
}

body {
    color: var(--bodytxt);
    font-size: var(--font17);
	line-height: 1.48;
    font-family: var(--body-font);
    overflow-x: hidden;
    background-color: var(--bodycolor);
}

a:focus,
a:active,
button:focus,
button:active {
    outline: 0;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

button::-moz-focus-inner {
    outline: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}


::selection {
    color: var(--white);
    background: var(--primary);
}

::-moz-selection {
    color: var(--white);
    background: var(--primary);
}


.clearfix {
    clear: both;
}
header {
	background-color: transparent;
    position: fixed;
    width: 100%;
	padding: 25px 40px 0;
	z-index: 999;
}
.sticky {
	background: var(--darkblue);
	z-index: 999;
	animation: slide-down 0.7s;
}
.navbar {padding: 0;}
.logo {
	width: 228px;
	margin-top: -15px;
}

.topnav ul li { display: inline-block;}
.topnav ul li a, .ftrcol a {
	display: inline-block;
	color: var(--white);
	font-size: 18px;
	line-height: 1;
	transition: all 0.4s linear;
    text-align: center;
}
.rightnav {
	text-align: right;
}
.topnav ul li a {
	width: 24px;
	height: 24px;
	font-size: 18px;
	margin-right: 15px;
	display: block;
}
.nav li a {
	display: block;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: var(--white);
	padding: 20px 20px 25px;
}

header .navbar .nav .dropdown-menu {
	margin: 0 0px 0;
	padding: 14px 0;
	text-align: left;
	list-style: none;
	background-color: #fff;
	border: 0;
	border-radius: 0px;
	width: 240px;
	-webkit-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);
	-moz-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);
	-o-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);
	-ms-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);
	box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);
	z-index: 999;
}

header .navbar .nav .dropdown-menu li {
	display: block;
	float: none;
	padding: 0 25px;
}

header .navbar .nav .dropdown-menu li a {
	color: var(--grey);
	font-size: var(--font14);
	line-height: 1;
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid #eee !important;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
	font-weight: 500;
}

.dropdown-toggle::after {
	color: var(--secondery);
    margin-left: 0.355em;
    vertical-align: 0.105em;
    border-top: 0.43em solid;
    border-right: 0.37em solid transparent;
    border-left: 0.37em solid transparent;
}

header .navbar .nav .dropdown-menu li:last-child a {
	border-bottom: 0 !important;
}

header .navbar .nav .dropdown-menu li a:hover,
header .navbar .nav .dropdown-menu li a:active,
header .navbar .nav .dropdown-menu li a:focus {
	text-decoration: none;
}

header .navbar .nav .dropdown-menu li:hover a {
	color: var(--primary);
}

.dropdown-link .dropdown-menu {
	border: 0;
	right: 0;
	left: auto;
}

.mob-nav {
	display: none;
}

.herobanner {
	background: radial-gradient(79.18% 79.27% at 44.18% 60.29%, #00B4E1 0%, #00506B 100%);
	height: 100vh;
	overflow: hidden;
}

.introwrap {
	display: flex;
	flex-wrap: wrap;
}
.introcol {
	width: 20%;
}
.introcol p {
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.4;
}
/*------------------ common css ------------------*/

.container{
	max-width: 1440px;
    width: calc(100% - 160px);
    margin: auto;
	
}

h1{
	font-size: 48px;
	line-height: 54px;
	font-weight: 300;
	margin-bottom: 30px;
}
h2{
	font-size: 45px;
	font-weight: 300;
	margin-bottom: 35px;
}
h3{
	font-size: 28px;
	line-height: 38px;
	font-weight: 600;
}
h4{
	font-size: 24px;
	line-height: 36px;
	font-weight: 600;
}
h5{
	font-size: 20px;
	line-height: 26px;
	font-weight: 400;
}
h6{
	font-size: 18px;
	font-weight: 700;
	line-height: 23px;
}

.fw-200{font-weight: 200 !important;}
.fw-300{font-weight: 300 !important;}
.fw-400{font-weight: 400 !important;}
.fw-500{font-weight: 500 !important;}
.fw-600{font-weight: 600 !important;}
.fw-700{font-weight: 700 !important;}
.fw-800{font-weight: 800 !important;}

.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-25 {margin-bottom: 25px;}
.mb-30 {margin-bottom: 30px;}
.mb-35 {margin-bottom: 35px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}

.pb-60 {padding-bottom: 60px;}
.pb-80 {padding-bottom: 80px;}

.pl60{padding-left: 60px;}
.pr60{padding-right: 60px;}

.primary-txt{color: var(--primary);}
.blue-txt{color: var(--blue);}
.dark-txt{color: var(--text);}
.white-txt{color: #fff;}

.section-space{padding-top: 60px; padding-bottom: 60px;}
.section-space-two{padding-top: 80px; padding-bottom: 80px;}

.pagebanner{
	background-color: var(--darkblue);
	padding: 200px 0 60px;
}
.bannerdes {
	margin-left: 100px;}
.bannerdes h1{
	font-size: 45px;
	font-weight: 300;
	color: var(--primary);
}

.normal-btn{
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	padding: 12px 17px;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	-webkit-transition: all 400ms linear;
	-moz-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	-ms-transition: all 400ms linear;
	transition: all 400ms linear;
}
.normal-btn + .normal-btn{
	margin-left: 20px;
}
.normal-btn:hover{background-color: var(--darkblue); color: #fff;}
.yellow-btn{background-color: var(--secondery);}
.blue-btn{background-color: var(--primary);}
.midcontainer {
	max-width: 730px;
	margin: 0 auto;
	text-align: center;
}
.midcontainer p {
	padding-bottom: 15px;
}
/*------------------ home css ------------------*/

.herobanner .container{height: 100%; color: #fff; display: flex; align-items: center;}
.banner-dr-img{position: absolute; left: 3.5%; bottom: 0; width: 42%;}
.btnrow{padding: 70px 0; display: flex; align-items: center;}
.btnrow .or-text, .btnrow .cont-no {margin-left: 20px;}
.btnrow .cont-no h4 {line-height: 1; letter-spacing: -0.02em;}
.btnrow .cont-no h4 a{color: var(--primary);}
.btnrow p {font-size: 15px;}
.intro-panel:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 65%;
	background: url("../images/spine-pain.jpg") no-repeat center right;
	background-size: cover;
	z-index: -1;
}
.introwrap, .factswrap, .treatwrap {display: flex; flex-wrap: wrap;}
.introcol {padding: 10px 25px 0; border-right: 1px dashed var(--grey);}
.introcol:last-child {border-right: 0;}
.introcol p {font-size: 16px; color: var(--grey);}
.facts-panel {background: var(--lightblue);}
.facts-panel:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 70%;
	background: var(--lightblue) url("../images/straight-facts.jpg") no-repeat center left;
	background-size: cover;
}
.facts-panel p{font-size: 16px;}
.factscol{
	width: calc(50% - 8px);
	background-color: #fff;
	border: 1px solid #3B98B7;
	border-radius: 12px;
	padding: 22px 25px;
}
.treatcol{
	width: calc(25% - 12px);
	height: 310px;
	background-color: #fff;
	border-radius: 15px;
	padding: 25px 30px;
	display: inline-flex;
	align-items: flex-end;
}
.spinesurgery {background: var(--lightblue) url("../images/treat-spine-surgery.jpg") no-repeat center center; background-size: cover;}
.sciatica{background: var(--lightblue) url("../images/treat-sciatica.jpg") no-repeat center center; background-size: cover;}
.neckpain{background: var(--lightblue) url("../images/treat-neckpain.jpg") no-repeat center center; background-size: cover;}
.spondilitis{background: var(--lightblue) url("../images/treat-spondilitis.jpg") no-repeat center center; background-size: cover;}

#patients-slider .item {
	position: relative;
	margin: 0 auto;
	display: block;
	min-height: 600px;
	height: 80vh;
	background-color: #fff;
}
.slideimgbg {
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
}
.slideimgbg:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:  rgba(0, 0, 0, 0.2);
}
.patient-quote p{
	font-size: 18px;
	line-height: 1.3;
}
.patient-quote{
	padding-left: 60px;
	background: url("../images/quote-sign.svg") no-repeat 0% 4px;
	background-size: 40px;
	position: relative;
}
.patient-quote a, .patient-quote a img, #patients-slider.owl-theme .owl-controls .owl-page span{
	-webkit-transition: all 400ms linear;
	-moz-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	-ms-transition: all 400ms linear;
	transition: all 400ms linear;
}
.patient-quote a:hover{
	color: var(--primary);
}
.patient-quote a:hover img{
	transform: scale(0.9);
	opacity: 0.5;
}

#patients-slider.owl-theme .owl-controls{
	max-width: 1440px;
    width: calc(100% - 160px);
    margin: auto;
    bottom: 80px;
    position: absolute;
	text-align: left;
	right: 0;
}
#patients-slider.owl-theme .owl-controls .owl-page {vertical-align: middle;}
#patients-slider.owl-theme .owl-controls .owl-page span{
	height: 10px;
	width: 10px;
	background: #fff;
}
#patients-slider.owl-theme .owl-controls .owl-page.active span{
	height: 14px;
	width: 14px;
	background: var(--primary);
}
/*------------------ about css ------------------*/
.aboutimg {
	background-color: #D7E2E4;
	padding-top: 40px;
	text-align: center;
}
.aboutimg img {
    width: 100%;
}
.aboutleft {
	padding-right: 50px;
}
.about-panel p {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	padding-bottom: 15px;
	color: var(--bodytxt);
}

.aboutright {
	margin-bottom: 60px;
}
.aboutright h3 {
	line-height: 1.4;
	font-weight: 500;
	margin-top: 25px;
}
.aboutright h3 span {
	display: block;
	font-size: 17px;
}
.list {
	padding: 0px 0 20px;
	margin: 0 0 0 22px;
}
.list li {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	padding: 0 0 8px;
	color: var(--bodytxt);
}
.list li:last-child{
	padding-bottom: 0;
} 
ul.sub-list{
	padding: 10px 0 0 25px;
}
ul.sub-list li {
    font-size: 16px;
    padding: 4px 0 2px;
}
.midcontainer h4 {
	padding-bottom: 20px;
}
.secdes h5 {
	padding-bottom: 15px;
}
.secdes h4 {
	padding-bottom: 20px;
	line-height: 1.1;
	font-size: 24px;
}
.comp-ergo .col-md-6:first-child {border-right: 1px dashed var(--grey);}
/*------------------ spine css ------------------*/

.secimg img {
	width: 100%;
}
.secdes h3, .secrow h3, .bgright h3 {
	color: var(--primary);
	margin-bottom: 35px;
}
.secdes p, .bgright p {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	padding-bottom: 15px;
}
.secdes p:last-child, .bgright p:last-child {
    padding-bottom: 0;
}
.secrow img { width: 100%; margin-bottom: 50px;}
.bg-panel {
	background-color: var(--lightbg);
}
.bgleft img { width: 100%;}
.bgright {
	padding: 60px 60px 40px 70px;
}
.bgright h5, .secwrap h5 {	
	font-size: 22px;
	line-height: 1.1;
	padding-bottom: 25px;
}

.back-abuse-row{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.back-abuse-col{
	width: 19.95%;
}
.back-abuse-col img{
	margin-bottom: 20px;
	width: calc(100% - 20px);
	    border: 1px solid #eee;
}
.advantages-block{
	background-color: #d7e2e4;
	padding: 35px 40px;
	margin: 40px 0;
}
.tumor-type-block img{max-width: 100%;}
.slipped-disc-treat .bgleft{
	background-image: url(../images/treatment-lumbar-disc-herniation.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 70% 80%;
	min-height: 700px;
}
/*------------------ contact css ------------------*/
.contactwrap {
	padding: 5px 0;
}
.contact-info-panel{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contactdes{
	width: calc(50% - 19px);
	padding: 25px 30px 30px;
	border: 1px solid #C4C4C4;
	margin-bottom: 40px;
	border-radius: 15px;
}
.contact-ico-list{ 
	display: flex;
	justify-content: flex-start; 
	flex-wrap: nowrap;
}
.contact-ico-list i{
	width: 44px;
	padding: 2px 20px 0 0;
	font-size: 24px;
    line-height: 24px;
}
.contactwrap ul li{
	list-style: none;
	line-height: 1.3;
	padding: 5px 0;
}
.contactdes a{color: var(--bodytxt);}
.contactdes a, .contact-intro.sticky-top.sticky-contact-bar a{	
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.contact-intro.sticky-top.sticky-contact-bar a {
    padding: 0 10px;
    color:  var(--darkblue);
    font-weight: 600;
}
.contactdes a:hover, .contact-intro.sticky-top.sticky-contact-bar a:hover{
	color: var(--primary);
}
.contact-intro br{
	display: none;
}
.sticky-contact-bar{
	top: 110px;
	background-color: #D7E2E4;
	padding: 20px;
	z-index: 990;
}
.section-anchor{
	height: 0;
	margin: -200px 0 200px;
}
#mumbaisec.section-anchor{
	height: 0;
	margin: -250px 0 250px;
	    position: absolute;
}
/*------------------ footer css ------------------*/
footer {
    
    padding: 63px 0px 0;
    width: 100%;
    bottom: 0;
	color: var(--white);
    background-color: var(--ftrbg);
}
.ftrwrap { padding-bottom: 60px;}
.ftrlogo {
	width: 185px;
	margin-bottom: 18px;
}
footer p {
    font-size: var(--font14);
    line-height: 1.7;
    font-weight: var(--weight400);
    padding: 0;
    margin: 0;
}
.ftrcol h4 {
	font-weight: 700;
font-size: var(--font18);
line-height: 1;
color: var(--primary);
	margin-bottom: 25px;
}
.links li {
	display: block;
}
.links li a {
	display: inline-block;
	font-size: var(--font14);
    line-height: 1.1;
    font-weight: var(--weight400);
	color: var(--white);
	padding: 10px 0;
	transition: all 0.4s linear;
	text-align: left;
}
.links li a:hover, .ftrcol a:hover {
	color: var(--primary);
	padding-left: 6px;
}
.ftrcol h5 {
	font-weight: 600;
font-size: var(--font14);
line-height: 1.3;
color: var(--white);
	margin-bottom: 18px;
}
.ftrcol p {
	font-size: var(--font14);
    line-height: 1.7;
    font-weight: 400;
    padding: 0;
    margin-bottom: 18px;
	transition: all 0.4s linear;
}
.ftrsocial {
	margin-top: 40px;
}
.ftrsocial ul li { display: inline-block;}
.ftrsocial ul li a, .ftrcol a {
	display: inline-block;
	color: var(--white);
	font-size: 18px;
	line-height: 1;
	transition: all 0.4s linear;
    text-align: center;
}
.ftrcol a {
	font-size: var(--font14);
}
.ftrcol p img {
	width: 26px;
	margin-right: 7px;
}
.phonetxt {
	display: flex;
	align-items: center;
}
.common-btn-block a {
    font-size: 16px;
    padding: 20px 8px 0;
    display: inline-block;
    color: var(--secondery);
	-webkit-transition: all 0.4s linear;
	   -moz-transition: all 0.4s linear;
	     -o-transition: all 0.4s linear;
	        transition: all 0.4s linear;
}
.common-btn-block a:hover{
	color: var(--primary);
}
.common-btn-block{
	margin-top: 20px;
	border-top: 1px dashed rgba(255, 255, 255, 0.19);
}
.icon-button {
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	height: 2.6rem;
	line-height: 2.6rem;
	margin-right: 10px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 2.6rem;
}
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}
.icon-button:hover span {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 0;
	margin: -1.3rem;
}

/* Icons */
.icon-button i {
	background: none;
	color: white;
	height: 2.6rem;
	left: 0;
	line-height: 2.6rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 2.6rem;
	z-index: 10;
}

.twitter span {
	background-color: #4099ff;
}
.facebook span {
	background-color: #3B5998;
}
.linkedin span {
	background-color: #007bb6;
}

.instagram span {
	background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-glinkedin,
.icon-button:hover .fa-instagram {
	color: white;
}
.btmwrap {
	padding: 35px 0 45px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.btmwrap a {
	color: #C8C8C8;
	font-size: 12px;
	text-transform: uppercase;
	line-height: 1;
}
.btmwrap p {
	font-size: 14px;
	line-height: 1;
}
.txtlink {
	transition: all 0.4s linear;
}
.txtlink img {
	width: 20px;
	margin-top: -15px;
	transition: all 0.4s linear;
}
.txtlink:hover {
	color: var(--primary);
}
.txtlink:hover img{
	transform: scale(1.1);
}

.back-to-top {
    width: 50px;
    height: 50px;
    opacity: 1;
    position: fixed;
    bottom: 20px;
    text-align: center;
    right: 20px;
    display: none;
    background: var(--primary);
    z-index: 999;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    padding: 15px 0;
    font-weight: 400 !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
	    border-radius: 10px;
}
.back-to-top:hover {
	background: var(--darkblue);
}
.top-arrow{
	width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    display: block;
    border-right: 2px solid #fff;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.top-arrow:before{
	content: "";
	position: absolute;
	height: 18px;
	border-left: 2px solid #fff;
    left: 1px;
    top: -3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.mob-call-no {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--secondery);
	-webkit-transition: all 400ms linear;
	-moz-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	-ms-transition: all 400ms linear;
	transition: all 400ms linear;
}
a.mob-call-no:hover {
    color: var(--primary);
}

.topnav a.mob-call-no {
    margin: 2px 0 3px auto;
    justify-content: flex-end;
    padding-right: 20px;
	color: #fff;
}
.topnav a.mob-call-no p{
    font-size: 15px;
}
.banner-link-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
.banner-link-wrap h4{
	line-height: 1; letter-spacing: -0.02em;
}
.banner-link-wrap a, .btnrow .cont-no h4 a {white-space: nowrap;}
.banner-link-wrap p {font-size: 15px;}
.banner-link-wrap .cont-no p, .banner-link-wrap .cont-no a {color: #fff;}
/*------------------ all images css ------------------*/
.logo img, .banner-dr-img img, .ftrlogo img {
    width: 100%;
}




@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}