
body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
	font-family: 'Sofia';
}

section{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*-----Navbar-----------------*/

#navbar{
	position: sticky;
	top: 0;
	background: white;
	z-index: 10;
}
.bold{
	font-size: 25px;
}

li{
	padding: 5px;
}

.nav-link{
	font-size: 15px;
	font-weight: bold;
	border: 2px solid transparent;
}

.nav-link: hover{
	border-bottom: 2px solid blue;
	transition: .1s;
	}

/*-------------End Navbar----------------*/

/*-------------Float button-------------------*/
.dialfloat{
	position:fixed;
	width:32px;
	height:32px;
	bottom:40px;
	right:110px;
	background-color:FireBrick;
	color:#FFF;
	border-radius:10px;
	text-align:center;
	font-size: 18px;
	box-shadow: 2px 2px 3px #999;
	z-index: 1000;
}

.whatsappfloat{
	position:fixed;
	width:32px;
	height:32px;
	bottom:40px;
	right:40px;
	background-color:DarkMagenta;
	color:#FFF;
	border-radius:10px;
	text-align:center;
	font-size: 18px;
	box-shadow: 2px 2px 3px #999;
	z-index: 1001;
}

.shopnowfloat{
	position:fixed;
	width:160px;
	height:32px;
	bottom:40px;
	left:0px;
	border-radius:10px;
	text-align:center;
	z-index: 1001;
}

.my-float{
	margin-top:6px;
}
/*-------------End Float button----------------*/

/*----------------Home-----------*/
span{
	color: blue;
	font-weight: bold;
}

p{
	font-size: 18px;
}

/*----------------About-----------*/
#about-img{
	width: 25rem;
	height: 25rem;
	border-radius: 50px;
}


/*----------------Services-----------*/
.card img{
	height: 200px;
}

.inner{
	overflow: hidden;
}

.card img:hover{
	transform: scale(1.5);
	transition: 1s;
}


/*----------------Contact-----------*/

form{
	padding: 40px;
	box-shadow: 2px 2px 5px rgba(0,0,0,.2);
	border-radius: 30px;
}
