@charset "utf-8";
  
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
/* 
font-family: "Urbanist", sans-serif;
/

/*************** DEFAULT CSS ***************/
:root {
	--body-font:  "Urbanist", sans-serif;
	--body-color: #000;
	--primary-color: #008BD1;
	--secondary-color: #EBF2F8;
	--tertiary-color: #146187;
	--quaternary-color:#002536;	
	--black: #000;
	--white: #fff;
	--grey: #EBF2F8;	
	--grey-light: #F9FAFF;
	--grey-dark: #C0DBE9;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:600;	
	--font-bold:700;
	--font-heavy:800;
	--heading-font: "Urbanist", sans-serif;
}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 28px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-weight-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 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	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(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius:12px;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/*************** 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/dr-appu-tamijmarane.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -100px 0 0 -100px;
}

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

.container {
	width: 1400px;
	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%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	border-radius: 12px; 
}
 .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%; 
}

/******************HERO SECTION**********************/
.hero-section {
	width: 100%;
	height:100vh;
	flex-wrap: wrap; 
	display:flex;
	align-items: center;
	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;
		background-image: url(../images/backgrounds/hero-bg.jpg);
	background-attachment:fixed;
}

.hero-content{
	width:50%;
}
.hero-image{
	width:50%;
}
/*********************************************/ 
 

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:0;
	 z-index:5;
	 /* background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));*/
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
 header.smaller {
	 
	position: fixed;
	background-image:none;
	background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	padding:10px 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom:1px solid var(--black);
	transition: all 0.4s ease;
}
 header.smaller .header{
	 border-bottom:0;
 } 
.logo { 
	width:230px;
	position:relative;
} 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;
}
.top-info{
	justify-content: end;
	display: flex;
	gap:20px;
	font-size:15px;
	font-weight:var(--font-bold);
	align-items: center;
}
.top-info span i{
	font-size:22px;
	margin:0 8px 0 0;
	color:var(--primary-color);
}
 header.smaller  .top-info{
	 display:none;
 }
.goup-wrap{ 
    display: flex;
    flex-wrap: wrap; 
	gap:0 10px;
}

.nav-group{
	display: flex;
    flex-wrap: wrap;
	flex-direction:column; 	 
 
	}
.talk-bt{
 
	 
}
.talk-bt a{
	border-radius:50px !important;
	padding: 15px 50px  15px 30px !important;
}
.talk-bt  a:before{
	top:4px !important;
}
.mobile-content{
	display:none !important;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	padding:20px;
	background-color:var(--primary-color);
	color:var(--white);
	 
}
.mobile-content .add{
	padding:0 0 0 55px;
	margin:10px 0;
	line-height:20px;
	min-height:auto;
 
	 
}
.mobile-content .add p{
	margin:0;
}
.mobile-content .add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--white);
	border-radius: 50%;
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
.mobile-content .add   a{
	color:var(--white);
}
/*****************/

 
.link {}

.link a {
	color:var(--white);
	font-size: 15px; 
	padding: 20px 60px  20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius:10px;
	font-size:16px;
	line-height:normal;
	background-color:var(--primary-color);
	font-weight:var(--font-bold);	
}

.link a:before{
	width:40px;
	height:40px;
	position:absolute;	
	top:10px;
	right:10px;
	content:'';
	z-index:2;
	transform: rotate(-45deg);
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:60%;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
} 
 
.link a:hover:before{
	transform: rotate(0deg); 
	
}
 
.link a:hover { 		 
		background-color:var(--black);
} 


.caps{
	text-transform:uppercase;
}
 
.heading-font{
	 font-weight:var(--font-bold);
 }
.font-medium{
	 font-weight:var(--font-medium);
 }
 .font-normal{
	 font-weight:var(--font-normal);
 }
.heading-big{
	font-size:76px;
	line-height:normal;
	font-weight:var(--font-bold);
} 
.heading{
	font-size:40px;
	line-height:normal;
	font-weight:var(--font-bold);
}
.heading-big{
	font-size:76px;
	line-height:normal;
	font-weight:var(--font-heavy);
}
.heading span{ 
	color:var(--primary-color);
	
}
.subheading {
	font-size: 40px;
	font-weight:var(--font-bold);
	line-height:normal;
}
 
