*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body{
	height: 100%;
	width: 100%;
}

#topBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #3366cc;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
	animation: topanimate 2s linear infinite;
}

@keyframes topanimate{
	50%{
		background-color: #4dd2ff;
	}
	100%{
		background-color: #248f8b;
	}
}

#topBtn:hover {
	background-color: #555;
}


#main{
	min-height: 100vh;
	width: 100%;
	position: relative;
	/*z-index: 5;*/
}

#page1{
	min-height: 80vh;
	width: 100%;
	background: url(/bootstrap/img/2.png) no-repeat center fixed;
	background-size: 100vw 100vh;
	position: relative;
	padding: 0 1vw;

}

nav{
	padding: 2vw 2vw;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#nav-part2{
	display: flex;
	align-items: center;
}

#nav-part2 h4{
	padding: 5px 10px;
	border-radius: 50px;
	position: relative;
	font-size: 17px;
	transition: all ease 0.4s;
	overflow: hidden;
}

#nav-part2 h4::after{
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #29a39f;
	left: 0;
	bottom: -100%;
	border-radius: 50%;
	transition: all ease 0.4s;
}

#nav-part2 h4:hover::after{
	bottom: 0;
	border-radius: 0;
}

#nav-part2 h4 a{
	text-decoration: none;
	z-index: 9;
	position: relative;
	color: #1A671C;
}

#nav-part2 h4:hover a{
	color: white;
}

#center{
	height: 65vh;
	width: 100%;
	/*background-color: coral;*/
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: 1px solid #49594b;
	padding-bottom: 2vw;
}

#left h3{
	width: 35vw;
	font-size: 1.2vw;
	line-height: 1.1vw;
	font-family: math;
	letter-spacing: 0.2vw;
}

.imgVid{
	width: 17%;
	height: auto;
	position: absolute;
	top: 45%;
	left: 2%;
	background-color: black;
	border-radius: 100px;
}

#center h1{
	font-size: 5vw;
	line-height: 4vw;
	text-align: center;
	font-family: math;
	width: 33.2vw;
	color: #336600;
	text-shadow: 5px 5px 10px #940511;
}

#page1 video{
	width: 100%;
	margin-top: 1vw;
	border-radius: 20px;
}

#page2{
	min-height: 100vh;
	width: 100%;
	padding: 3vw 0;
	/*background-color: #f1f4f1;*/
	background: url(/bootstrap/img/new2op.jpeg) no-repeat center fixed;
	background-size: 80vw 100vh;
}

.con{	
	white-space: nowrap;
	display: inline-block;
	animation-name: move;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: running;
}

.con a{
	text-decoration: none;
	color: #009999;
}

.con a:hover{
	color: #006666;
}

#moving-text{
	white-space: nowrap;
	overflow-x: auto;
	margin-bottom: 60px;
}

.con:hover{
	animation-play-state: paused;
}

#moving-text::-webkit-scrollbar {
	display: none;
}

#moving-text h1{
	font-size: 1.5vw;
	display: inline-block;
}

.gola{
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background-color: #b30000;
	display: inline-block;
	margin: 0 1vw;
}

@keyframes move{
	from{
		transform: translateX(150%);
	}

	to{
		transform: translateX(20%);
	}
}

.page2-bottom{
	padding: 0 3vw;
	height: 70vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dep1txt{
	height: 100%;
	width: 50%;
}

.dep1txt h2{
	margin-top: 50px;
	padding-left: 5px;
	border-left: 5px solid #006666;
	color: #006666;
}

.dep1txt h3{
	font-style: italic;
	margin-bottom: 50px;
	padding-left: 5px;
	border-left: 5px solid #99999C;
	color: #99999C;
}

.dep1txt a {
	display: inline-block;
	height: 45px;
	width: 200px;
	text-align: center;
	padding-top: 12px;
	margin: 40px;
	border: 3px solid black;
	border-radius: 5px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.dep1txt a span{
	font-size: 15px;
	font-weight: bold;
	color: #808b96;
	mix-blend-mode: difference;
}

.dep1txt a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	height: 100%;
	width: 40%;
	transform: skewX(-15deg);
	animation: animat 4s linear infinite;
}

@keyframes animat{
	0%
	{
		left: -40%;
	}
	100%
	{
		left: calc(100% + 10px);
	}
}

.page2-bottom img{
	border-radius: 10px;
}

#imgdiv{
	height: 50vh;
	width: 35vw;
	border: 10px solid #669999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(2deg);
	z-index: 2;
}

