@charset "utf-8";
  
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Barlow", sans-serif; */

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Barlow", sans-serif;
	--body-color: #000;
	--primary-color: #0F87AA;
	--secondary-color: #5BB88B;
	--tertiary-color: #036B89;
	--quaternary-color:#55FA9F;	
	--black: #000;
	--white: #fff;
	--ash:#F3F3F3;
	--grey: #DCDDDE;		
	--grey-light: #F4FCFF;
	--grey-dark: #979797;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:600;	
	--font-bold:700;
	--font-heavy:800;
	--heading-font:"Barlow", serif;
}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	background-attachment:fixed;
	overflow-x: hidden;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
}
 

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
 
.hr {
	margin:40px 0 20px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--grey);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
.text-secondary {
	color: var(--secondary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}



/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }
.bg-ash {
	background: var(--ash);
 
 }
/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/MAGJ-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -100px 0 0 -100px;
}

 
/*********************************/

.container {
	width: 1280px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth {
	width: 100%;
	display: block;
} 
.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
.img-rounded-rb{
	border-radius: 0 0 150px;
	width: 100%;
	display: block;
	}
 .separator{
 	position:relative;
	padding-left:70px;
	border-left:1px solid var(--grey);
 }
  .separator:before{
 	position:absolute;
	top:0;
	left:-2px;
	width:2px;
	height:150px;
	content:'';
	background-color:var(--secondary-color);
	
 }
/*************HOVER EFFECT*******/
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
	overflow:hidden;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
    /* -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;*/
	
	/*-webkit-filter: brightness(70%);*/
	/*filter: grayscale(60%);
	-webkit-filter: grayscale(60%);*/
}   

 
.hover-effect:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #222529;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.3s
}
 .hover-effect:before {
 	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease
	}
	
 .hover-effect:hover:after,
 .hover-effect:hover:before {
    opacity: 0;
    transform: none
}

 .hover-effect:after {
    transform: translateX(-100%);
    background-color: #fff;
    opacity: 0.5;
    transition: transform 0.9s ease, opacity 0.9s ease
}

 .hover-effect:before {
    transform: translateX(100%);
    transition: transform 0.9s ease, opacity 0.9s ease
}/***********************/
 
section {
	width: 100%;
	display:block;
	position: relative;
}

.section-spacing{
   padding:100px 0;
    
}
 
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}
.overflow-hidden{
	overflow-x:hidden !important;
}

/*****************header settngs**********************/ 

.top-container{
	background-color:var(--tertiary-color);
	color:var(--white);
	}
	
.top-inner{
	display: flex;
	flex-wrap: wrap; 
	justify-content: space-between;
	align-items: center; 
} 

.magj-numbers{
}
.magj-numbers ul{
	margin:0;
	padding:0;
	display:flex;
}

.magj-numbers ul li{
	margin:0;
	position:relative;
	padding:10px 20px 10px 60px;
	font-size:18px;
	line-height:20px;
	list-style:none;
	background-repeat: no-repeat;
	background-size:40px;
	border-right:1px solid rgba(255, 255, 255, 0.2);
	
}
.magj-numbers ul li img{
	width:40px;
	display:block;
	position:absolute;
	left:10px;
	top:10px;
}
/*.magj-numbers ul li:nth-child(1) {
 
}
.magj-numbers ul li:nth-child(2) {
	 
}*/
.magj-numbers ul li:nth-child(3) {
 
	border-right:0;
}
.magj-numbers ul li span{
	font-size:14px;
}
.magj-numbers ul li a{
	color:var(--white);
}
.magj-numbers ul li a:hover{
	color:var(--secondary-color);
}

.top-info{
	display:flex;
	gap:0  20px;
	align-items: center;
	justify-content: space-between;
 
}
.top-menu{
	display:flex;
	gap:0  10px;
	color:var(--white);
	}
.top-menu i{
	font-size:14px;
}
.top-menu a{	 
	color:var(--white);
	}	
.top-menu a:hover{	 
	color:var(--secondary-color);
	}

.top-group{
	display: flex;
	gap:0 20px; 
	align-items: center;
} 

.search-bt-holder{
	display:flex;
} 
.search-bt-holder a{	 
	display:block;
	color:var(--white);
	display:flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	font-size:16px;
	 
}
.search-bt-holder a:hover{	 
	color:var(--quaternary-color);
}

	
/***********serch ***********/
 
 .search-wrap {
     margin: 0;
     width: 100%;
     height: auto;
     position: relative;
    /*margin:5px 0 0 25px;
    */
     padding: 0 60px 0 0;
	 /*border-radius: 50px;*/
	 overflow:hidden;
	 border-bottom:1px solid var(--grey-dark);
}
 .search-input {
     width: 100%;
     border:0;
     display:block;
	 /*border-radius: 50px;*/
     color:var(--black) !important;
     background-color:var(--white);
     outline: none;
     vertical-align: middle;
     line-height: 60px;
     height: 60px;
     padding: 0;
     font-size: 18px;
     display: block;
}
 .search-button {
     background-color:var(--white);
     color:var(--black);
     width: 60px;
     height: 60px;
    /*border-radius: 50px;
    */
     border: 0;
     outline: none;
     position: absolute;
     top: 0;
     right: 0;
     z-index: 1;
	  
}
 .search-button:hover {
	  color:var(--primary-color);
} 	
/************/
 header{
	 width:100%; 
	 position:relative;
	 left:0;
	 top:0;
	 padding:15px 0;
	 z-index:5;
	 background-color:var(--primary-color);
	 transition: all 0.4s ease;
}
 header.smaller {
	padding:10px 0;
	position: fixed;
	background-color:var(--tertiary-color);
	/*box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); */ 
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
 
}
 
 .res-group{
	display:flex;
 	gap:0 15px;
	align-items: center;
 }
