@charset "utf-8";

html {
	box-sizing: border-box;

}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Arial", "Helvetica", 'Helvetica Neue', "sans-serif";
	font-weight: 400;
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header .NavSpace { /* to give space for top navbar*/
        width: 100%;
        background: #989FAC;
        min-height: 75px;
    }























/*EXTRA LARGE MONITOR - START*/

@media screen and (min-width: 2100px){
	.HeroMedical {/*Hero Image and area*/
        display: flex;
        margin: 75px auto 0;
        width: 100%;
        min-height: 700px;
        background-image: url("images/Medical/MedSteth1200x467.jpg"); /*first rgba values give dark effect to image*/
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: contain;
        align-content: center;
        align-items: center;
        z-index: -1;
    }

	
	/*image gallery - START*/
	.pic_gallery {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			width: 50%;
			height: auto;
			margin: 100px auto ;
			padding: 20px;
            border: 2px solid #EFEFEF;
            z-index: -1;
			border-radius: 10px;
		}
	  
	/* CONTAINERS THAT IMAGES ARE IN */
	.column {
	display: flex;
	flex: row wrap;
	justify-content: justify;
	align-items: center;
	align-content: center;
	width: 30%;
	height: auto;
	margin: 10px auto;
	
	}
	.column > img {
		max-height: full;
		width: 100%;
		border: 2px solid #EFEFEF;
		border-radius: 10px;
		padding: 10px;
	}
	  
	  /* The Modal (background) */
	  .modal {
		display: none;
		position: fixed;
		z-index: 1;
		padding-top: 50px;
		left: 0;
		top: 75px;
		width: 100%;
		height: 100vh;
		overflow: auto;
		background-color: rgba(0,0,0,0.8);
	  }
	  
	  /* Modal Content */
	  .modal-content {
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 0;
		max-width: 70%;
		background: rgba(0,0,0,0.5);

	  }
	  .ModalImg {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		height: auto;
		max-height: 80vh;
		object-fit: contain;
	  } 
	  .ModalVid {
		width: 100%;
		object-fit: cover;
		z-index: -100;
	  }
	  /* The Close Button */
	  .close {
		color: white;
		position: absolute;
		top: 10px;
		right: 25px;
		font-size: 35px;
		font-weight: bold;
	  }
	  
	  .close:hover,
	  .close:focus {
		color: #999;
		text-decoration: none;
		cursor: pointer;
	  }
	  
	  /* Hide the slides by default */
	  .mySlides {
		display: none;

	  }


	  /* Next & previous buttons */
	  .prev,
	  .next {
		cursor: pointer;
		position: absolute;
		top: 50%;
		width: auto;
		padding: 16px;
		margin-top: -50px;
		color: white;
		background-color: rgba(0, 0, 0, 0.4);
		font-weight: bold;
		font-size: 20px;
		transition: 0.6s ease;
		border-radius: 0 3px 3px 0;
		user-select: none;
		-webkit-user-select: none;
	  }
	  
	  /* Position the "next button" to the right */
	  .next {
		right: 0;
		border-radius: 3px 0 0 3px;
	  }
	  
	  /* On hover, add a black background color with a little bit see-through */
	  .prev:hover,
	  .next:hover {
		background-color: rgba(0, 0, 0, 0.8);
	  }

	  
	  img.demo {
		opacity: 0.6;
	  }
	  
	  .active,
	  .demo:hover {
		opacity: 1;
	  }
	  
	  img.hover-shadow {
		transition: 0.3s;
	  }
	  
	  .hover-shadow:hover {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		cursor: pointer;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
	  }
}   
/*EXTRA LARGE MONITOR - END */

























