*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Poppins', sans-serif;
}

header{
	display: flex;
	width: 90%;
	margin:auto;
	min-height: 10vh;
	align-items: center;
	margin-top: 5px;
}

.logo-container,.nav-links,.search,.cart{
	display: flex;
}

.logo-container{
	flex: 1;
}

.logo{
	font-weight: 400;
	font-size: 38px;
	margin: 5px;
}

nav{
	flex: 3;
	text-transform: uppercase;
}

.nav-links{
	justify-content: space-around;
	list-style: none;
}

.nav-link{
	color: #646464;
	font-size:18px;
	text-decoration: none;
}

.nav-link:hover {
	text-decoration:underline;
}
.search{
	flex: 1;
	justify-content: space-around;
}	








.outer{
	display: flex;
	background: linear-gradient(to bottom,#833ab4,#fd1d1d,#fcb045);
	padding: 2px;
	margin: 80px;
	margin-top: 30px;
	margin-bottom:30px; 
}

.slide ,.card{
	flex: 1;
}

.slide img{
	width: 100%;
	height: 100%;	
}
.card{
	background: white;
	margin-left: 0px;
}

.head ,.info,h2,h3,form,.social{
	margin-left: 50px;
}

.head{
	font-size: 55px;
	line-height: 50px;
	background: linear-gradient(to right, #360033,#0b8793);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}

h2{
	font-size: 20px;
	font-weight: 1;
	line-height: 39px;
	color:#5C5C5C;
}

p{
	font-size: 16px;
	color: #5C5C5C;
	line-height: 30px;
}

label{
	color:#5C5C5C;
	font-size: 16px;
}

.det{
	font-size: 	16px;
	color: black;
}

.info{
	display: flex;
	margin-top: 20px;
	}

.leftB ,.centerB ,.rightB{
	flex: 1;
}

h3
{
	font-size: 45px;	
	font-weight: 1;
	z-index: 900;
}
input {
	font-size: 18px;
	border:none;
	border-bottom: 2px solid grey;
	width: 50%;
	background: none; 
	color: black;
	line-height: 20px;
	font-family: Poppins;
}

textarea{
	width: 60%;
	font-size: 16px;
	font-family: Poppins;
	border:none;
	border-bottom: 2px solid grey;
	background: none;
}

button{
	background: none;
	border:2px solid #0b8793;
	font-size: 16px;
	padding: 12px 20px;

	min-width: 200px;
	margin: 10px;
	cursor: pointer; 
	transition: color 0.4s linear;
	position: relative;
	z-index: 1;
}
button:hover{
	color: #fff;
}
button::before{
	content:"";
	position: absolute;
	left:0;
	top:0;
	width: 100%; 
	height: 100%;
	background: #0b8793;
	z-index: -1;
	transition: transform 0.5s;
	transform-origin: 0 0;
	transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
	
}
button::before{
	transform: scaleX(0);
}
button:hover::before{
	transform: scaleX(1);
}

.social{
	position: relative;
	display: flex;
	width: 50%;
	left: 250px;
	bottom: 40px;	
}
.social a{
	flex:1;
	height: 30px;
	width: 30px;
}
