@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;1,400&display=swap');

:root{
	--skyblue: #4fedff;
}

*{
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	transition: all .3s cubic-bezier(.16,.8,.62,1.52);
	text-transform: capitalize;
}

*::selection{
	background:var(--skyblue);
	color: #fff;
}
html{
	font-size: 62.5%;
	overflow-x: hidden; 
}
html::-webkit-scrollbar{
	width: 1.3rem;
}
html::-webkit-scrollbar-track{
	background: #000;
}
html::-webkit-scrollbar-thumb{
	background: var(--skyblue);
}
body{
	background: #f9f9f9;
}
section{
	min-height: 100vh;
	padding: 0 7%;
	padding-top: 9rem; 
}
.btn{
	display: inline-block;
	margin-top: 1rem;
	padding:1rem 4rem;
	border-radius: 5rem;
	background: var(--skyblue);
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 0;
	font-size: 1.7rem;
	font-weight: 1rem;
}
.btn::before{
	content: '';
	position: absolute;
	top: 0; left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: #444;
	clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
	transition: .3s linear;
}
.btn:hover::before{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.heading{
	font-size: 3rem;
	color: #666;
}
.heading span{
	color: var(--skyblue);
}
header{
	width: 100%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	padding: 2.5rem 7%;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);

}
header .logo{
	font-size: 2.5rem;
	color: #0bf75d;
}
header .logo span{
	color: red;
}
header .navbar ul{
     display: flex;
     align-items: center;
     justify-content: center;
     list-style: none;
}
header .navbar ul li{
	margin-left: 2.5rem;
}
header .navbar ul li a{
	color:#999;
	font-size: 1.8rem;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
	color:var(--skyblue);
	border-bottom: .2rem solid var(--skyblue);
	padding: .7rem 0;
	
}
#menu{
	font-size: 3rem;
	color: #999;
	cursor: pointer;
	display: none;
}
.home{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;

}
.home .image{
	flex:1 1 40rem;
}
.home .image img{
	width:100%;
}
.home .content{
	flex:1 1 40rem;
}
.home .content span{
	color: var(--skyblue);
	font-size: 5rem;
}
.home .content h3{
	color:#8ff70b;
	font-size: 7rem;
}
.home .content p{
	color:#999;
	font-size: 2rem;
	padding: 1rem 0;
}
.protect .heading{
	text-align: center;
	padding: 1rem;
}
.protect .box-container{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.protect .box-container .box{
	background: #fff;
	border:.1rem solid rgba(0,0,0,.1);
	padding: 2rem;
	margin: 2rem;
	width: 34rem;
	border-radius: .5rem;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
	text-align: center;
}
.protect .box-container .box img{
	height: 17rem;
	width: 17rem;
}
.protect .box-container .box h3{
	font-size: 2.5rem;
	color:#666;
	padding: 1rem 0;
}
.protect .box-container .box p{
	font-size: 1.4rem;
	color:#999;
	padding: .5rem;
}
.protect .box-container .box:hover{
	transform: translateY(-1rem);
}
.symtoms{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.symtoms .content{
	flex:1 1 40rem;
}
.symtoms .image{
	flex:1 1 40rem;
}
.symtoms .image img{
	width: 100%;
}
.symtoms .content p{
	font-size: 1.7rem;
	color: #999;
	padding: 1rem 0;
}
.symtoms .content ul{
	display: flex;
	flex-wrap: wrap;
	padding:1rem 0;
}
.symtoms .content ul .two{
	padding-left: 5rem;
}
.symtoms .content ul li{
	margin-left: 2rem;
	font-size: 1.5rem;
	color: #666;
	padding: .5rem 0;
}
.prevents{
	background: #d9de3e;

}
.prevents .row{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 2rem 0;
}
.prevents .row .image{
	flex: 1 1 37rem;
	height: 35rem;
	text-align: center;
}
.prevents .row .image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.prevents .row .content{
	padding: 2rem 0;
	flex: 1 1 37rem;
}
.prevents .row .content .heading{
	color: #fff;
}
.prevents .row .content p{
	font-size: 1.7rem;
	color: #38d0da;
	padding: 1rem 0;
}
.prevents .row .content ul li{
	margin-left: 2rem;
	font-size: 1.5rem;
	color: #aaa;
	padding: .5rem 0;
}
.handwash .heading{
	text-align: center;
	padding: 1rem;
}
.handwash .box-container{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.handwash .box-container .box{
	background: #2a2d2e;
	border:.1rem solid rgba(0,0,0,.1);
	margin:2rem;
	margin-top: 3rem;
	padding: 2rem 3.7rem;
	text-align: center;
	position: relative;

}
.handwash .box-container .box img{
	height: 15rem;
	width: 15rem;
}
.handwash .box-container .box h3{
	font-size: 2rem;
	color: #fff;
	padding: 1rem 0;
}
.handwash .box-container .box span{
	display: block;
	position: absolute;
	top: -2rem; left: -2rem;
	height: 5rem; width: 5rem;
	line-height: 5rem;
	font-size: 2rem;
	color: #fff;
	background: var(--skyblue);
	border-radius: 5rem;
}
.spread .heading{
	text-align: center;
	padding: 1rem;

}
.spread .image{
	height: 80vh;
	width: 80%;
	
	background-size: cover;
	background-position: center; 
}
.spread .image img{
	height: 15rem;
	width: 15rem;
}
.vaccine{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #f151a1;
}
.vaccine p{
    font-size: 2rem;
    padding-top: 2rem 0;
    margin-top: 1rem;
    margin-bottom: 4rem;
}
.vaccine p span{
   color: var(--skyblue);
}
.vaccine .corona{
	text-align: center;
}
.vaccine .corona img{
	width: 70%;
	height: 70%;
}
.vaccine .corona p{
	font-size: 1.7rem;
	font-weight: 2rem;
	color: #fff;
}

.footer{
	min-height: auto;
	padding-top: 0;
	background:#333;
}
.footer .box-container{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer .box-container .box{
	flex: 1 1 25rem;
	margin: 2rem;
}
.footer .box-container .box h3{
	font-size: 2.5rem;
	color: #fff;
	padding-bottom: 2rem;
	font-weight: normal;
}
.footer .box-container .box p{
	font-size: 1.5rem;
	color: #ccc;
	padding:1rem 0;
	
}
.footer .box-container .box p i{
	padding-right: 1rem;
	color: var(--skyblue);
	
}
.footer .box-container .box a{
	font-size: 1.5rem;
	color: #ccc;
	padding:1rem 0;
	display: block;

}
.footer .box-container .box a:hover{
	color: var(--skyblue);
}
.footer .box-container .box .share{
	display: flex;
	flex-wrap: wrap;
	padding:1rem 0;
}
.footer .box-container .box .share a{
	height: 4rem;
	width: 4rem;
	line-height: 2rem;
	text-align: center;
	border-radius: 5rem;
	border:.1rem solid #fff;
	margin-right: 1rem;
}
.footer .box-container .box .share a:hover{
	background: #fff;
}
.footer .credit{
	padding: 2rem 1rem;
	text-align: center;
	color: #fff;
	font-weight: normal;
	font-size: 2.3rem;
	border-top: .1rem solid #fff3;
}
.footer .credit a{
	color: var(--skyblue);
}
.scroll-top{
	position: fixed;
	bottom:8rem; right: 2rem;
	z-index: 100;
	display: none;

}
.scroll-top img{
	height: 7rem;
}
.bar .garph img{
	height: 60rem;
	width: 100rem;
	padding: 4rem 0;
}
.bar .garph p{
	padding-bottom: 4rem;
	font-size: 5rem;
	color: #aaa;
	font-weight: 15rem;


}

/*media queries*/

@media (max-width: 991px){
	html{
	font-size: 55%;
 }
}

@media (max-width: 768px){
	#menu{
		display: block;
	}
	header .navbar{
		position: fixed;
		top: 8rem; left: -120%;
		height: 100%;
		width: 100%;
		background: #eee;
		border-top: .2rem solid rgba(0,0,0,.1);
	}
	header .navbar ul{
		flex-flow: column;
		padding: 2rem;
	}
	header .navbar ul li{
		text-align: center;
		width: 100%;
		margin:1rem 0;
	}
	header .navbar ul li a{
		display: block;
		padding: 1rem;
	}
	header .navbar ul li a.active,
	header .navbar ul li a:hover{
		padding: 1rem;
		background: var(--skyblue);
		color: #fff;
		border:none;
		border-radius: 5rem;
	}
	.fa-times{
		transform: rotate(180deg);
	}
	header .navbar.nav-toggle{
		left: 0;
	}
         .home .content{
         	text-align: center;
         }
}
@media (max-width: 500px){
	html{
		font-size: 50%;
	}
	section{
		
		padding: 0 4%;
		padding-top: 9rem;
	}
}