#imgdiv video{
	transform: rotate(-2deg);
}

/*#page3{
	min-height: 90vh;
	width: 100%;
	background: linear-gradient(90deg, #006600 10%, #F8F8F8 100%);
}

.elem{
	height: 90px;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 2vw;
	position: relative;
	border-bottom: 1px solid maroon;
	overflow: hidden;
}

.overlay{
	height: 100%;
	width: 100%;
	background-image: linear-gradient(#006600, white);
	background-color: white;
	position: absolute;
	left: 0;
	top: -100%;
	transition: all ease 0.2s;

}

.elem:hover .overlay{
	top: 0;
}

.elem h2{
	color: white;
	position: relative;
	z-index: 1;
}

#fixed-img{
	height: 25vw;
	width: 49vw;
	position: fixed;
	z-index: 1;
	left: 50%;
	top: 25%;
	border-radius: 10px;
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}*/

#p4img{
	height: 500px;
	width: 100%;
	background: url(/bootstrap/img/mih.png) no-repeat center fixed;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#mihs{
	text-align: center;
	font-size: 15pt;
	line-height: 180%;
	color: #00ffff;
	font-family: Arial Black, Arial Bold, sans-serif;
	animation: mihstxt 2s infinite;
}

#of{
	color: #ccffff;
	font-weight: 100;
}

#para{
	margin-top: 80px;
	color: antiquewhite;
	font-size: 20pt;
	letter-spacing: 8px;
}

@keyframes mihstxt{
	50%{
		font-size: 16pt;
		text-shadow: 5px 5px 10px #ccffff;
	}
}

#page5{
	min-height: 100vh;
	width: 100%;
	background-color: white;
	position: relative;
	z-index: 1;
}

#boxes{
	/*padding: 20px;
	width: 100%;*/
	/*text-align: center;*/
	display: flex;
	align-items: center;
	/*justify-content: space-between;*/
	flex-direction: column;
}

.box{
	margin-bottom: 20px;
	/*display: inline;*/
}

.box1{
	height: 30px;
	width: 450px;
	transform-style: preserve-3d;
	transition: transform 0.8s;
	margin: 0 10px;
}

.box:hover > .box1{
	transform: rotateY(180deg);
}

.box1-front, .box1-back{
	height: 100%;
	width: 100%;
	padding: 6px 0;
	border-radius: 10px;
	position: absolute;
	color: #f2f2f2;
}

.box1-front{
	background: linear-gradient(315deg, #f5f2e9, #009999 35%, #00cc99 100%);
	text-align: center;
}

.box1-back{
	background-color: #70dbdb;
	transform: rotateY(180deg);
	backface-visibility: hidden;
	text-align: center;
}

.readflip a{
	text-decoration: none;
	color: white;
	font-size: 1.2vw;
	letter-spacing: 1px;
	font-weight: bold;
}

.readflip a:hover{
	color: black;
}

#acdmics{
	background-color: white;
	margin: 50px 0;
}

.twelve h1 {
	font-size:35px; 
	font-weight:700;  
	letter-spacing:1px; 
	text-transform:uppercase; 
	width:220px; 
	text-align:center; 
	margin:auto; 
	white-space:nowrap; 
	padding-bottom:10px;
	padding-top: 30px;
}
.twelve h1:before {
	background-color: #c50000;
	content: '';
	display: block;
	height: 3px;
	width: 75px;
	margin-bottom: 5px;
}
.twelve h1:after {
	background-color: #c50000;
	content: '';
	display: block;
	height: 3px;

}

.aboutus-data{
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0px 30px;
}

.au-card1{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	width: 350px;
	/*background-color: #cccccc;*/
	border-radius: 30px;
	transition: 0.5s;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
}

.au-card1:hover .imgbox{
	top: -80px;
	transition: 0.5s;
	scale: 0.75;
}

.au-card1:hover{
	height: 400px;
}

