* {
	margin: 0;
	padding: 0;
	font-family: arial;
	scroll-behavior: smooth;
}

nav {
	background-color: #fff;
	width: 100%;
	height: 100px;
	z-index: 1;
	position: fixed;
	margin-top: 0px;
}

nav img {
	width: 100px;
	height: auto;
	padding-top: 10px;
	padding-left: 30px;
}

nav ul {
	margin-right: 15%;
	float: right;
	padding-top: 30px;
}

nav ul li {
	list-style: none;
	float: left;
	position: relative;
}

nav ul li a {
	display: block;
	font-family: arial;
	text-decoration: none;
	padding: 17px 14px;
	color: black;
	font-size: 20px;
	transition: 0.3s;
}

nav ul li a:hover {
	background-color: #eaeaea;
}

nav ul li ul {
	display: none;
	position: absolute;
	background-color: #f3f3f3;
	padding: 8px;
	border-radius: 0px 0px 5px 5px;
}

nav ul li:hover ul {
	display: block
}

nav ul li ul li {
	width: 150px;
	border-radius: 4px;
}

nav ul li ul li a {
	padding: 8px 14px;
}

nav ul li ul li a:hover {
	background-color: #eaeaea;
}

.follow {
	margin-left: 50px;
	font-size: 17px;
	padding-top: 20px;
}

.facebook {
	width: 30px;
	height: auto;
	padding-top: 15px;
	cursor: pointer;
}

.banner {
	width: 100%;
	height: auto;
	/*width: 100%;
	height: 500px;
	margin-top: 100px;*/
}

article {
	margin-top: 100px;
	margin-bottom: 100px;
}

article div {
	display: flex;
	justify-content: space-around;
}

article div div {
	border: 1px solid #CDCDCD;
}

article div div img {
	width: 200px;
	height: auto;
	margin-bottom: 0;
}

.kids {
	height: 280px;
	width: 200px;
}

.shoes {
	width: 200px;
	height: 280px;
}

article div div {
	transition: 0.4s;
}

article div div:hover {
	transform: scale(1.03);
    box-shadow: 2px 2px 2px #000;
}

.labels {
	padding-top: 25px
}

.labels p {
	font-size: 25px;
	color: #FF1493;
}

.labels a {
	text-decoration: none;
}

.adjusteddiv {
	display: none;
}

.adjusteddiv img{
	width: 400px;
	height: auto;
	transition: 0.4s;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #CDCDCD;
}

.adjusteddiv img:hover {
	transform: scale(1.03);
    box-shadow: 2px 2px 2px #000;
}

.adjusteddiv p {
	padding: 20px;
	font-size: 18px;
	color: #F94B4B;
	text-align: center;
}

.adjusteddiv a {
	text-decoration: none;
}
	
footer {
	width: 100%;
	background-color: #303030;
	height: 250px;
	color: #fff;
}

footer div {
	margin-top: 50px;
	float: left;
}

.aboutus {
	float: left;
	width: 500px;
	margin-left: 20px;
}

footer div .footerheader {
	font-size: 25px;
	font-weight: 400;
	padding-left: 15px;
	color: #FF1493;
	display: inline-block;
	line-height: 30px;
	width: 150px;
	/*text-align: center;*/
}

.contactus {
	margin-left: 200px;
}

.contactus img {
	width: 25px;
	height: auto;
	padding-top: 20px;
}

.information {
	padding: 15px;
	display: inline-block;
	font-size: 20px;
	line-height: 30px;
	color: #DCDCDC;
}

.aligner {
	width: 200px;
        display: inline;

}

@media only screen and (max-width: 1000px) {
	article div {
		display: none;
	}
	
	.adjusteddiv {
		display: block;
	}
	
	.adjusteddiv img {
		width: 25%;
	}
	
	.contactus {
		margin-left: 20px;
	}
}

@media only screen and (max-width: 800px) {
	footer {
		height: 500px;
	}
}

@media only screen and (max-width: 750px) {
	.follow {
		display: none;
	}
	
	.banner {
		margin-top: 100px;
	}
	
	.adjusteddiv img {
		width: 35%;
	}
}

@media only screen and (max-width: 520px) {
	.logo {
		display: none;
	}
	
	.information {
		width: 286px;
	}
	
	footer {
		height: 600px;
	}
}

@media only screen and (max-width: 361px) {
	.contactus img {
		display: none;
	}
}