.logo { 
	width:180px;
	position:relative;
	transition: all 0.4s ease;
	 
}

 
.logo img {
	width:100%;
	display:block;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}
header.smaller .logo {
	width:100px;
	 
}
.nabh{}
.nabh img{
	width:60px;
	display:block;
	transition: all 0.4s ease;
	}
	
 header.smaller .nabh img{
 	width:38px;
 }
 .res-icons{
 	display:none;
	gap:0 5px;
 }
 .res-icons span{
	width:44px;
	height:44px;
	padding:10px;
	border-radius: 50%;
	border:1px solid var(--primary-color);
	background-color:var(--tertiary-color);
 
}
.res-icons span img{
	width:100%;
	display:block;
}
.nav-group{
    display: flex;
    flex-wrap: wrap;
	gap:0 50px;
	align-items: center;
}

.booking-bt{}
.booking-bt a{
	padding:14px 20px;
	border:1px solid var(--white);
	color:var(--white);
	font-size:12px;
	text-transform:uppercase;
	font-weight:var(--font-bold);
	line-height:normal;
	display:inline-flex;
}
.booking-bt a:hover{
	background-color:var(--white);
	color:var(--primary-color);
}
/***********social ***********/
 
.link {}

.link a {
	
	color:var(--white);
	font-size: 14px; 
	padding: 10px  30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:var(--primary-color);
	font-weight:var(--font-bold);
	transition: all 0.4s ease;
	
	 
}

.link a:before{
	width:100%;
	height:0;
	border-radius: 50px;
	position:absolute;	
	background-color:var(--secondary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
} 
 
.link a:hover:before{
	 height:100%;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 .link a span i{
	 vertical-align:baseline;
	 margin-right:10px;
 }
 
/*****************************/


.web-button,  .web-button-white {}

.web-button a,  .web-button-white a {
	
	color:var(--body-color);
	font-size: 14px; 
	padding: 10px  50px 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border:1px solid var(--black);	 
	transition: all 0.4s ease;
}
.web-button a:hover{
	background-color:var(--primary-color);
	color:var(--white);
	border:1px solid var(--primary-color);
	}
	
.web-button a:before{
	width:30px;
	height:30px;
	position:absolute;
	top:7px;
	right:10px;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:20px;
	transition: all 0.4s ease;
} 
 .web-button a:hover:before{
	filter: brightness(0) invert(1);
 }
 
.web-button a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
.web-button a span i{
	 vertical-align:baseline;
	 margin-right:10px;
 } 
 
 .web-button-white a{
	border:1px solid var(--white);
	color: var(--white);
	}
 .web-button-white a:hover{
	border:1px solid var(--secondary-color);
	background-color:var(--secondary-color);
	color:var(--white);
 
	}
 .web-button-white a:before{
 	filter: brightness(0) invert(1);
	
	}
 /************************/
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:46px;
	line-height:normal;
	color:var(--primary-color);
}
.heading span{ 
	color:var(--secondary-color);
	
}
.subheading {
	font-size: 30px;
	line-height:normal;
	color:var(--grey-dark); 
}
 
.subtitle{
	font-size:28px;
	line-height:normal;
 
}
.bold, strong{
	font-weight:var(--font-bold);
}

 
/****************************/
  
.pos-rel{
	position:relative;
}

 .hero-info{   
    display: grid;
    grid-gap:0px;
    grid-template-columns: repeat(3, 1fr);
	background-color:var(--white);
    }
 .hero-info .item{
	 }	
 .hero-info .item a{
 	display:flex;
	padding:25px 50px;
	gap:0 20px;
	font-size:20px;
	color:var(--black);
	text-transform:uppercase;
	font-weight:var(--font-bold);
	align-items: center;
	border-right:1px solid var(--grey);
	transition: all 0.4s ease;
 }
  .hero-info .item a:hover{
  	 color:var(--secondary-color);
  }
   .hero-info .item a:hover .item-icon{
  	background-color:var(--primary-color);
  }
.item-icon{
	transition: all 0.4s ease;
	border-radius: 50%;
	background-color:var(--secondary-color);
	width:50px;
	height:50px;
	text-align:center;
	display: flex;
    justify-content: center;
	align-items: center;
	color:var(--white);
	font-size:20px;
}

/**********************News scroll*****************************/ 

 
.news-scroll{
	display: flex;
    height:70px;
	justify-content: space-between;
	align-items: center;
 
}
.news-heading{
	text-transform:uppercase;
	font-size:24px;
	line-height:normal;
	height:70px;
	padding:0 20px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	line-height:normal;
	background-color:var(--primary-color);
	color:var(--white);
	font-weight:var(--font-bold);
	position:relative;
}
.news-heading:before{
	width:5000px;
	height:100%;
	position:absolute;
	top:0;
	right:100%;
	content:'';
	background-color:var(--primary-color);
	z-index:1;
	
}
.news-heading:after{
	position:absolute;
	top:12px;
	right:-18px;
	content:'';
	border-top: 20px solid transparent;
    border-left: 20px solid var(--primary-color);
    border-bottom: 20px solid transparent;
	z-index:1;
	
}
.scrolling-news{
 
}
/***********************department search*******************************/ 

.outer-wrap{
	position:relative;
	 
}
.dp-search-wrap{
	position:absolute;
	z-index:2;
	left:0;
	bottom:30px;
	width:100%;
}
.dp-search-inner{
	background-color:var(--white);
	padding:20px;
	display:flex;
	align-content: center;
	justify-content: space-between;
}
.dp-search-bt{}

 

/*****************SELECT ****************************/
.select-wrapper {
  position: relative;
  width:37%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  display:block;
  padding: 15px 40px 15px 0;
  border:0;
  border-bottom: 1px solid #000;
  background-color:transparent;
  font-size: 16px;
  color: #747474;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:hover {
  /*border-color: #3182ce;
  box-shadow: 0 0 5px rgba(49,130,206,0.3);*/
}

.select-wrapper i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  pointer-events: none;
}
 