.subtitle{
	font-size: 26px;
	font-weight:var(--font-medium);
}
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
 
	font-size:22px;
	line-height:normal;
	color:var(--primary-color);
	font-weight:var(--font-bold);
	position:relative;
	margin-bottom:20px;
	padding:0 0 0 55px ;
	display:inline-block;
	position:relative;
	 
}
 .section-title:before{
	width:35px;
 	height:2px;
	background-color:var(--grey-dark);
	position:absolute;
	left:0;
	top:50%;
	content:'';
 }

.underlined-text{
	font-size: 20px;
	font-weight:var(--font-medium);
	padding:0 0 10px 0;
	margin:0;
	border-bottom:1px solid #000;
	color:var(--primary-color);
}
/****************************/
  
.pos-rel{
	position:relative;
}
   
 
  

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  background-color:var(--primary-color);
  color:var(--white);
  position:relative;
 }
 .scrolling-text-wrap:before {
	 width:100%;
	 height:1px;
	 position:absolute;
	 left:0;
	 top:50%;
	 content:'';
	 background-color:#fff;
 
 }
 
 .scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 26px;
  line-height:26px;
  font-weight:var(--font-medium);
  text-transform:uppercase;
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--primary-color);
	outline-offset: 4px;
	outline:1px solid var(--primary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 30s infinite linear;
  padding:25px 0;
}
.LeftToRight {
  animation: RightToLeft 30s infinite linear;
   padding:25px 0;
}
/***********/
 
/*********/
@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%);
  }
}


 
  
/*******funfacts***********/


.funfacts {
	width:100%;
	position:relative;
	z-index:2;
	padding:50px 0;
 
	 
}
 
 .funfacts ul{
	width:100%;	 
	list-style:none;
	margin:0;
	padding:0;
	display: grid;
    grid-gap:40px;
    grid-template-columns: repeat(4, 1fr);
	color:var(--white);
} 

.funfacts ul li{
	 
} 
.funfacts .head {
	padding:0 0 20px 60px;
	position:relative;
	margin-bottom:20px;
	border-bottom:2px solid var(--white);
}
.funfacts .head .material-symbols-outlined{
	position:absolute;
	left:0;
	top:0;
	font-size:34px;
	margin:0;
	padding:0;
	 
} 

 .funfacts .head p,  .funfacts .head h2{
	 font-size:18px;
	 line-height:normal;
	 font-weight:var(--font-bold);
	 margin:0;
 }
  .funfacts .head h2{
  	font-size:76px;
	line-height:normal;
	font-weight:var(--font-heavy);
  } 
 
 

 .fun-footer{}
 
 
 /***************/

 .item .testi-style {
    margin: 10px;
    height: 360px;
}
 
 .testi-style{
	border-radius: 12px;
	overflow:hidden;
	padding:90px 50px 40px 50px;
	border:1px solid var(--grey-dark);
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	background-image: url(../images/testi-bg.png);
	background-repeat: no-repeat;
	background-position: right top;
    margin-bottom: 25px;
     
 }

.patient-details{
	background-image: url(../images/icons/stars.png);
	background-repeat: no-repeat;
	background-position: left 20px;
	margin:0;
	padding:40px 0 0 0;
	font-size:18px;
	font-weight:var(--font-bold);
	border-top:1px solid var(--grey-dark);
}
.patient-details span{
	font-size:14px;
} 
 /****************/
  
 .rotating-circle{
	width:145px;
	height:145px;
	display:inline-block;
	position:relative;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/1958.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:90%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 
  
 /**********************news**********************/
 
.news-style{
  	  position:relative;
	  width:100%;
	  overflow:hidden;
	   border-radius: 12px;    
    
} 
.news-single{
     width: 100%;
	 position: absolute;
     bottom:0px;
     left: 0;
	 background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1)); 
	 
}
.news-single-content{ 
	 display: flex;
	 flex-wrap: wrap;
	 flex-direction:column;
	 padding: 40px   20px;
	 line-height:normal;     
     color: var(--white);	 
     -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
	         
}
.news-single-content a{ 
     color: var(--white);	        
}
.news-single-content a:hover{ 
     color: var(--primary-color);	        
}
  
 
.news-single-content h2,  .news-thumb-content h2{
	font-size:20px;
	line-height:24px;
	font-weight:var(--font-medium);
	margin:0 0 15px 0;
    
}
.news-single-content p:last-child{
	margin:0;
}

.news-single-content  .date{
	color:var(--white);
	}

