@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/*
	font-family: "Josefin Sans", sans-serif;
	font-family: "Bai Jamjuree", sans-serif;

*/ 

:root {
	--body-font: "Bai Jamjuree", sans-serif;
	--body-color: #000;
	--primary-color: #0047af;
	--secondary-color: #4fd9ff;
	--tertiary-color: #DDEEF7;
	--quaternary-color:#E0F0F8;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-light:300;
	--font-medium:400;
	--font-semi-bold:500;
	--font-bold:900;
	 
}

body {
	font-family: var(--body-font);
	font-size: 16px;
	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); 
}


/* *********Scrollbar Styling *************/
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color)  rgba(0, 0, 0, 0.7);  
}

 
 

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px!important; 
  border: 2px solid var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000;    
}
html {
	scroll-behavior: smooth;
	overflow-x:hidden;
	/*scrollbar-color: #555555 #f1f1f1;*/
	scrollbar-width: thin; 
}
 
/**********************/
* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
  background: var(--primary-color);
  color: var(--white);
  -webkit-text-fill-color: var(--white); /* important */
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	transition: all 0.4s ease;
}

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

p {
	margin: 0px 0 20px 0;
	clear: left;
	padding: 0;
	 
}

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;
	transition: all 0.4s ease;
}

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------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, 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);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/*************** PRELOADER ***************/
 
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            z-index: 99999999; /* Ensure it sits on top of everything */
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* The Spinner */
.pulse {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation:pulse 1.5s infinite;
	background-image: url(../images/al-qabail-logo-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
        }

        /* Keyframes for rotation */
     @keyframes pulse{
  0%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.2);
    opacity:.7;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

        /* Hide class to be added via JS */
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }


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

.container {
	width: 1480px;
	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-mobile{
	display:none !important;
}
/*********************/

.img-style{
	position:relative;
	padding:50px 100px 50px 0;
}
.img-style img{
	width:100%;
	display:block;
	position:relative;
	z-index:2;
}
 .img-style:after{
	width:50%;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	content:'';
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	z-index:1;
}
/*************HOVER EFFECT*******/


.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 16px;*/
}

 .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;
    margin:0 0 0 -25px;
    transition: all 0.4s ease;
}
 .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%);
    transition: all 0.4s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


 .hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  transition: all 0.4s ease;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;
}
 
section {
	width: 100%;
	display:block;
	position: relative;
 
}

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


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

 header{
	 width:100%; 
	 position:relative;
	 left:0;
	 top:0;
	 z-index:5;
	 transition: all 0.4s ease;
	 background-color:var(--white);	  
}
 
 header.smaller {
	position: fixed;	 
	border-bottom:0;
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); 
}

.header{
    width:100%;
	height:100px;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:0 25px;
	transition: all 0.4s ease;
 
} 
 header.smaller  .header{
 	height:100px;
 }
.logo { 
	width:360px;
	height:100px;
	position:absolute;
	left:50%;
	top:0;
	margin-left:-180px;
	transition: all 0.4s ease;
	border-left:1px solid var(--grey);
	border-right:1px solid var(--grey);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
 
}
.logo img {
	width:70%;
	display:inline-block;
	transition: all 0.4s ease;
}

.header-right{
	font-size:16px;
	font-weight:var(--font-semi-bold);
	display:flex;
	align-items: center;
	
}
.header-right i{
	margin-right:10px;
	color:var(--secondary-color);
}

  
/***********social ***********/
 
.link {}

.link a {
	
	display:inline-flex;
	flex-wrap: wrap;
	align-items: center;
	color:var(--black);
	font-size: 16px; 
	padding: 0  80px 0 30px;
	height:55px;
	font-style: normal;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	/*background-color:var(--secondary-color);*/
	font-family:var(--font-medium);
	transition: all 0.4s ease;
	border:1px solid var(--secondary-color);

}
.link a:hover {
	color:var(--primary-color);
	border:1px solid var(--primary-color);
}
.link a:before{
	width:55px;
	height:100%;
	position:absolute;	
	color:var(--white);
	top:0;
	right:0;
	content:'+';
	z-index:1;
	transition: all 0.4s ease;
	align-items: center;
	display:flex;
	background-color:var(--secondary-color);
	text-align:center;
	justify-content: center;
	font-size:30px;
}
.link a:hover:before{
	width:60px;
	background-color:var(--primary-color);
	}
 
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.caps{
	text-transform:uppercase;
}
 