.au-card1 .imgbox{
	position: absolute;
	height: 220px;
	width: 230px;
	top: 15px;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.au-card1 .imgbox img{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
}

.au-card1 .content{
	position: absolute;
	height: 38px;
	width: 100%;
	padding: 0 30px;
	text-align: center;
	top: 240px;
	overflow: hidden;
	transition: 0.3s;
	color: #595959;
}

.au-card1:hover .content{
	height: 180px;
	top: 200px;
}

.content h3{
	margin-bottom: 15px;
	margin-top: 8px;
}

.content a{
	text-decoration: none;
	color: #967f39;
}

.content a:hover{
	color: darkblue;
}

#fe_down{
	min-height: 70vh;
	width: 100%;
	color: #b3b3b3;
	/*background-color: #0d0d0d;*/
	background: linear-gradient(to top, #003333 60%,#008080);
	display: flex;
	align-items: center;
	justify-content:space-around;
	position: relative;
	z-index: 2;
}

.fe{
	text-align: center;
}

.fe h2{
	margin-top: 20px;
}

.readmore:hover .deco{
	width: 100%;
}

.readmore:hover a{
	color: green;
}

.deco{
	height: 5px;
	width: 50%;
	background-color: green;
	margin-bottom: 10px;
	transition: 0.3s;
}

.readmore{
	padding-top: 20px;
}

.readmore a{
	text-decoration: none;
	color: white;
	font-size: 1.3vw;
	letter-spacing: 1px;
	font-weight: bold;
}

#adm-boxes{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	place-items: center;
	grid-row-gap: 4ch;
}

.box-data{
	position: relative;
	text-align: center;
	overflow: hidden;
}

.box-img{
	height: 250px;
	width: 250px;
	background: url(/bootstrap/img/image.jpg) no-repeat fixed;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

.box-img h2{
	padding-top: 30px;
	color: #f5d142;
}

.box-btn{
	padding: 1.5rem 2rem;
	width: 150px;
	background-color: #f2f2f2;
	position: absolute;
	bottom: -5rem;
	left: 50px;
	margin-inline: auto;
	box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
	border-radius: 10px;
	opacity: 0;
}

.box-btn a{
	text-decoration: none;
	color: #800000;
}

.box-btn a:hover{
	text-decoration: underline;
}

.box-data:hover .box-btn{
	animation: show-btn 1s forwards;
	opacity: 1;
}

.box-data:hover{
	animation: remove-overflow 2s forwards;
}



@keyframes show-btn{
	50%{
		transform: translateY(-6rem);
	}
	100%{
		transform: translateY(-4rem);
	}
}

@keyframes remove-overflow{
	to{
		overflow: initial;
	}
}

.skew-div{
	height: 400px;
	width: 100%;
	background: linear-gradient(to left, #006666 60%,#b3ffff);
	display: flex;
}

#contact{
	width: calc(50% - 80px);
	height: 100%;
}

#map{
	width: calc(50% + 80px);
	height: 100%;
	background-color: whitesmoke;
	border-left: 100px solid #006666;
	border-bottom: 400px solid transparent;
}

#hospitals{
	display: flex;
	align-items: center;
	justify-content:space-around;
}

.hos{
	height: 80vh;
	width: 42vw;
	position: relative;
}

.hos_img{
	height: 40vh;
	width: 100%;
	filter: brightness(65%);
}

#img1{
	background: url(/bootstrap/img/mgh.jpg);
	background-size: cover;
	background-position: center;
}

#img2{
	background: url(/bootstrap/img/mdh.jpg);
	background-size: cover;
	background-position: center;
}

.hos h1{
	color: white;
	font-size: 2.5vw;
	position: absolute;
	z-index: 1;
	text-align: center;
	top: 55px;
}

.hos_data{
	height: 30vh;
	width: 100%;
	padding: 15px 5px;
	color: white;
	background: linear-gradient(#006666,#00cccc);
	margin-top: 5px;
}

.hos_data a{
	text-decoration: none;
	background-color: white;
	display: block;
	height: 30px;
	width: 100px;
	text-align: center;
	padding-top: 6px;
	transition: width 0.4s;
}

.hos_data a:hover{
	width: 120px;
}

#con-info{
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	line-height: 1.7;
	margin-top: 150px;
}

#con-info h2{
	color: #ffbf00;
}

#cel{
	border-radius: 10px;
	padding: 15px 40px;
	/*background: linear-gradient(to right,#800000 40%,#ffcccc,#800000);*/
	background: linear-gradient(to right,#00b3b3 50%,#f2f2f2,#00b3b3);
	background-size: 200%;
	animation: color 5s linear infinite;
	/*color: white;*/
}

@keyframes color{
	
	0%{
		background-position: 200% 0%;
	}
	
}

#slider{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	margin-bottom: 40px;
}