/*LARGE MONITOR SIZE - START*/
@media screen and (min-width: 1622px) and (max-width: 2099px){
	.HeroMedical {/*Hero Image and area*/
        display: flex;
        margin: 75px auto 0;
        width: 100%;
        min-height: 700px;
        background-image: url("images/Medical/MedSteth1200x467.jpg"); /*first rgba values give dark effect to image*/
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: contain;
        align-content: center;
        align-items: center;
        z-index: -1;

    }



/*image gallery - START*/
	.pic_gallery {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 70%;
		height: auto;
		margin: 100px auto ;
		padding: 20px;
		border: 2px solid #EFEFEF;
		z-index: -1;
		border-radius: 10px;
	}
  
/* CONTAINERS THAT IMAGES ARE IN */
.column {
display: flex;
flex: row wrap;
justify-content: justify;
align-items: center;
align-content: center;
width: 30%;
height: auto;
margin: 10px auto;

}
.column > img {
	height: auto;
	width: 100%;
	border: 2px solid #EFEFEF;
	border-radius: 10px;
	padding: 10px;
}
  
  /* The Modal (background) */
  .modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 50px;
	left: 0;
	top: 75px;
	width: 100%;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
  }
  
  /* Modal Content */
  .modal-content {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 0;
	max-width: 70%;
	background: rgba(0,0,0,0.5);

  }
  .ModalImg {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: contain;
  } 
  .ModalVid {
	width: 100%;
	object-fit: cover;
	z-index: -100;
  }
	  /* The Close Button */
	  .close {
		color: white;
		position: absolute;
		top: 10px;
		right: 25px;
		font-size: 35px;
		font-weight: bold;
	  }
	  
	  .close:hover,
	  .close:focus {
		color: #999;
		text-decoration: none;
		cursor: pointer;
	  }
	  
	  /* Hide the slides by default */
	  .mySlides {
		display: none;
	  }
	  
	  	  /* Next & previous buttons */
	  .prev,
	  .next {
		cursor: pointer;
		position: absolute;
		top: 50%;
		width: auto;
		padding: 16px;
		margin-top: -50px;
		color: white;
		background-color: rgba(0, 0, 0, 0.4);
		font-weight: bold;
		font-size: 20px;
		transition: 0.6s ease;
		border-radius: 0 3px 3px 0;
		user-select: none;
		-webkit-user-select: none;
	  }
	  
	  /* Position the "next button" to the right */
	  .next {
		right: 0;
		border-radius: 3px 0 0 3px;
	  }
	  
	  /* On hover, add a black background color with a little bit see-through */
	  .prev:hover,
	  .next:hover {
		background-color: rgba(0, 0, 0, 0.8);
	  }

	  
	  img.demo {
		opacity: 0.6;
	  }
	  
	  .active,
	  .demo:hover {
		opacity: 1;
	  }
	  
	  img.hover-shadow {
		transition: 0.3s;
	  }
	  
	  .hover-shadow:hover {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		cursor: pointer;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
	  }
/*image gallery - END*/
}
/*LARGE MONITOR SIZE - END*/






























/*MONITOR SIZE - START*/
@media screen and (min-width: 1101px) and (max-width: 1621px) {
	.HeroMedical {/*Hero Image and area*/
        display: flex;
        margin: 75px auto 0;
        width: 100%;
        min-height: 550px;
        background-image: url("images/Medical/MedSteth1200x467.jpg"); /*first rgba values give dark effect to image*/
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: contain;
        align-content: center;
        align-items: center;
        z-index: -1;

    }

	
	/*image gallery - START*/
	.pic_gallery {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 70%;
		height: auto;
		margin: 75px auto ;
		padding: 20px;
		border: 2px solid #EFEFEF;
		z-index: -1;
		border-radius: 10px;
	}
	  
	/* CONTAINERS THAT IMAGES ARE IN */
	.column {
	display: flex;
	flex: row wrap;
	justify-content: justify;
	align-items: center;
	align-content: center;
	width: 30%;
	height: auto;
	margin: 10px auto;
	
	}
	.column > img {
		height: auto;
		width: 100%;
		border: 2px solid #EFEFEF;
		border-radius: 10px;
		padding: 7px;
	}
	  
	  /* The Modal (background) */
	  .modal {
		display: none;
		position: fixed;
		z-index: 1;
		padding-top: 50px;
		left: 0;
		top: 75px;
		width: 100%;
		height: 100vh;
		overflow: auto;
		background-color: rgba(0,0,0,0.8);
	  }
	  
	  /* Modal Content */
	  .modal-content {
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 0;
		max-width: 70%;
		background: rgba(0,0,0,0.5);
	
	  }
	  .ModalImg {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		height: auto;
		max-height: 80vh;
		object-fit: contain;
	  } 
	  .ModalVid {
		width: 100%;
		object-fit: cover;
		z-index: -100;
	  }
		  /* The Close Button */
		  .close {
			color: white;
			position: absolute;
			top: 10px;
			right: 25px;
			font-size: 35px;
			font-weight: bold;
		  }
		  
		  .close:hover,
		  .close:focus {
			color: #999;
			text-decoration: none;
			cursor: pointer;
		  }
		  /* Hide the slides by default */
		.mySlides {
		display: none;

		}
		/* Next & previous buttons */
		.prev,
		.next {
			cursor: pointer;
			position: absolute;
			top: 50%;
			width: auto;
			padding: 16px;
			margin-top: -50px;
			color: white;
			background-color: rgba(0, 0, 0, 0.4);
			font-weight: bold;
			font-size: 20px;
			transition: 0.6s ease;
			border-radius: 0 3px 3px 0;
			user-select: none;
			-webkit-user-select: none;
		}
		
		/* Position the "next button" to the right */
		.next {
			right: 0;
			border-radius: 3px 0 0 3px;
		}
		
		/* On hover, add a black background color with a little bit see-through */
		.prev:hover,
		.next:hover {
			background-color: rgba(0, 0, 0, 0.8);
		}
		  
		  
		  img.demo {
			opacity: 0.6;
		  }
		  
		  .active,
		  .demo:hover {
			opacity: 1;
		  }
		  
		  img.hover-shadow {
			transition: 0.3s;
		  }
		  
		  .hover-shadow:hover {
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			cursor: pointer;
			background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
		  }
	/*image gallery - END*/
}
/*MONITOR SIZE - END*/


