.heading{
	font-size:60px;
	line-height:64px;
	color:var(--secondary-color);
}
.txt-gradient{
/*background: -webkit-linear-gradient(var(--primary-color), var(--secondary-color));*/
	background-image: linear-gradient(to left,  var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
.heading span{ 
	 font-weight:var(--font-bold);
	 color:var(--primary-color);
	 }
	 
.subheading {
	font-size: 40px;
	line-height:normal; 
	 
}
 
.subtitle{
	font-size: 22px;
	line-height:normal; 
	font-family:var(--font-bold);
}
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
	display: flex;
    flex-wrap: wrap;
}
 .section-title span{
	display:flex;
	justify-content: center;
	text-align:center;
	font-family:var(--font-medium);
	font-size:16px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:15px;
	border-bottom:1px solid var(--secondary-color);
}
 
/****************************/
  
.pos-rel{
	position:relative;
}
 

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  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: 134px;
  line-height:134px;
  color: var(--quaternary-color);
  font-weight:var(--font-bold);
  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 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%);
  }
}



/************************HOME STYLES************************/
 
 
.facts{   
    display: grid;    
    grid-template-columns: repeat(4, 1fr);
	margin:50px 0;
    }
 .facts .item{   
    justify-content: center;
	flex-direction:column;
	display: flex;
    flex-wrap: wrap;
	border-right:1px solid var(--black);
	text-transform:uppercase;
	text-align:center;
	transition: all 0.4s ease;
    }
	
 .facts .item:last-child{
 	border-right:0;
	}
 
.theme-icon{
	transition: all 0.4s ease;
}

.theme-icon img{
	width:80px;
	transition: all 0.4s ease;
} 
.item:hover .theme-icon img{
	background-color:var(--tertiary-color);
	padding:10px;
  	 
 }
 .facts .item h2{
 	margin:0;
	font-size:16px;
 }
 
 /***********clients*************/
 
.clients{   
    display: grid;
    grid-gap:20px;
	padding:0 15%;
    grid-template-columns: repeat(4, 1fr);
    }
 .clients .item{
	 border:1px solid var(--grey);
	 padding:10px;
	 transition: all 0.4s ease;
	 overflow:hidden;
	 background-color:var(--grey-light);
}
 .clients .item:hover{
 	transform: scale(1.09);
	}
 .clients .item img{
	width:100%;
	display:block;
	transition: all 0.4s ease;
}
 .clients .item:hover img{
 	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	}
 
/**************talent list*************/

 .talent-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            list-style: none;
			margin:0;
			padding:0;
			list-style:none;
        }

        .talent-row {
            width: 100%;
            text-align: center;
            position: relative;
            cursor: pointer;
            z-index: 2;
        }

        .talent-text {
            /*font-size: clamp(3rem, 10vw, 8rem);*/
			font-size: 40px;
            line-height:normal;
			font-weight:var(--font-bold);
            text-transform: uppercase;       
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
			padding:15px 0;
}
.talent-text a{
		color:var(--black);
		}
.talent-text a:hover, .talent-row:hover{
		color:var(--white);
		}
   /* The Black Bar Effect */
        .talent-row::before {
            content: '';
            position: absolute;
            left: -100vw;
            right: -100vw;
            top: 50%;
            height: 0;
            background-image: linear-gradient(to left,  var(--secondary-color), var(--primary-color));
            transform: translateY(-50%);
            z-index: -1;
            transition: height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        }

        /* Hover States */
        .talent-row:hover .talent-text {
            color: var(--white);
        }

        .talent-row:hover::before {
            height: 100%;
        }

        /* Hover Image Styling */
        .hover-image-container {
            position: fixed;
            pointer-events: none;
            width: 250px;
            height: 350px;
            z-index: 10;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;           
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .hover-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none; /* Controlled by jQuery */
        }

        .hover-image-container.active {
            opacity: 1;
            transform: scale(1);
        }
		
/**************doctors listing****************/

 .doctors-listing{   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(4, 1fr);
    }

 .doctors-listing .item{
	 background: var(--quaternary-color);
	 padding:20px;
	 text-align:center;
 
}
 .doctors-listing-info{
	 padding:20px 0;
	 font-size:16px;
	 color:var(--grey-dark);
    }
 .doctors-listing-info h2{
 	font-size:20px;
	font-weight:var(--font-bold);
	line-height:normal;
	margin:0;
	color:var(--primary-color);
}
		
 /**********************news**********************/
 
 