.search-btn{
    height:60px;
	display:inline-flex;
    align-items:center;
    gap:0 20px;
    padding:0 25px;
    font-size:14px;
	line-height:normal;
	text-transform:uppercase;
	color:var(--white);
	font-weight:var(--font-bold);
	vertical-align:baseline;
	border:0;
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    cursor:pointer;
  }
.search-btn:hover{
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}  
  .search-btn i{ /* small nudge so icon sits nicely */
    transform:translateX(0);
    transition:transform .15s ease;
	font-size:20px;
  }
  .search-btn:hover i{
  	transform:translateX(3px);
}

.select-i {
  position: absolute;
  right: 20px;
  top:40%;
  color: #000;
  pointer-events: none;
}


/**********button-row*************/
.button-row,  .iconic-bt, .iconic-bt a{     
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px; 
	color:var(--white);
	font-size:24px;
	font-weight:var(--font-bold);
	 
}
.button-row{
	margin:5px 0 30px 0;
}
.iconic-bt {
	gap:0 30px;
	 
}
.iconic-bt:last-child {
 
	padding:0 0 0 20px;
	border-left:1px solid var(--white);
}
 .iconic-bt a{
	 color:var(--white);
 }
  .iconic-bt i{
	 font-size:30px;
 
 } 
/**********doctor style**************/

.doctor-style{
	background-color:var(--ash);
	}
.doc-head{
	background-color:var(--primary-color);
	text-align:center;
	line-height:normal;
	color:var(--white);
	padding:10px 15px;
}
.doc-head p {
	margin-bottom: 0;
}
.doctor-details{
	text-align:center;
	padding:20px;
}
.doctor-details h2{
	 font-size:18px;
	 font-weight:var(--font-medium);
	 line-height:normal;
	 margin:0 0 5px 0;
	 }
.doctor-details p{
	 font-size:14px;
	 line-height:normal;
	 margin:0;
 
}

.button-wrap{
	display:flex;
	flex-wrap: wrap; 
	row-gap: 4px;
	padding-bottom:30px;
	justify-content: center;
	flex-direction:column;
	text-align:center;
}

.bt-filled, .bt-outline{
 
}
.bt-filled a, .bt-outline a{
	display:inline-flex;
	text-align:center;
	justify-content: center;
	padding:7px 10px;
	color:var(--white);
	font-size:11px;
	line-height:normal;
	background-color:var(--secondary-color);
	border-radius: 5px;
	width:140px;

}
.bt-filled a:hover{
	background-color:var(--primary-color);
}

.bt-outline a{
	background-color:transparent;
	border:1px solid var(--primary-color);
	color:var(--black);
	padding:5px 10px;
}
.bt-outline a:hover{
	background-color:var(--primary-color);
	color:var(--white);
}

/**********team style**************/
 
 .team-grid{   
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;   
    }

	
 .team-grid .item{
	background-color:var(--ash);
	flex: 0 0 calc((100% - 40px) / 3);
	}
 .team-details{
	text-align:center;
	padding:20px;
}
.readmore-btn {
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    padding: 3px 10px;
    margin-top: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
	transition: all ease-in-out 300ms;
}
a:hover .readmore-btn {
	background-color: var(--secondary-color);
	color: var(--white);
}

 
 .team-grid .item h2{
	 font-size:20px;
	 font-weight:var(--font-medium);
	 line-height:normal;
	 margin:0 0 5px 0;
	 }
 .team-grid .item p{
	 font-size:14px;
	 line-height:normal;
	 margin:0;
 
}


/****************INTRO***************/

.intro{
	color:var(--white);
}
.fun-facts, .fun-facts-two{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fun-facts-two{
	grid-template-columns: repeat(2, 1fr);
}
.fun-facts .item{
	padding:15px;
	text-align:center;
	font-size:14px;
	color:var(--white);
	border:1px solid #B2DCD2;
	margin:-1px 0 0 -1px;
	}
 
.fun-facts .item-inner{
	background-color:var(--primary-color);
	padding:20px;
	display:flex;
	position:relative;
	height:120px;
	flex-direction:column;
	align-content: center;
	justify-content: center;
}
.fun-facts .item-inner:before{
	width:18px;
	height:18px;
	position:absolute;
	top:0;
	right:20px;
	content:'';
	z-index:2;
	background-image: url(../images/icons/ribbon-shape.svg);
	background-repeat: no-repeat;
	background-position: center top;
}
.fun-facts .item h2{
	font-size:50px;
	line-height:normal;
	margin:0;
	font-weight:var(--font-bold);
}

/********************/
.facilities-grid{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	grid-gap:20px;
}

.facilities-grid .item{
  display: flex;
  flex-direction: column;  
  justify-content: space-between; 
  align-items: center;   
  aspect-ratio: 1 / 1;
  width: 100%;   
  padding: 25px;
  transition: all 0.4s ease;
  color:var(--white);
  position:relative;
 
}

.facilities-grid .item:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-color:rgba(0, 0, 0, 0.2);
	z-index:0;
	transition: all 0.4s ease;
}
.facilities-grid .item:hover:before{
	background-color:rgba(15, 135, 170, 0.8);
	outline: 1px solid rgba(255, 255,255, 0.5);
    outline-offset: -10px;
}
.facilities-grid .item .head{
	align-self: flex-start;
	position:relative;
	z-index:1;
	}