.date{
	font-size:14px;
	color:var(--black);
	text-transform:uppercase;
	word-spacing:2px;
	margin:0 0 15px 0;
	line-height:normal;
	 
}
 
 .news-thumb-row{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin-bottom:40px;
	justify-content: space-between;
	align-items: center;
 
}
 .news-thumb{ 
    width: 50%;
	overflow:hidden;
       
}
 .news-thumb-content{ 
    width: 45%;	  
	line-height:normal;
	
} 
 .news-thumb-content p:last-child{
 	margin:0;
	font-size:16px;      
 }
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
}
.date i{
	font-size:16px;
	color:var(--primary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0;
	 
}
 
  /********************services scroller**********************/
  
.display-style {
    aspect-ratio: 1.3 / 1.2;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    z-index: 2;
    padding: 50px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
  
 .display-style img{
 	display:inline-block;
	width:60px;
 }
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 120px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 24px;
	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:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	background-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;
}


 
  
 
/*********fix buttons**************/ 
.fixbutton{
	width:50px;
	position:fixed;
	top:50%;
	right:0;
	z-index:2;
	margin-top:-95px;
 
}
.fixbutton a{
	width:50px;
	height:50px;
	line-height:50px;	
	/*border-radius:50%;*/
	position:relative;
	color:#fff;
	text-align:center;
	display:block;
	margin:0;
	 -webkit-transition: all 300ms -in-out;
     -moz-transition: all 300ms -in-out;
     transition: all 300ms -in-out;
}
.fixbutton a:hover{
	background-color:var(--black);
}
.fixbutton h5 {
    width: 100px;
    top: 7px;
	right:50px;
    background-color:var(--secondary-color);
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s -in-out;
    -moz-transition: .3s -in-out;
    transition: .3s -in-out;
	opacity:0;
}
.fixbutton a:hover h5{
	 right:60px;
	 opacity:9;
}

.fixbutton h5:before{
	  width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-left: 10px solid  var(--secondary-color);
      border-bottom: 10px solid transparent;
	  position:absolute;
	  top:5px;
	  right:-5px;
	  content:''
	  }
 
 .cal{
	 background-color:var(--secondary-color);
 }
.fixbutton .write{
	background-color:var(--primary-color) !important;
}
a:hover.write {
	background-color:var(--secondary-color);
}
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
	color:#fff;
	}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	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;
	font-size:16px;
	color:var(--white);
	background-image: url(../images/backgrounds/footer.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

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


.footer-left{
	width:65%;
 
}
.footer-right{
	width:25%;	 
}

 
.f-contact{
	padding:0 0 0 100px;
	position:relative;
	color:var(--white);
	font-size:22px;
	line-height:normal;
}
.f-contact span{
	font-size:16px; 
	 
}
.f-contact .icon{
	width:70px;
	height:70px;
	border-radius: 50%;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--primary-color);
	justify-content: center;
	display: flex;
	align-items: center;
	text-align:center;
	color:var(--white);
	font-size:20px;
}




 
  
.lower-footer{
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	border-top:1px solid rgba(0, 139, 209, 0.4);
	padding:40px 0 20px;
	margin-top:80px;
	justify-content: space-between;
 
	}
	
.copy{}
.copy p{
	margin:0;
} 

/***********social ***********/
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
	display: flex;
	gap:5px;
	flex-wrap: wrap; 
 
}
.social a  {
	width:40px;
	height:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:14px;
	text-align:center;
 

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

}
 .social a i{
 	font-size:18px;
	margin:0;
 }
  .social a:hover i{
 	color:var(--white)!important;
 }
 
 
  
  
 /**********************/

 /**********************/
 .address-box{
	padding:50px;
    border-radius: 12px;
	background-color:var(--grey-light);
	border-left:4px solid var(--primary-color);
	} 
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:50px;
	margin-bottom:20px;
	vertical-align:top;
	line-height:24px;
	
	 
}
 
 .add h2{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-medium);
	margin:0 0 10px 0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--primary-color);	 
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	 border-radius: 50%;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

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

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

ul.list li {
	list-style: none;
	padding: 10px 0 10px 30px;
	border-bottom:1px solid #C0DBE9;
	line-height: normal;
	position: relative;
	font-size:24px;
	background-image: url(../images/icons/arrow-bullet.svg);
	background-repeat: no-repeat;
	background-position: left 15px;
}
ul.list li span{
	font-weight:var(--font-bold);
	}
	
/*ul.list li:before {
	/*content: "\f111";*/
	/*content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}*/

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

ul.list1 li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

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

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