.news-widget{
  	padding:20px 0;
  	color:var(--body-color);
  }
 .news-widget h2{
  	font-size:22px;
  	line-height:normal;
 
  } 
.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(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0; 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
  /********************services scroller**********************/
  
.boxy{ 
     width: 100%;
	 /*aspect-ratio: 1 / 1;
     overflow: hidden;	*/ 
	 position:relative;
	 z-index:2;
	 padding:20px;
	 transition: all 0.4s ease;
 
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }

.vline{
 }
.vline:before{
	width:1px;
	height:100%;
	position:absolute;
	left:40px;
	top:0;
	content:'';
	z-index:1;
	background-color:var(--secondary-color);	 
}  
.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;
	z-index:2;
	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)); 
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
.iconic p:last-child{
	margin:0;
}


 
  
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********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{
	transition: all 0.4s ease;
 
}
.float:hover i{
	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;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	 background-image: linear-gradient(to left,  var(--secondary-color), var(--primary-color));
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 .footer-row{     
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
 
}

.footer-address{
	flex: 0 0 30%;
}
.footer-address p:last-child{
	margin:0;
}
 .footer-logo{
    margin-bottom:20px;
	 
	}
.footer-logo img{
	filter: brightness(0) invert(1);
	width:270px;
	}
.footer-right{
	display:flex;
	flex: 0 0 65%;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px;
}

.footer-right .col{
	 
}
.footer-right .col h2{
	font-size:16px;
	font-weight:var(--font-bold);
	color:rgba(255, 255, 255 ,0.5);
	margin:0 0 20px 0;
	padding:0;
	line-height:normal;
	text-transform:uppercase;
	 
}
.footer-right .col ul, .footer-right .col ul li{
	margin:0;
	padding:0;
	list-style:none;
}
 .footer-right .col ul li a{
	 color:var(--white);
	 display:block;
	 padding:4px 0;
	 line-height:normal;
 }
 .footer-right .col ul li a:hover{
 	color:rgba(255, 255, 255 ,0.5);
	}
.qrcode{}
.qrcode img{
	width:135px;
	display:block;
}
.site-footer{
	justify-content: space-between;
	display: flex;
    flex-wrap: wrap;
	padding:25px 0;
	border-top:1px solid rgba(255, 255, 255 ,0.5);
	margin-top:25px;
	}
.copy{}
.powered{} 
 
	
.social {
 	padding:0;
	display:flex;
	gap:10px;
 
 
}
.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:18px;
	margin:5px; 
	display:inline-flex;
	justify-content: center;
	text-align:center;
	align-items: center;
	border:1px solid rgba(255,255,255,0.6);
}
.social a:hover  {
	border:1px solid var(--secondary-color);
	background-color:var(--secondary-color);
	color:var(--white)!important;
}

 /**********************/
 .address-box{
	padding:30px;
	background-color:var(--primary-color);
	color:var(--white);
 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 30px 60px;
	min-height:30px;
	margin-bottom:30px; 
	vertical-align:top;
	line-height:24px;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.add:last-child{
	border-bottom:0;
	margin-bottom:0; 
	padding:0 0 0 60px;
	
}
 .add h2{
 	font-size:18px;
	line-height:24px;
	font-weight:var(--font-bold);
	color:var(--secondary-color);	 
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--secondary-color);	 
	color:var(--primary-color);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .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(--white);
	}
.add a:hover{
	color:var(--tertiary-color);
	}
	

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

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

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

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

.list-style{
	display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(5, 1fr);
	margin:0;
	padding:0;
	list-style: none; 
	}
 

.list-style li {
	padding:15px 20px;
	background-color:var(--grey-light);
	border:1px solid var(--grey);
	margin:0;
	line-height:16px;
	vertical-align:middle;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	color:var(--black); 
	font-weight:var(--font-bold);
	text-align:center;
	flex-direction:column;
	gap:20px 0;
 
}
.list-style li:nth-child(even) {
    /*background-color:var(--primary-color); */
        }
 
 .list-style img{
 	width:100%;
	display:block;
 }       
 
/*****************************/
 
 
.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:70vh;
	padding-bottom:25px;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	justify-content: flex-end;
	/*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/theme-banner-about.jpg);*/
}
 

/*.banner:before{
	width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-color:rgba(0, 0, 0, 0.5);
	opacity:0.5;
}*/
.banner h2 {
	color:var(--white);	
	font-weight:normal;
	font-weight:var(--font-bold);
	font-size:40px;
	line-height:40px;
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:2;
}
 