.facilities-grid .item .head h2{
	font-size:22px;
	line-height:normal;
	font-weight:var(--font-bold);
}

.facilities-grid .item .bottom{
	 width:100%;
	 display:flex;
	 align-self: flex-start; 
	 align-items: center;
	 flex-wrap: wrap; 
	 justify-content: space-between;
	 font-size:18px;
	 font-weight:var(--font-medium);
	 position:relative;
	 z-index:1;
}
.circle-bt{}
.circle-bt a{
	width:40px;
	height:40px;
	border:1px solid var(--white);
	text-indent:-999999999px;
	display:block;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:20px;
	border-radius: 50%;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}

/**************************/

.section-specilities {
	background-color: #eff7ff;
}
.fw-600 {
    font-weight: 600;
}
.my-slider.our-docters-slide {
	padding: 0 60px;
}

/**************************/

.testimonials{
	padding:40px;
	background-color:var(--white);
}
.quote{
	font-size:18px;
	line-height:normal;
	padding:0 0 25px 50px;
	margin-bottom:25px;
	border-bottom:1px solid var(--grey);
	text-align:left;
	position:relative;
}
.quote i{
	position:absolute;
	left:0;
	top:0;
	color:var(--secondary-color);
	font-size:30px;
}
.patient-info{
	text-align:right;
	font-size:20px;
	color:var(--primary-color);
	line-height:normal;
}
.patient-info span{
	font-size:14px;
	color:var(--grey-dark);
}

/**************************************/

.news-grid{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	 
}

.news-grid .item{
  display: flex;
  flex-direction: column;          
  padding: 0 15px;
 	transition: all 0.4s ease;
}
 

.news-widget{
  	padding:20px 0;
  	color:var(--body-color);
	transition: all 0.4s ease;
  }
 .news-widget h2{
  font-size:20px;
  line-height:normal;
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	padding:8px 15px;
	vertical-align:middle;
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	color:var(--white);	 
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0;
	 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }

.border-mid{
	border-left:1px solid var(--grey-dark);
	border-right:1px solid var(--grey-dark);}
.news-grid .item:hover{ background-color: var(--white);}
/**************************/

.video-box{
  display: flex;
  flex-direction: column;  
  justify-content: space-between; 
  align-items: center;   
  width: 100%; 
  height:570px;  
  padding: 25px;
  transition: all 0.4s ease;
  color:var(--white);
  position:relative;
	
}

.video-box .head{
	align-self: flex-start;
	position:relative;
	z-index:1;
	}
.video-box .head h2{
	font-size:52px;
	line-height:40px;
	font-weight:var(--font-bold);
}
.video-box .head h2 span{
	font-size:36px;
}

.play-icon{
	align-self: center;
	position:relative;
	z-index:1;
	width:120px;
	height:120px;
	text-align:center;
	align-items: center;
	justify-content: center;
	display:flex;
	font-size:30px;
	border-radius: 50%;
	border:15px solid rgba(0, 0, 0, 0.1);
	outline: 1px solid rgba(255, 255,255, 0.5);
    outline-offset:  10px;
    background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
}
a .play-icon {
	color:var(--white);}
.video-box  .bottom{
	 
	 display:flex;
	 align-self: flex-end; 
	 flex-wrap: wrap; 		  
	 text-align:right;
}

.location-map{
	width: calc(50vw + 790px);
	overflow:hidden !important;
	padding-left:20px;
}

/************doctors grid********/

 .doctors-grid{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(4, 1fr);
    }
	
/***************/
 .grid-container{   
     display: grid;
     width: 100%;
	 grid-template-columns: 1fr 1fr 1fr;
    } 
.grid-item {
             
            border-right: 1px solid  var(--grey);
            border-bottom: 1px solid var(--grey);
            display: flex;
            transition: background-color 0.2s;
        }

        .grid-item:hover {
           background-color: var(--primary-color);
		   color: var(--white);
        }
 
        
        /* Remove Right Border for every 3rd item (3, 6, 9...) */
        .grid-container .grid-item:nth-child(3n) {
            border-right: none;
        }

        /* Remove Bottom Border for the last 3 items - The bottom row */
        .grid-container .grid-item:nth-last-child(-n+3) {
            border-bottom: none;
        }
 	
	
/********display style*******/

 
  
.display-style{ 
     width: 100%;
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px 40px 40px 120px;
 	 transition: all 0.4s ease; 
	 display: flex;
     flex-wrap: wrap; 
	/* outline: 1px solid #e5e5e5;
     outline-offset: -8px;*/
}

a .display-style{
	color:var(--black);
	
}
a:hover .display-style{
	color: var(--white);
 
}
.icon-row{
	position:absolute;
	left:30px;
	top:40px;
	transition: all 0.4s ease; 
	}
.icon-row img{
	width:60px;
	transition: all 0.4s ease;
}
a:hover .display-style .icon-row{
	top:30px;
	}
a:hover .display-style .icon-row img{
	filter: brightness(0) invert(1);
	}

.explore-bt{
	display:inline-block;
	background-color:var(--secondary-color);
	padding:5px 12px 7px;
	color:var(--white);
	line-height:normal;
	vertical-align:baseline;
	font-size:12px;
	text-transform:uppercase;
	border-radius: 50px;
}
/****************OPD TABLE***************/
.opd-table{
	margin-bottom:25px;
}
.opd-table ul{
    display: flex;
    flex-wrap: wrap; 
	flex-direction:column;
	margin:0;
	padding:0;
	list-style:none;
	row-gap: 0;
	
	}
 