/*MEDICAL - START*/
@media screen and (min-width: 621px) and (max-width: 1100px){
	.HeroMedical {/*Hero Image and area*/
        display: flex;
        margin: 75px auto 0;
        width: 100%;
        min-height: 400px;
        background-image: url("images/Medical/MedSteth1200x467.jpg"); /*first rgba values give dark effect to image*/
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: contain;
        align-content: center;
        align-items: center;
        z-index: -1;

    }

	
	/*image gallery - START*/
		.pic_gallery {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			width: 80%;
			height: auto;
			margin: 40px auto ;
			padding: 20px;
            border: 2px solid #EFEFEF;
            z-index: -1;
			border-radius: 10px;
		}
	  
	/* CONTAINERS THAT IMAGES ARE IN */
	.column {
	display: flex;
	flex: row wrap;
	justify-content: justify;
	align-items: center;
	align-content: center;
	width: 30%;
	height: auto;
	margin: 10px auto;
	
	}
	.column > img {
		height: auto;
		width: 100%;
		border: 2px solid #EFEFEF;
		border-radius: 10px;
		padding: 4px;
	}
	  
	  /* The Modal (background) */
	  .modal {
		display: none;
		position: fixed;
		z-index: 1;
		padding-top: 25px;
		left: 0;
		top: 75px;
		width: 100%;
		height: 100vh;
		overflow: auto;
		background-color: rgba(0,0,0,0.8);
	  }
	  
	  /* Modal Content */
	  .modal-content {
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 0;
		max-width: 70%;
		background: rgba(0,0,0,0.5);
	
	  }
	  .ModalImg {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		height: auto;
		max-height: 80vh;
		object-fit: contain;
	  }  
	  .ModalVid {
		width: 100%;
		object-fit: cover;
		z-index: -100;
		height: 80vh;
	  }
		  /* The Close Button */
		  .close {
			color: white;
			position: absolute;
			top: 10px;
			right: 25px;
			font-size: 25px;
			font-weight: bold;
		  }
		  
		  .close:hover,
		  .close:focus {
			color: #999;
			text-decoration: none;
			cursor: pointer;
		  }
		  
		  /* Hide the slides by default */
		  .mySlides {
			display: none;
		  }
	
		/* Next & previous buttons */
		.prev,
		.next {
			cursor: pointer;
			position: absolute;
			top: 50%;
			width: auto;
			padding: 16px;
			margin-top: -50px;
			color: white;
			background-color: rgba(0, 0, 0, 0.4);
			font-weight: bold;
			font-size: 20px;
			transition: 0.6s ease;
			border-radius: 0 3px 3px 0;
			user-select: none;
			-webkit-user-select: none;
		}
		
		/* Position the "next button" to the right */
		.next {
			right: 0;
			border-radius: 3px 0 0 3px;
		}
		
		/* On hover, add a black background color with a little bit see-through */
		.prev:hover,
		.next:hover {
			background-color: rgba(0, 0, 0, 0.8);
		}
		  
		  /* On hover, add a black background color with a little bit see-through */
		  .prev:hover,
		  .next:hover {
			background-color: rgba(0, 0, 0, 0.8);
		  }
		  
		  
		  img.demo {
			opacity: 0.6;
		  }
		  
		  .active,
		  .demo:hover {
			opacity: 1;
		  }
		  
		  img.hover-shadow {
			transition: 0.3s;
		  }
		  
		  .hover-shadow:hover {
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			cursor: pointer;
			background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
		  }
	/*image gallery - END*/
}
/*TABLET/DESKTOP SIZE - END*/
