.breadcrumb ul {
    border-radius: 50px;
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	border:1px solid var(--white);
	 
}

.breadcrumb li {
    margin: 0;
	font-size:12px;
	line-height:normal;
	color:var(--white);	
	font-family: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 ***************/
.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;
	}
 
/**********forms**************/
 
 input.file{
    display: none;
}

.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: block;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);
}

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

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	border-left:4px solid var(--secondary-color);
	color:var(--black);
	display: block;	 
	margin: 0;
	font-size: 16px;
 
}

.sendbutton {
	 
	color: var(--white);
	font-size: 30px;
	font-weight:var(--font-bold);
	background-color:var(--secondary-color);
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--primary-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;
    /* 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: 1480px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 
  
}
/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {

 .header{
	height:auto;
	padding:0; 
} 
 
.logo { 
	width:250px;
	height:auto;
	position:relative;
	left:auto;
	top:auto;
	margin-left:0;	 
	border-left:0;
	padding:10px 20px;	 

}
.logo img {
	width:100%;
	display:block;
 
}
 

}

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

 .section-spacing{
	 padding:40px 0;
 }
 
 .facts{    
    grid-template-columns: repeat(2, 1fr);
	gap:10px;
}
 .facts .item{   
	border:1px solid var(--grey)!important;
	padding:20px;
 
    }
 .doctors-listing{   
    grid-gap:10px;
}
 .doctors-listing .item{
	 padding:10px;
 
}   
.list-style{
    grid-gap:10px;
    grid-template-columns: repeat(3, 1fr);
	}
 

.list-style li {
	padding:10px;
 
 
}
}
/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 
 
 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
.clients{   
    grid-gap:10px;
	padding:0;
}
 
}

/************************************* 767px *************************************/


 
@media only screen and (max-width: 768px) {

 header,  header.smaller{
	 width:100%; 
	 position:relative;
	 left:auto;
	 top:auto;
	 box-shadow: nopne; 
 	  
}
 
 header .container{
 	padding:0;
 }
 .logo { 
	width:200px;
	 	 

}
.header-right{
	width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	border-top:1px solid var(--grey);
	padding:5px 20px;
	font-size:14px;
} 
.heading{
	font-size:30px;
	line-height:34px;
}

	 
.subheading {
	font-size: 24px;
}
 
.subtitle{
	font-size: 18px;
 
}

/******************/
.hover-image-container {
    display: none; /* Disable floating image on mobile for better UX */
}
.talent-row:hover::before {
    height: 100%;
 }
.talent-text {
	font-size: 20px;
	padding:10px 0;
}
.img-mobile{
	display:block !important;
}
}


/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
 
.banner { 
	height:250px;	 
 
}
.banner h2 {
	font-size:20px;
	 
}
 
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.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;
	 
} 

 .doctors-listing{   
    grid-template-columns: repeat(2, 1fr);
}
  .doctors-listing-info{
	 padding:15px 0;
	 font-size:14px;
 
    }
 .doctors-listing-info h2{
 	font-size:16px;
 
}
.footer {
	padding:50px 0;
	 
}
 .footer-row{     
    gap:15px 0;
 
}
 .footer-address, .footer-right{
	flex: 0 0 100%;
}  
 .footer-right .col{
		flex: 0 0 100%; 
}
.footer-logo img{
	width:180px;
}
.qrcode{
	margin:25px 0;
}

.site-footer{	 
	padding:15px 0 0 0;
	margin-top:20px;
	flex-direction:column;
	gap:10px 0;
	}
.copy{}
.powered{} 

.clients{   
    grid-template-columns: repeat(2, 1fr);
    }
  .address-box{
	padding:20px;
}

 

.add{
	font-size:14px;
	line-height:normal;
	padding:0 0 20px 40px;
}
.add:last-child{
	padding:0 0 0 40px;
	
}
 .add h2{
 	font-size:16px;
	line-height:20px;
 
 }
.add i{
	width:30px;
	height:30px;
	line-height:30px;
	font-size:12px;
}
.list-style{
    grid-template-columns: repeat(2, 1fr);
	}
 .list-style li{
 font-size:14px;
 }
 .float{
 
	bottom:40px;
 
	 
}    
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
  .facts{    
	gap:5px;
}
 .facts .item{   
	padding:15px;
}
.theme-icon img{
	width:50px;
}
 .facts .item h2{
	font-size:14px;
	line-height:14px;
 }
}

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

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