.opd-table ul li{
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding:8px 0 !important;
	line-height:normal;
	font-size:14px;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  padding:20px 0;
  /*background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));*/
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 50px;
  line-height:60px;
  color: var(--white);
  font-weight:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--white);
	outline-offset: 4px;
	outline:1px solid var(--white);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
 




.boxy{
	padding:25px;
	background-color:var(--ash);
}

.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  .display-content{}
  
  .display-content h2{
 	font-size:20px;
	font-weight:var(--font-medium);
	line-height:normal;
	margin:0 0 15px 0;	
 } 
   .display-content p:last-child{
   	margin:0;
   }

.box-style {
    position: relative;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 2px;
    padding: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    outline: 1px solid #3ca7c7;
    outline-offset: -10px;
}

 /*********************************************************/
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 100px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 34px;
	font-family:var(--heading-font-medium);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:70px;
	height:70px;
	text-align:center;
	color:var(--white);
	font-size:24px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color)); 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
.iconic p:last-child{
	margin:0;
}
.m0-p0{
	margin:0 !important;
	padding:0 !important;
} 
  
/******************docror details ***************/


 .listing {
	margin: 0;
	padding: 0;
}

 .listing li {
	list-style: none;
	padding:0 0 0 40px;
	line-height: normal;
	position: relative;
	margin:0 0 20px 0;
}

 .listing li:before {
	/*content: "\f111";*/
	content: "\f00c";
	position: absolute;
	top: 0px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--white);
	font-size: 12px;
	line-height:20px;
	text-align:center;
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	border-radius:50%;
	width:18px;
	height:18px;
	padding:2px;
 
}
.gradient-box {
	padding:40px;
	font-size:20px;
	line-height:normal;
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	color:var(--white);
	margin-bottom:25px;
}
.gradient-box p:last-child{
	margin:0;
}
 .gradient-box h2 {
 	font-size: 30px;
	line-height:normal;
	}
 
/**********************Right fix buttons**********************/

.fix-button{
	position:fixed;	 
	top:40%;
	right:0;
	display:flex;
	justify-content: flex-end;
	flex-direction:column;
	row-gap: 10px;
	z-index:9;
	}
.emergency-button{
    padding:0 !important;
	background-color:var(--primary-color);
	 border-radius: 10px 0 0 10px;
	 overflow:hidden;
 }
.emergency-button, .emergency-button a{
  display:flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  padding:20px 0;
  color:var(--white);
  text-align: center;
  word-break: break-all;
  text-transform:uppercase;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size:16px;
  font-weight:var(--font-bold);
  transition: all 0.4s ease;

 
}
.emergency-button:hover{
	background-color:var(--secondary-color);} 
.float{
	width:50px;
	height:50px;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center; 
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 /*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/magj-theme-bg-main.jpg);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 
.footer-col-grid{   
    display: grid;
    grid-gap:0 70px;
    grid-template-columns: repeat(4, 1fr);
    }
 .footer-col{}
 
 .footer-col h2{
 	color:var(--quaternary-color);
	font-size:20px;
	line-height:normal;
	margin:0 0 20px 0;
	font-weight:var(--font-medium);
 } 

.footer-col ul, .footer-col ul li{
   margin:0;
   padding:0;
   list-style:none;
   }
 .footer-col ul li a{
 	color:var(--white);
	display:flex;
	width:100%;
	padding:5px 0;
	line-height:normal;
	font-size:16px;
 }  
  .footer-col ul li a:hover{
 	color:rgba(255, 255, 255, 0.5);
 
 }  
     
 .lower-footer{
 	padding:25px 0;
	margin-top:50px;
	border-top:1px solid rgba(255, 255, 255, 0.5);
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	
 }  
 
.copyright{
	width:33%;
	 
}
 
.social {
	width:33%;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:34px;
	height:34px;
	line-height:34px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	/*background-color:var(--primary-color);*/

}
.social a:hover  {
	color:var(--white);
	background-color:var(--secondary-color);

}

 .footer-logo { 
	width:150px;
	align-self: end;
}

 
 .footer-logo img {
	width:100%;
	display:block;
	filter: brightness(0) invert(1);
}

 /**********************/
 .contact-box-wrap{
 	display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(3, 1fr);
}

.contact-box {
   background-color:var(--ash);    
   color:var(--body-color);
   padding:40px;
   position:relative;
}
.contact-box:before,  .jobs-listing:before{
 	position:absolute;
	top:0;
	left:-2px;
	width:2px;
	height:50px;
	content:'';
	background-color:var(--secondary-color);
}	
	
.contact-box a{
	 color:var(--body-color);
}
.contact-box a:hover{
	color:var(--primary-color);
}
.contact-box i{
	position:absolute;
	top:20px;
	right:20px;
	width:40px;
	height:40px;
	display:flex;
	align-items: center;
	justify-content: center;
	border:1px solid var(--grey);    
	color:var(--primary-color);
	font-size:14px;
	margin:0;	 
	text-align:center;
	border-radius: 50%;
}
  .contact-box h2{
  	margin:0 0 20px 0;
	font-size:16px;
	line-height:normal;
	text-transform:uppercase;
	font-weight:var(--font-bold);
  }
  .contact-box p{
	  margin:0;
  }
 /**********************/

/**********************/

