*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
    box-sizing: border-box;
}
.container{
	width: 100%;
	min-height: 100vh;
	padding-left: 8%;
	padding-right: 8%;
	box-sizing: border-box;
	overflow: hidden;
}
.logo{
	width: 80px;
	cursor: pointer;
	margin: 30px 0;
}
.navbar{
	width: 100%;
	display: flex;
	align-items: center;
}
nav{
	flex: 1;
	text-align: right;
}
nav ul li{
	list-style: none;
	display: inline-block;
	margin-right: 30px;
}
nav ul li a{
	text-decoration: none;
	color: #000;
	font-size: 14px;
}
nav ul li a:hover{
	color: #ff5ea2;
}

button{
	width: 240px;
	border: 0;
	padding: 12px 10px;
	outline: none;
	color: #000000;
	background: linear-gradient(to right, #fb5283, #ff3527);
	border-radius: 6px;
	cursor: pointer;
	transition: width 0.5s;
}
button img{
	width: 30px;
	display: none;
}
button:hover img{
	display: block;
}
button:hover{
	width: 160 px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.add-btn img{
	width: 35px;
	margin-bottom: 5px;
}
.add-btn{
	text-align: center;
	color: #000000;
	cursor: pointer;
}
.samplerow{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 25px 0;
	width: 33.33%;
}
.sample-col{
	flex-basis: 40%;
	position: relative;
	margin-left: 50px;
}
.samplefoto{
 	width: 300px;
}
.sample-col:hover .overlay {
	opacity: 1;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .overlay-col {
    width: 100%;
  }
}
.hr1 {
    border: 0;
    height: 100px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