#sldr-imgs{
	position: relative;
	width: 250px;
	height: 200px;
	transform-style: preserve-3d;
	animation: ani 20s linear infinite;
}

#sldr-imgs span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-origin: center;
	transform-style: preserve-3d;
	transform: rotateY(calc(var(--i) * 45deg)) translateZ(400px);
}

#sldr-imgs span img{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@keyframes ani{
	0%{
		transform: perspective(1000px) rotateY(0deg);
	}
	100%{
		transform: perspective(1000px) rotateY(360deg);
	}
}

#footer{
	height: 80vh;
	width: 100%;
	background:linear-gradient(0deg, rgba(0, 128, 43, 0.6), rgba(0, 128, 43, 0.9)), url(/bootstrap/img/footer.jpg);
	background-size:cover;
	background-position: center 60%;
	background-attachment: fixed;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.ft{
	height: 50vh;
	width: 30%;
	margin: 5px;
	color: white;
}

.ft h2{
	color: #e6e600;
}

#fb img{
	height: 150px;
	width: 200px;
	margin-top: 20px;
}

.ft h4{
	margin-top: 20px;
	line-height: 20px;
}

.contnr{
	padding: 0 20px;
}

.hori{
	margin: 20px 0;
	color: #669900;
}

#ch_head{
	margin-top: 20px;
	background: linear-gradient(to right, white,#008080,#ccffff);
}

#ch_cont{
	width: 45%;
}

#ch_cont a{
	text-decoration: none;
	color: #00cc99;
	font-weight: bold;
}

#ch_cont h3{
	color: #33cccc;
}

#ch_head h2{
	color: #527a7a;
}

#ch_img h3{
	color: #33cccc;
}

#ch_msg{
	display: flex;
	justify-content: space-between;
}

table{
	width: 70%;
	border-collapse: collapse;
}

th,td{
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: #dddddd;
}

#feestr{
	text-align: center;
}

#feestr h2{
	color: #2eb8b8;
}

#feestr h4{
	color: #993333;
}

#feestr #list{
	text-align: left;
	padding-left: 200px;
}

#feestr table{
	margin-right: auto;
	margin-left: auto;
}

#redmor a{
	text-decoration: none;
	background-color: #33cccc;
	color: white;
	display: block;
	height: 30px;
	width: 100px;
	text-align: center;
	padding-top: 6px;
	transition: width 0.4s;
}

#redmor a:hover{
	width: 130px;
}

#ch_msg_stu{
	display: flex;
	justify-content: space-between;
}

#ch_cont_stu{
	width: 45%;
}

#ch_img_stu{
	width: 50%;
}

#ch_cont_stu h3{
	color: #33cccc;
}

#ch_img_stu h3{
	color: #33cccc;
}

#fac{
	height: 70vh;
	width: 100%;
	background:linear-gradient(0deg, rgb(179, 230, 255, 0.4), rgb(0, 102, 102)), url(/bootstrap/img/boximg.jpg);
	background-size:cover;
	background-position: center 60%;
	background-attachment: fixed;
	display: flex;
	/*align-items: flex-start;*/
	/*justify-content: flex-end;*/
	align-items: center;
	justify-content: center;
	flex-direction: column;

}

.fak{
	width: 40%;
	height: 10%;
	background: linear-gradient(#008080,#00b3b3);
	margin: 5px;
	text-align: center;
}

.fak a{
	text-decoration: none;
	font-size: 22px;
	line-height: 40px;
	font-weight: bold;
	letter-spacing: 3px;
	color: whitesmoke;
}

#fac_heading{
	text-align: center;
	margin-bottom: 30px;
	color: #33cccc;
}

#con_dir{
	/*height: 60vh;*/
	width: 83%;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}