.package-left {
    flex: 0 0 70%;
	padding-right: 30px;
}
.package-right {
    flex: 0 0 30%;
	padding-left: 25px;
	border-left: 1px solid var(--grey);
}
.hilite-box {
    background-color: #bdecfa;
    padding: 30px;
	background-image: url(../images/health-package-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 30px;
}
.hilite-box p {
    font-size: 19px;
    line-height: 28px;
    text-align: justify;
}
.hilite-box p:last-child {
	margin-bottom: 0;
}
.package-list {
    margin: 0;
    padding: 0;
}
.package-list li {
    list-style: none;
    padding: 0 0 0 35px;
    line-height: normal;
    position: relative;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ash);
	cursor: pointer;
	transition: all ease-in-out 300ms;
	font-weight: 500;
} 
.package-list li:last-child {
    margin: 0;
}
/* .package-list li:before {
    content: "\f0a9";
    position: absolute;
    top: 4px;
    left: 0;
    font-family: "FontAwesome";
    font-size: 17px;
	color: var(--secondary-color);
} */
.package-list li:before {
    content: "\f14c";
    position: absolute;
    top: 1px;
    left: 0;
    font-family: "FontAwesome";
    font-size: 23px;
    color: var(--secondary-color);
}
.package-list li:hover {
	border-color: var(--secondary-color); 
}
.package-list li:hover a {
	color: var(--secondary-color);
}
.rounded-20 {
    border-radius: 20px;
}
.cap {
	padding: 25px 0;
}
.cap h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.message-box {
    background: #ffffff;
    outline: 1px solid #d5d5d5cc;
    outline-offset: -10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	margin-bottom: 50px;
	padding: 30px;
}
.message-box:last-child {
	margin-bottom: 0;
}
.pad-35 {
    padding: 35px;
}
.img-style {
	border-radius: 10px;
	margin-top: 15px;
}

.gray-box {
    padding: 40px;
    background-color: var(--grey-light);
}
.gray-box p {
    font-size: 17px;
    text-align: justify;
}
.gray-box p:last-child {
	margin-bottom: 0;
}
.inn-dlt-box {
	margin-bottom: 20px;
	padding-bottom: 20px;
    border-bottom: 1px solid var(--grey);
}
.inn-dlt-box h2 {
	color: var(--primary-color);
	font-weight: var(--font-bold);
	line-height: normal;
	font-size: 35px;
}
.inn-dlt-box p {
    font-weight: 500;
    color: var(--grey-dark);
	font-size: 18px;
}

/**********************/
 
 /**********************/
 .career-wrap{
 	display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(4, 1fr);
}

 .career-wrap .item {
   display:flex;
   flex-direction:column;
   flex-wrap: wrap;
   text-align:center;
   align-items: center;
   justify-content: center;
   gap:10px 0;
   background-color:var(--ash);    
   color:var(--body-color);
   padding:40px;
   transition: all 0.4s ease;
}
  .career-wrap .item:hover{
  	padding:30px;
	background-color:var(--primary-color);
	color:var(--white);
  }	
 .career-wrap a{
	 color:var(--body-color);
}
 .career-wrap a:hover{
	color:var(--primary-color);
}
 .career-wrap i{
	width:60px;
	height:60px; 
	display:inline-flex;
	align-items: center;
	justify-content: center;   
	color:var(--white);
	font-size:24px;
	margin:0;	 
	text-align:center;
	border-radius: 50%;
	background-color:var(--secondary-color);
}
 .career-wrap h2{
  	margin:20px 0 0 0;
	font-size:20px;
	line-height:normal;
	text-transform:uppercase;
	font-weight:var(--font-bold);
  }
  
 /***********************/
 
 .jobs-listing{
 	padding:30px;
	background-color:var(--ash);
	margin:0 0 20px 0;
	position:relative;
	
 }
 
  .jobs-listing h2,   .jobs-listing h3{
 	 color:var(--primary-color);
	 font-size:30px;
	 font-weight:var(--font-bold);
	 line-height:normal;
	 margin:0 0 15px 0;
  }
   .jobs-listing h2{
  	 border-bottom:1px solid var(--grey);
	 padding:0 0 20px 0;
	 }
  .jobs-listing h3{
 	 color:var(--secondary-color);
	 font-size:20px;
	  line-height:28px;
	  font-weight:var(--font-medium);
	 }
	 
	 .jobs-listing h3 span{
 	 color:var(--black);
	 font-size:16px;	
	 font-weight:normal;
	 display:inline-block;
	 color:var(--grey-dark);
}

/*****************************/

.label-style {
    position: absolute;
    top: -15px;
    background-color: var(--white);
    font-size: 13px;
    left: 13px;
    padding-inline: 5px;
	z-index: 1;
}
form.wpcf7-form.init span.wpcf7-spinner {
    position: absolute;
    right: 42%;
}

/*****************************/

.boxy-ash{
	padding:25px;
	background-color:var(--ash);
	margin:0 0 25px 0;
}
.boxy-ash .fieldset{
	border:0 !important;
	background-color:var(--white);
	}
 /**************************/
 .address-box{
	padding:30px;
}
.add{
	width:100%;
	position:relative;
	padding:0 0 0 50px;
	min-height:30px;
	margin-bottom:20px;
	padding-bottom:20px;
	border-bottom:1px solid rgba(255, 255, 255, 0.2); 
	vertical-align:top;
}
 .add h2{
 	font-size:18px;
	line-height:22px;
	font-weight:var(--font-bold);	 
	margin:0 0 10px 0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	display:flex;
	align-items: center;
	justify-content: center;
	background-color:var(--white);	 
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	border-radius: 50%;
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:570px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--white);
	}
.add a:hover{
	color:var(--quaternary-color);
	}
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 15px 0 15px 40px;
	font-weight:var(--font-medium);
	line-height: normal;
	position: relative;
	font-size:22px;
	color:var(--grey-dark);
	border-bottom:1px solid var(--grey);
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f00c";
	position: absolute;
	top: 20px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 20px;	 
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	} 