/*MOBILE PORTRAIT VIEW - START*/
@media screen and (max-width : 620px ){
	.HeroMedical {/*Hero Image and area*/
        display: flex;
        margin: 100px auto 0;
        width: 100%;
        min-height: 300px;
        background-image: url("images/Medical/MedSteth1200x467.jpg"); /*first rgba values give dark effect to image*/
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: contain;
        align-content: center;
        align-items: center;
        z-index: -1;

    }

	
	/*image gallery - START*/
	.pic_gallery {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			width: 90%;
			height: auto;
			margin: 50px auto ;
			padding: 20px;
			border: 2px solid #EFEFEF;
			z-index: -1;
			border-radius: 10px;
		}
	  
	/* CONTAINERS THAT IMAGES ARE IN */
	.column {
	display: flex;
	flex: row wrap;
	justify-content: justify;
	align-items: center;
	align-content: center;
	width: 45%;
	height: auto;
	margin: 10px auto;

	}
	.column > img {
		height: auto;
		width: 100%;
		border: 2px solid #EFEFEF;
		border-radius: 10px;
		padding: 2px;
	}
	
		  /* The Modal (background) */
		  .modal {
			display: none;
			position: fixed;
			z-index: 1;
			padding-top: 40px;
			left: 0;
			top: 100px;
			width: 100%;
			height: 100%;
			overflow: auto;
			background-color: rgba(0,0,0,0.8);
		  }
		  

		  
		  /* Modal Content */
		  .modal-content {
			position: relative;
			display: block;
			margin: 0 auto;
			padding: 0;
			max-width: 80%;
			background: rgba(0,0,0,0.5);
		
		  }
		  .ModalImg {
			display: block;
			margin: 0 auto;
			max-width: 100%;
			height: auto;
			max-height: 80vh;
			object-fit: contain;
		  } 
		  .ModalVid {
			width: 100%;
			object-fit: cover;
			z-index: -100;
		  }
		  /* The Close Button */
		  .close {
			color: white;
			position: absolute;
			top: 5px;
			right: 20px;
			font-size: 25px;
			font-weight: bold;
		  }
		  
		  .close:hover,
		  .close:focus {
			color: #999;
			text-decoration: none;
			cursor: pointer;
		  }
		  
		  /* Hide the slides by default */
		  .mySlides {
			display: none;
		  }
		  
		/* Next & previous buttons */
		.prev,
		.next {
			cursor: pointer;
			position: absolute;
			top: 50%;
			width: auto;
			padding: 16px;
			margin-top: -50px;
			color: white;
			background-color: rgba(0, 0, 0, 0.4);
			font-weight: bold;
			font-size: 20px;
			transition: 0.6s ease;
			border-radius: 0 3px 3px 0;
			user-select: none;
			-webkit-user-select: none;
		}
		
		/* Position the "next button" to the right */
		.next {
			right: 0;
			border-radius: 3px 0 0 3px;
		}
		
		/* On hover, add a black background color with a little bit see-through */
		.prev:hover,
		.next:hover {
			background-color: rgba(0, 0, 0, 0.8);
		}
		  /* On hover, add a black background color with a little bit see-through */
		  .prev:hover,
		  .next:hover {
			background-color: rgba(0, 0, 0, 0.8);
		  }
		  
		  /* Number text (1/3 etc) */
		  .numbertext {
			color: #f2f2f2;
			font-size: 12px;
			padding: 8px 12px;
			position: absolute;
			top: 0;
		  }
		  
		  /* Caption text */
		  .caption-container {
			text-align: center;
			background-color: black;
			padding: 2px 16px;
			color: white;
	
		  }
		  
		  img.demo {
			opacity: 0.6;
		  }
		  
		  .active,
		  .demo:hover {
			opacity: 1;
		  }
		  
		  img.hover-shadow {
			transition: 0.3s;
		  }
		  
		  .hover-shadow:hover {
			box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
			cursor: pointer;
			background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
		  }
	/*image gallery - END*/
}
/*MOBILE PORTRAIT VIEW - END*/