/*************mission vison****************/
.blue-strip {
    width:100%;
	height:100px;
	position:absolute;
	left:0;
	bottom:0;
	z-index:-1;
	background-color:var(--grey);
}

/*****************************/
  /************************/
.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;
	}
 

 

 
 

/*************** INNER BANNER ***************/


/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:40vh;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	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/hero-bg.jpg);
 
}
.banner:after{
	width: 100%;
	height:5%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));
	opacity:0.5;
}
.banner h2 {
	color:var(--black);	
	font-weight:var(--font-medium); 
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}
/*************************banners ***************/
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
	 

}
 
.breadcrumb ul {
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	background-color:var(--primary-color);
    border-radius: 50px;
 

}
.breadcrumb li {
    margin: 0;
	font-size:14px;
	text-transform:uppercase;
	color:var(--white);
	font-weight:var(--font-medium);
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
  color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--secondary-color);	
 
}
/*************** JARALLAX ***************/
.doctify a.doctify_carousel_widget_left_container_b10b45d0 {
    padding: 35px 25px;
    background: #e4f2f9;
    border-radius: 10px;
}
/* section.doctify .doctify_carousel_widget_header_star_rating_text_eda458ec {
    margin-bottom: 10px;
	color: #000;
}
section.doctify .doctify_carousel_widget_header_bottom_content_container_eda458ec {
    margin-top: 0px;
} */

 
 
/*************** 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;
}
  

/*********/

 	

 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
/*********file chosen style**************/

  

/*********call back rquest**************/
.call-back-holder{
	width:100%;
	display:flex;
	padding-bottom:10px;
	gap:0 10px;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

 
/*******formstyle******************/ 
 

.formstyle{
	border-radius:12px;
	background-color:var(--primary-color);
	color:var(--white);
	padding:60px 50px;
		
	}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:18px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	color:var(--black);
	display: block;
	border-radius:7px;
	margin: 0;
	font-size: 16px;
	line-height:normal;
 
}

.sendbutton {
	border-radius: 7px;
	color: var(--white);
	font-size: 16px;
	font-weight:var(--font-bold);
	background-color:var(--primary-color);
	border:0;
	padding: 20px 60px 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative; 
	margin:0;
	background-image: url(../images/icons/arrow-blue.svg);
	background-repeat: no-repeat;
	background-position: 68% center;
	background-size:25px;
}

.sendbutton:hover {	
	background-color:var(--black);
		background-image: url(../images/icons/arrow.svg);
 
}

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

.nws-inner {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 15px;
    border-radius: 20px;
}
.nws-cnt {
    padding: 25px 10px;
}
.nws-cnt p:last-child {
	margin-bottom: 0;
}
.nws-cnt h2{
    font-weight: 600;
}
.nws-cnt .date {
    display: inline-block;
    padding:  8px 10px;
    background-color: #ebf2f8;
    border-radius: 5px;
}
.nws-cnt .date i {
    margin: -4px 0px 0 0;
}

a.doctify_carousel_widget_left_container_22d8dac0 {
    background: #e6f5fd;
    padding: 10px 15px;
    border-radius: 15px;
}
/***************************************************************/

.formstyle{
	border-radius: 20px;
	background-color:var(--primary-color);
	color:var(--white);
	padding:60px 50px;
}
.formstyle .fieldset {
	color: var(--white);
	border:1px solid rgba(255, 255, 255, 0.3);
	background-color:rgba(255, 255, 255, 0.2);

}
.formstyle .sendbutton {	 
	color: var(--primary-color);
	background-color:var(--white);
}
.formstyle .sendbutton:hover {	 
	color: var(--white);
	background-color:var(--black);
}

 

/*********************/
::-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);
}
 
/**************************/	 
 
.formstyle ::-webkit-input-placeholder {
	color:var(--white);
}

.formstyle :-moz-placeholder {
	/* Firefox 18- */
	color:var(--white);
}

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

.formstyle :-ms-input-placeholder {
	color:var(--white);
}
 
 /************************************/
 
.footer-right  .fieldset {
	width: 100%;
	padding:18px 20px;
	border:0;
	background-color:#0F3242;
	color:var(--white) !important;
	display: block;
	border-radius:7px;
	margin: 0;
	font-size: 16px;
	line-height:normal;
 
} 
 
 /*********************/
.footer-right ::-webkit-input-placeholder {
	color: var(--white);
}