/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:500px;
	/*padding-bottom:25px;*/
		overflow:hidden;	 
		display: flex;
	flex-direction:column;
	position: relative;
	align-items: center; 
	justify-content: center; 
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
}

.banner:before{
	width:50%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
 	background-image: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.2)); /* Standard syntax (must be last) */
	
}
 .banner h2 {
	color:var(--white);
	font-weight:var(--font-bold);
	font-size:40px;
	line-height:normal;
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
	
}
 
/*************************banners ***************/
 
.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position: absolute; 
    top: 20px;
	z-index:2;
	align-self: flex-start;
}
 
.breadcrumb ul {
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 10px 0 0 0;
	padding:0;
	align-items: center;
 
 
}
.breadcrumb li {
    margin: 0;
	font-size:16px;
	color:var(--white);
	font-weight:var(--font-medium);
	vertical-align:baseline;
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 10px;
    /*content: " → "; */
	 content: " → ";
	color:var(--white);
	 font-size:20px;
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 
/**********forms**************/
/*********file chosen style**************/

input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
	border: 0;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 0;
}
.custom-file-upload:hover{
	background-color: var(--secondary-color);
}
 label{
 	margin:0 0 12px 0;
	display:block;
 }
 label span{
 	color:#ff0000;
	font-size:20px;
 }
.form-gap{
	gap:0 3.5%;
}

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	min-height:55px;
	padding:10px 20px !important;
	border:1px solid var(--grey);
	background-color:transparent;
	color:var(--grey-dark);
	margin: 0;
	font-size: 15px;
 
}

.sendbutton {
	color: var(--white);
	font-size: 24px;
	font-weight:var(--font-medium);
	background-color:var(--tertiary-color);
	border:0;
	padding: 10px 30px;
	min-height:60px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	 
}

.sendbutton:hover {	
	background-color:var(--secondary-color);
 
}
 
::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}
 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
	 mix-blend-mode: hard-light;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--secondary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

.mobile-menu{
	display:none !important;
	 
	 
}

@media only screen and (max-width: 1600px) {
	.container {
		width: 90%;
	}
}

/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
.container {
	width: 100%;
	padding:0 25px;
}
 .career-wrap .item{
 	 padding:20px;
}
 .career-wrap h2{
 	font-size:18px;
}
}

@media only screen and (max-width: 1100px) {
.top-container{
	display:none;
}
header .container{
	padding:0;
}
 header,  header.smaller{	 
	 padding:0;
}
.header{
	flex-direction:column;
}
 .res-group{
	width:100%;
	padding:15px 20px;
	display:flex;
	justify-content: space-between;
	align-items: center;
 }
.logo, header.smaller .logo{
	width:100px
	
}
 .res-group{
 	gap:0 10px;
 }
.nabh img,  header.smaller .nabh img{
	width:38px
}
.magj-numbers  {
	display:none !important;
}
.res-icons{
	display:flex;
}
.res-icons .textwidget.custom-html-widget {
    display: flex;
    gap: 5px;
}

 .nav-group{
 	width:100%;
	padding:10px 20px;
	gap:0 30px;
	justify-content: space-between;
	border-top:1px solid rgba(255, 255, 255, 0.5);
 
}
.booking-bt a{
	padding:8px 12px;	 
}
.mobile-menu{
	display:block !important;
 
}
.select-wrapper{
	width:32%;
}
.display-style{ 
     
	 padding:20px 20px 20px 90px;
 
}

a .display-style{
	color:var(--black);
	
}
 
.icon-row{
	left:20px;
	top:20px;
	}
.icon-row img{
	width:50px;
 
}

}




/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:40px 0;
 }
 .hero-info .item a{
	font-size:18px; 	 
	padding:20px 20px;
	gap:0 20px;
}
}
/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .hero-info .item a{
	font-size:16px;
	line-height:20px;	 
 
}
 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
.select-wrapper{
	width:30%;
}
.fun-facts{	 
    grid-template-columns: repeat(2, 1fr);
	}

/********************/
.facilities-grid{
    grid-template-columns: repeat(1, 1fr);
	grid-gap:10px 0;
}

.facilities-grid .item{
  aspect-ratio:inherit;
  width: 100%;   
  padding: 20px;
 
}

.facilities-grid .item .head h2{
	font-size:20px;
 
}

.facilities-grid .item .bottom{
	 font-size:16px;
 
}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 .dp-search-wrap{
	position:relative;
	left:auto;
	bottom:auto;
}
.video-box, .google-map{
	height:50vh;
}
 .location-map{
	width: 100% !important;
	padding:20px 0 0 0;
}
.video-box .head h2{
	font-size:24px;
	line-height:28px;
 
}
.video-box .head h2 span{
	font-size:18px;
}
.footer-col-grid{   
    grid-gap:20px 40px;
    grid-template-columns: repeat(2, 1fr);
    }
 .separator{ 
	padding-left:20px;
 }	
 
 .doctors-grid, .departments-grid{   
    grid-gap:10px;
    grid-template-columns: repeat(3, 1fr);
    }
	
.button-row,  .iconic-bt, .iconic-bt a{     
	font-size:18px;
}
 