.fak_dir{
	width: 100%;
	height: 10%;
	background: linear-gradient(#008080,#00b3b3);
	margin: 4px;
	text-align: center;
	z-index: 1;
}

.fak_dir a{
	text-decoration: none;
	font-size: 18px;
	line-height: 40px;
	font-weight: bold;
	letter-spacing: 3px;
	color: whitesmoke;
}

/* HTML: <div class="loader"></div> */
.loader {
	width: 150px;
	height: 20px;
	background: 
	linear-gradient(#25b09b 0 0) left -40px top 0/40px 20px,
	linear-gradient(#ddd 0 0) center/100% 50%; 
	background-repeat: no-repeat;
	animation: l5 1s infinite linear;
}
@keyframes l5 {
	100% {background-position: right -40px top 0,center}
}

#lod_pag{
	height: 100vh;
	width: 100%;
	background: linear-gradient(130deg, #248f8f 10%, #F8F8F8 100%);
	z-index: 100;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: safe center;
	flex-direction: column;
	opacity: 0.5;
}

#spce{
	height: 15px;
}

/*Responsive Part*/

#res-navbar{
	display: none;
}

.res-navbar{
	height: 100vh;
	width: 350px;
	background-color: lightseagreen;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	z-index: 10;
}

#res-navbar h4{
	padding: 5px 10px;
	border-radius: 50px;
	position: relative;
	font-size: 17px;
	transition: all ease 0.4s;
	overflow: hidden;
}

#res-navbar h4::after{
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #81040F;
	left: 0;
	bottom: -100%;
	border-radius: 50%;
	transition: all ease 0.4s;
}

#res-navbar h4:hover::after{
	bottom: 0;
	border-radius: 0;
}

#res-navbar h4 a{
	text-decoration: none;
	z-index: 9;
	position: relative;
	color: #1A671C;
}

#res-navbar h4:hover a{
	color: white;
}

.imgSlider{
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: 3s;

	animation-name: imgslid;
	animation-direction: alternate-reverse;
	animation-play-state: running;
	animation-timing-function: ease-in-out;
	animation-duration: 20s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;

}

.imgSlider-bds{
	width: 33vw;
	height: 45vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: 3s;
	transform: rotate(-2deg);
	animation-name: imgslid-bds;
	animation-direction: alternate-reverse;
	animation-play-state: running;
	animation-timing-function: ease-in-out;
	animation-duration: 20s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;

}

@keyframes imgslid-bds{
	0%{
		background-image: url(/bootstrap/img/mdh.jpg);
	}
	40%{
		background-image: url(/bootstrap/img/mdh3.jpg);
	}
	70%{
		background-image: url(/bootstrap/img/mdh4.jpg);
	}
	100%{
		background-image: url(/bootstrap/img/mdh3.jpg);
	}
	
}

.imgSlider-phmd{
	width: 33vw;
	height: 45vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: 3s;
	transform: rotate(-2deg);
	animation-name: imgslid-phmd;
	animation-direction: alternate-reverse;
	animation-play-state: running;
	animation-timing-function: ease-in-out;
	animation-duration: 20s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;

}

@keyframes imgslid-phmd{
	0%{
		background-image: url(/bootstrap/img/pharm.d.jpg);
	}
	40%{
		background-image: url(/bootstrap/img/pharmacy.jpg);
	}
	70%{
		background-image: url(/bootstrap/img/Doctor-Pharmacy.jpg);
	}
	100%{
		background-image: url(/bootstrap/img/pharm.d.jpg);
	}
	
}

.imgSlider-dpt{
	width: 33vw;
	height: 45vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: 3s;
	transform: rotate(-2deg);
	animation-name: imgslid-dpt;
	animation-direction: alternate-reverse;
	animation-play-state: running;
	animation-timing-function: ease-in-out;
	animation-duration: 20s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;

}

@keyframes imgslid-dpt{
	0%{
		background-image: url(/bootstrap/img/dptpic.jpeg);
	}
	40%{
		background-image: url(/bootstrap/img/dptdept.jpg);
	}
	70%{
		background-image: url(/bootstrap/img/dptpic.jpeg);
	}
	100%{
		background-image: url(/bootstrap/img/dpt.jpg);
	}
	
}
.sldtext{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.sldtext h1{
	font-size: 4vw;
	color: #00ffff;
	font-family: Audiowide;
}

.sldtext h2{
	color: #fff5cc;
	font-size: 2vw;
	font-family: Arial Black, Arial Bold, sans-serif;
}

@keyframes imgslid{
	0%{
		background-image: url(/bootstrap/img/mdh.jpg);
	}
	40%{
		background-image: url(/bootstrap/img/boximg.jpg);
	}
	70%{
		background-image: url(/bootstrap/img/mih1.jpg);
	}
	100%{
		background-image: url(/bootstrap/img/lib.jpg);
	}
	
}

#res-depts{
	display: none;
}

.cont-res{
	display: none;
}

.foot-res{
	display: none;
}

#icn{
	display: none;
}