.footer-right :-moz-placeholder {
	/* Firefox 18- */
	color: var(--white);
}

.footer-right ::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--white);
}

.footer-right :-ms-input-placeholder {
	color: var(--white);
}
 

/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* 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(--primary-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(--black);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1400px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 

 header,  header.smaller{
	 position:relative;
	 left:auto;
	 top:auto;
	 padding:10px 0;
	 
}
 header.smaller {
	position: fixed;
	left:0;
	top:0;
 
}

.header{	 
	border-bottom:0;

}
  
.logo, header.smaller .logo { 
	width:130px;
	position:relative;
}
 
.top-info{
	display:none;
}
 
 
.talk-bt a{
	border-radius:50px !important;
	padding: 8px 25px 8px 15px !important;
	font-size:12px !important;
	line-height:normal;
	margin-bottom: 0 !important;
}
.talk-bt  a:before{
	width:20px;
	height:20px;
	position:absolute;	
	top:5px !important;
	right:10px;
	
}
  

.goup-wrap{
    flex-direction: row-reverse;
	gap:0 10px;
}
   .mobile-content{
 	display:block !important;
 }
 .blue-strip {
	display: none;
 }
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) { 
 .section-spacing{
	 padding:50px 0;
 }

.funfacts ul{
    grid-gap:20px;
    grid-template-columns: repeat(2, 1fr);
} 
 .funfacts .head h2{
  	font-size:50px;
}
 .heading-big{
	font-size:36px; 
 }
.heading{
	font-size:30px;
 
}
.subheading {
	font-size: 30px;
}
ul.list li {
	font-size:20px;
 
}
  
.display-style{ 
 	 aspect-ratio:auto;
	 padding:30px;
 
} 
}

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

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
.formstyle{
	padding:20px;
}
.fieldset {
	padding:14px 20px; 
	font-size: 14px;
}
.formstyle .flex-gap{
	gap:10px 0;
}
 .testi-style{
	padding:90px 20px 20px 20px;
 
}
 .news-thumb-row{  
	align-items: start;
}
 .news-thumb{ 
    width: 100%;
	margin-bottom:25px;
	       
}
 .news-thumb-content{ 
     width: 100%;	  
}

 
.footer {
	padding:50px 0 0 0;
	 
}

  


.footer-left,.footer-right{
	width:100%;
 
}
 
 .footer-right{
	 margin-top:50px;
 
 }
.f-contact{
	padding:0 0 0 50px;
	font-size:16px;
 
}
.f-contact span{
	font-size:14px; 
	 
}
.f-contact .icon{
	width:35px;
	height:35px;
	font-size:18px;
}
 
.lower-footer{
	padding:20px 0 20px;
	margin-top:20px;

	}
	.formstyle p {
    font-size: 14px;
}
 .blue-strip {
	display: block;
 }
 
 
 .formstyle {
     margin-bottom:30px;
 }
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 16px;
	line-height:24px;
	}
 
.banner { 
	height:250px;	 
	border-radius: 0 0 12px 12px;
}
 .funfacts ul{
    grid-gap:20px;
    grid-template-columns: repeat(1, 1fr);
 
} 
 .funfacts ul li{
	border-bottom:2px solid var(--white);
}
.funfacts ul li{
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	 
}
	
.funfacts .head {
	position:relative;
	margin-bottom:0;
	border-bottom:0;
}
 .funfacts .head h2{
  	font-size:40px;
 
  }  
.scroll h2 {
  font-size:20px;
  line-height: 20px;
   
}
 
.RightToLeft  {
  animation: RightToLeft 5s infinite linear;
  padding:15px 0; 
}
.LeftToRight {
  animation: LeftToRight 5s infinite linear;
  padding:15px 0; 
}
 .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;
	 
} 
 .item .testi-style {
    margin: 10px;
    height: auto;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 .sendbutton {
    background-position: 75% center;
}
.link a {
    padding: 15px 40px 15px 25px;
	font-size: 14px;
	margin-bottom: 5px;
}
.link a:before {
    top: 6px;
    right: 5px;
}

}
/************************************* 380px *************************************/
@media only screen and (max-width: 380px) {
    .talk-bt a:before {
		display: none;
    }
	    .talk-bt a {
        padding: 8px 10px 8px 10px !important;
		font-size: 11px !important;
    }
 }

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
	 .sendbutton {
    background-position: 85% center;
}
    .logo, header.smaller .logo {
        width: 120px;
        position: relative;
    }


}

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