.iconic-bt {
	gap:0 10px;
	font-size:12px;
	line-height:14px;
	 
}
.iconic-bt:last-child {
	padding:0 0 0 10px; 
}
 
  .iconic-bt i{
	 font-size:20px;
 
 }
 
 .grid-container {
	  grid-template-columns: 1fr 1fr;
        }
 .grid-item {        
      border-right: 1px solid var(--grey)!important;  
      border-bottom: 1px solid var(--grey)!important;   
     }
	  .grid-container .grid-item:nth-child(2n) {
            border-right: none !important;  
        }

        /* Remove Bottom Border for the last 2 items - The bottom row */
        .grid-container .grid-item:nth-last-child(-n+2) {
            border-bottom: none !important;  
        }


}
/************************************* 550px *************************************/
@media only screen and (max-width: 700px) {
.dp-search-inner{
	padding:20px 0;
	justify-content: center;
	flex-direction:column;
	gap:10px 0;
}

.select-wrapper{
	width:100%;
}
select {
  padding: 8px 40px 8px 0; 
  font-size: 14px;
 
}

.dp-search-bt{
	justify-content: center;
	display:flex;
}
.search-btn{
    height:40px;
    gap:0 10px;
    padding:0 15px;
    font-size:12px;
}

 .contact-box-wrap{
    grid-template-columns: repeat(1, 1fr);
}
.my-slider.our-docters-slide {
	padding: 0 25px;
}
.box-style {
    padding: 20px;
}

 .career-wrap{
    grid-gap:10px;
    grid-template-columns: repeat(2, 1fr);
}
 .career-wrap .item{
	 gap:10px 0;
 }
 .career-wrap .item h2{
   font-size:12px;
   margin:0;
}
 .career-wrap .item i{
	 width:40px;
	 height:40px;
	 font-size:18px;
 }
}


/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 16px;
	line-height:24px;
	}
 .hero-info{   
	grid-template-columns: repeat(1, 1fr);
	 
    }
 .hero-info .item{
	 
	 }	
 .hero-info .item a{
 	display:flex;
	padding:10px 0;
	gap:0 15px;
 	border-right:0;
	border-bottom:1px solid var(--grey);
}
.item-icon{
	width:40px;
	height:40px;
	font-size:16px;
}

.heading{
	font-size:26px;
 
}
 
.subheading {
	font-size: 20px; 
}
 
.subtitle{
	font-size:18px; 
}
.breadcrumb ul {
    margin: 10px 0 0 0;
 
}
.banner h2 {
	font-size:20px;
	line-height:
}
 
.scroll h2 {
  font-size:30px;
  line-height: 30px;
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
}
.add{ 
	margin-bottom:10px;
	padding-bottom:10px;
}
.display-style, .display-style:hover{
	padding:20px;
}
 
.fun-facts .item{
	padding:10px;
	font-size:12px;
	line-height:16px;
	color:var(--white);
}
 
.fun-facts .item-inner{
	padding:10px 15px;
 
	
}
 
.fun-facts .item h2{
	font-size:30px;
 
}
.testimonials{
	padding:20px;
}
.img-rounded-rb{
	border-radius: 0 0 50px; 
	}
 .doctors-grid, .departments-grid{   
    grid-template-columns: repeat(1, 1fr);
	grid-gap:10px;
    }
	
.boxy{
	padding:20px;
	background-color:var(--grey-light);
}
.footer {
	padding:40px 0 0 0;
}
/****/
.fix-button{
	top:auto;
	bottom:20px;
	}
.emergency-button{
	border-radius:7px 0 0 7px;
	
 }
.emergency-button, .emergency-button a{
  padding:14px 0;
  font-size:12px;
}
 
.float{
	width:40px;
	height:40px;
    font-size:20px;
}
.gradient-box {
	padding:30px;
	font-size:18px;
}
.sendbutton {
	font-size:24px;
	padding: 10px 20px;
}
 
.news-scroll{
 
    height:50px;
 
 
}
.news-heading{
	font-size:20px;
	height:50px;
}
 
.news-heading:after{
	top:12px;
	right:-10px;
	content:'';
	border-top: 10px solid transparent;
    border-left: 10px solid var(--primary-color);
    border-bottom: 10px solid transparent;
}
.order{
	order:1;
	}
  
.display-style{ 
	 padding:20px;
	 display:flex;
	text-align:center;
	justify-content: center;
	flex-direction:column;
	font-size:14px;
	line-height:18px;
 	 
}

 
 
.icon-row{
	position:relative;
	left:auto;
	top:auto;
	display:flex;
	text-align:center;
	justify-content: center;
	margin-bottom:15px;
	}
.icon-row img{
	width:60px;
	transition: all 0.4s ease;
}

 .team-grid{   
 
    gap: 10px;   
    }
  .team-grid .item{
	flex: 0 0 48%;
	 max-width: 48%; 
	}	
	
 .team-details{ 
	padding:15px;
}
 
 .team-grid .item h2{
	 font-size:16px;
 
	 }
 .team-grid .item p{
	 font-size:12px;
 
 
}
.package-left {
    flex: 0 0 100%;
	padding-right: 0;
	padding-bottom: 35px;
	margin-bottom: 35px;
	border-bottom: 1px solid var(--grey);
}
.package-right {
    flex: 0 0 100%;
	padding-left: 0;
	border-left: 0;
}
.img-style {
    border-right: 0;
	border-bottom: 0;
}
 }

/************************************* 550px *************************************/
@media only screen and (max-width: 550px) {
.footer-col-grid{   
    grid-gap:20px 0;
    grid-template-columns: repeat(1, 1fr);
    }
.lower-footer{
	row-gap: 15px;
}	
.copyright{
	width:100%;
	display:flex;
	text-align:center;
	justify-content: center;
	flex-direction:column;
}
.social,  .footer-logo {
	width:100%;
	justify-content: center;
	text-align:center;
}
 .footer-logo { 
	align-self: center;
	order:-1;
}

 
 .footer-logo img {
	width:150px;
	display:inline-block;
 
}	



}
/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
.news-grid{
    grid-template-columns: repeat(1, 1fr);	 
}

.news-grid .item{       
  padding:   15px 0; 
}	 
 .scroll h2 {
  font-size:20px;
  line-height: 20px;
}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}