.ddown button{
	outline: none;
	color: white;
	border-radius: 4px;
	animation: topanimate 2s linear infinite;
	background-color: #248f8b;
	padding: 10px 25px;
	border: none;
	cursor: pointer;
}

.ddown a{
	display: block;
	color: #993300;
	text-decoration: none;
	padding: 10px 0;
}

.ddown a:hover{
	font-weight: bold;
}

.ddown .ddown_list{
	position: absolute;
	display: none;
}

.ddown:hover .ddown_list{
	display: block;
}

.popup{
	/*display: none;*/
	background-image: url(/bootstrap/img/popup.jpeg);
	width: 500px;
	height: 500px;
	padding: 30px 40px;
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	border-radius: 8px;
	z-index: 10;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.popup button{
	display: block;
	margin: 0 0 10px auto;
	background-color: #ff0000;
	font-size: 30px;
	color: beige;
	padding: 0 7px;
	border: none;
	border-radius: 10px;
	outline: none;
	cursor: pointer
}

#d{
	display: block;
}
#d-res{
	display: none;
}

/*media screen*/

@media(max-width: 600px)
{
	#nav-part2{
		display: none;
	}

	@keyframes move{
		from{
			transform: translateX(100%);
		}

		to{
			transform: translateX(20%);
		}
	}

	.readmore a{
		font-size: 2.5vw;
	}

	#d{
		display: none;
	}
	#d-res{
		display: block;
	}

	.popup{
		width: 360px;
		background-size: 300px 500px;
	}

	.con a{
		font-size: small;
	}

	.ddown:hover .ddown_list{
		background-color: #ebfaf9;
		border-radius: 5px;
		z-index: 1;
	}

	.ddown a{
		color: #4d4d00;
	}

	.box1{
		width: 300px;
	}

	#res-depts{
		display: block;
	}

	.res-dep-pad{
		padding-left: 25px;
	}

	.res-dep-pad .dep1txt{
		width: 80%;
	}

	#center{
		height: 30vh;
	}

	.readflip a{
		font-size: 2.5vw;
	}

	#slider{
		/*display: none;*/
	}

	#gal{
		/*display: none;*/
	}

	#page3{
		display: none;
	}

	#icn{
		display: block;
	}

	#page1{
		min-height: 40vh;
	}

	.cont-res{
		display: block;
	}

	#imgdiv{
		height: 27vh;
		width: 65vw;
		border: 10px solid #669999;
		display: flex;
		align-items: center;
		justify-content: center;
		transform: rotate(2deg);
	}

	.dep1txt-res a {
		display: inline-block;
		height: 45px;
		width: 200px;
		text-align: center;
		padding-top: 12px;
		margin: 20px 0;
		border: 3px solid black;
		border-radius: 5px;
		letter-spacing: 1px;
		text-transform: uppercase;
		text-decoration: none;
		position: relative;
		overflow: hidden;
	}

	.dep1txt-res a span{
		font-size: 15px;
		font-weight: bold;
		color: #fff;
		mix-blend-mode: difference;
	}

	.dep1txt-res a:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		background-color: #000;
		height: 100%;
		width: 40%;
		transform: skewX(-15deg);
		animation: animat 4s linear infinite;
	}

	#adm-boxes{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		place-items: center;
	}

	#hospitals{
		display: flex;
		flex-direction: column;
	}

	.hos{
		height: 100%;
		width: 100%;
		position: relative;
		margin: 5px 0;
	}

	.hos_data{
		height: 100%;
		width: 100%;
		padding: 15px 5px;
		color: white;
		background: linear-gradient(#006666,#00cccc);
	}

	.con-info-res{
		display: flex;
		align-items: center;
		justify-content: space-evenly;
		line-height: 1.7;
		/*margin-top: 150px;*/
	}

	.con-info-res h2{
		color: #ffbf00;
	}

	.foot-res{
		height: 100vh;
		width: 100%;
		background:linear-gradient(0deg, rgba(0, 128, 43, 0.6), rgba(0, 128, 43, 0.9)), url(/bootstrap/img/footer.jpg);
		background-size:cover;
		background-position: center 60%;
		background-attachment: fixed;
	}

	.ft-res{
		margin: 60px 20px;
		color: white;
	}

	.ft-res h2{
		color: #e6e600;
	}

	#deps{
		display: none;
	}

	.skew-div{
		display: none;
	}

	#footer{
		display: none;
	}

	.foot-res{
		display: block;
	}

}




