*{
	margin: 0px;
	padding: 0px;
}
body{
font-family: 'Raleway', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    background-color: #fbffee;
}
p{
	font-size: 20px;
}
h5{
	font-size: 25px;
}
h2{
	font-weight: bold;
}
.header{
	background-color: #fff;
}
.menu{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	list-style: none;
}
.menu hr{
	margin-top: 0px;
	height: 1px;
}
.menu li{
	display: flex;
	flex-direction: column;
}
#check{
	display: none;
}
.checkbtn{
	position: absolute;
    top: 20px;
    right: 40px;
    font-size: 25px;
    cursor: pointer;
    display: none;
}
a{
	color: #000;
	transition: 0.3s all;
	font-weight: bold !important;
}
a:hover{
	text-decoration: none;
	color: #e8505b;
}
a:hover hr{
	background-color: #e8505b;

}
.header{
	height: 100px;
}
.menu a{
		font-weight: normal;
		font-size: 20px;
	}
	.header .row,.top-navbar,.top-navbar .container-fluid,.top-navbar nav,.top-navbar .menu{
		height: 100%;
	}
	hr{
		background-color: #000;
		transition: 0.3s all;
	}
	.hero-banner{
		padding: 100px;
	}
@media only screen and (max-width: 576px){
	 .header .row{
      display: flex;
      flex-wrap: nowrap;
    }
    .header label{
      width: auto;
    }
	.menu{
		position: fixed;
		flex-direction: column;
		width: 100%;
		height: 60vh;
		margin-top:13vh;
		background-color: #fbffee;
		color:#e8505b;
		justify-content: space-around;
		left: -100%;
		transition: 0.5s all;
		z-index: 9999;
	}
	.menu li{
		margin: 20px 0px;
	}	
	.menu a{
		color: #e8505b;
		font-weight: bold;
		font-size: 20px;
	}
	.checkbtn{
		display: block;
	}
	#check:checked ~ .menu{
		left: 0;
	}
	.top-navbar .menu{
		height: auto;
	}
	.header hr{
		display: none;
	}
	.header .col-lg-2{
		display: flex;
		align-items: center;
	}
}
