@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}

/*----- header -----*/

hr.two {
	width: 30%;
	line-height: 5px;
}

.header {
	min-height: 100vh;
	width: 100%;
	background-image: url("images/newheader.jpg");
	background-position: center;
	background-size: cover;
	position: relative;
}

.home {
	position: relative;
}

.top {
	position: absolute;
	top: 0;
	left: 0;
}

.bottom {
	position: relative;
}

.home img {
	left: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
  	-moz-transition: opacity 0.5s ease-in-out;
 	 -o-transition: opacity 0.5s ease-in-out;
  	transition: opacity 0.5s ease-in-out;
}

.home img.top:hover {
	opacity: 0;
}

.meet {
	display: flex;
	position: absolute;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: auto;
	width: 100%;
	text-align: center;
}

.meet h1 {
	font-size: 100px;
}


nav {
	display: flex;
	padding: 2% 4%;
	justify-content: space-between;
	align-items: center;
}

.nav-links {
	max-height: 100%;
	position: relative;
	flex: 1;
	text-align: right;
}

.nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 14px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: black;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
	
}

.sub-menu {
	display: none;
}
	
.nav-links ul li:hover .sub-menu a{
	font-size: 15px;
	text-decoration: none;
	color: #4974A5;
}

.nav-links ul li:hover .sub-menu {
	display: block;
	position: absolute;
	background-color: #E7DDCA;
	border: 1px solid #EFE8DC;
	padding: 5px;
	z-index: 10;
}

.nav-links ul li:hover .sub-menu ul {
	display: block;
	margin: 0px;
}

.nav-links ul li:hover .sub-menu ul li {
	width: 125px;
	padding: 10px;
	text-align: left;
	border-radius: 0;
}

.text-box{
	width: 100%;
	color: black;
	position: absolute;
	top: 92.5%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

.hero-btn {
	display: inline-block;
	text-decoration: none;
	color: black;
	border: 1px solid #000000;
	padding: 12px 34px;
	font-size: 20px;
	background: transparent;
	position: relative;
	cursor: pointer;
}

.yey-btn {
	display: inline-block;
	text-decoration: none;
	color: white;
	border: 1px solid #000000;
	padding: 12px 34px;
	font-size: 20px;
	background: black;
	position: relative;
	top: 5%;
	left: 2%;
	cursor: pointer;
}

.hero-btn:hover{
	border: 1px solid #FFFFFF;
	background: #000000;
	transition: 1s;
	color: white;
}

.yey-btn:hover{
	border: 1px solid black;
	background: transparent;
	transition: 1s;
	color: black;
}

.mem-btn {
	display: inline-block;
	text-decoration: none;
	color: white;
	border: 1px solid #000000;
	padding: 12px 34px;
	font-size: 20px;
	background: black;
	position: relative;
	cursor: pointer;
}

.mem-btn:hover{
	border: 1px solid black;
	background: transparent;
	transition: 1s;
	color: black;
}

h1  {
	font-family: 'Libre Caslon Display', serif;
	font-size: 50px;
}

p {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
}

.nav-links2 {
	flex: 1;
	text-align: right;
}

.nav-links2 ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links2 ul li a{
	color: black;
	text-decoration: none;
	font-size: 14px;
}

.nav-links2 ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #ffffff;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links2 ul li:hover::after{
	width: 100%;
	
}

nav .fa {
	display: none;
}



/*----- collection -----*/

.latest {
	min-height: 50vh;
}

.card {
	width: 500px;
	margin: 30px;
	box-shadow: 2px 2px 30px rgba(0,0,0,0.2);
	border-radius: 10px;
	overflow: none;
}

.card-image {
	height: 700px;
	position: relative;
}

.card-image img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
}

.card-image:hover .layer {
	visibility: visible;
	animation:fade 0.5s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.card-body {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	box-sizing: border-box;
}

.type {
	display: flex;
	flex-direction: column;
}

.type h5 {
	color: #222222;
	margin: 5px 0px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding-right: 8px;;
}

.card span {
	color: rgba(26, 26, 26, 0.5);
}

.card-text {
	color: #333333;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.layer {
	border-radius: 10px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: rgba(27, 30, 35, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.layer h3 {
	width: 100%;
	font-weight: 500;
	color: white;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
	text-align: center;
}

.layer:hover h3 {
	bottom: 50%;
	opacity: 1;
	flex-wrap: wrap;
}

.row {
	width: 100%;
	height: auto;
	margin: auto;
	display: flex;
	position: relative;
	justify-content: center;
	align-content: center;
}

/*----------------------------------1100px-----------------------------------*/

@media (max-width: 1100px){
.meet h1{
	font-size: 80px;
}
	
.header {
	min-height: 100vh;
	width: 100%;
	background-size: cover;
}
	
.row {
	width: 100%;
	height: auto;
	margin: auto;
	display: block;
	position: relative;
	justify-content: center;
	align-content: center;
}

.card {
	width: 50vw;
	height: 100%;
	margin: auto;
	padding: 20px;
}

.card-image img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
}

.collection h1{
 	text-align: center;
	transform: translate(0, 0);
}
	
.card h3 {
	font-size: 30px;
}
	
.card h2 {
	font-size: 30px;
}
	
.card p {
	font-size: 15px;
}
	
.btn-primary {
	font-size: 19px;
}
	
.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 14px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: black;
	display: block;
	margin: auto;
	transition: 0.5s;
}
	
.nav-links ul li:hover::after{
	width: 100%;
	}

.hero-btn {
	padding: 9px 20px;
	font-size: 15px;
	}
	.nav-links ul li{
	 	display: block;
	}
	
	.second-btn {
	padding: 9px 20px;
	font-size: 15px;
	}

	.yey-btn {
	padding: 9px 20px;
	font-size: 15px;
	}

	
	.mem-btn {
	padding: 9px 20px;
	font-size: 15px;
	}

	.nav-links{
		position: absolute; 
		background: #E2D3CD;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	
nav .fa {
		display: block;
		color: black;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	
	.nav-links ul { 
		padding: 30px;
	}
	

	.collection {
		align-content: center;
		flex: auto;
	}

	.feedback {
		font-size: 15px;
	}
	
	h1 {
		font-size: 30px;
	}
	
	p {
		font-size: 15px;
		justify-content: space-between;
		text-justify: center;
		align-content: center;
		align-items: center;
	}
	
	.foot-col-2 img {
		transform: translate(-78%);
		height: 80px;
	}
	
	.foot-col-1 p {
		font-size: 10px;
	}
	
}

/*----------------------------------700px-----------------------------------*/

@media (max-width: 700px){
.header {
	min-height: 100vh;
}

.meet h1{
	font-size: 50px;
}
	
.cards {
	display: block;
}	

.card {
	width: 70vw;
	height: 100%;
	margin: auto;
	padding: 15px;
}

.collection img{
	width: 50%;
	height: auto;
	display: block;
}

.card h3 {
	font-size: 25px;
}
	
.card h2 {
	font-size: 25px;
}
	
.card p {
	font-size: 15px;
}
	
.btn-primary {
	font-size: 18px;
}

.about-col img{
	width: 65%;
}
	
.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 14px;
}
	
.all {
		display: block;
	}	

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: black;
	display: block;
	margin: auto;
	transition: 0.5s;
}
	
.nav-links ul li:hover::after{
	width: 100%;
	}

.hero-btn {
	padding: 7px 17px;
	font-size: 15px;
	}
	.nav-links ul li{
	 	display: block;
	}
	
	.second-btn {
	padding: 7px 17px;
	font-size: 15px;
	}

	.yey-btn {
	padding: 7px 17px;
	font-size: 15px;
	}

	
	.mem-btn {
	padding: 7px 17px;
	font-size: 15px;
	}

	.nav-links{
		position: absolute; 
		background: #E2D3CD;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	
nav .fa {
		display: block;
		color: black;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	
	.nav-links ul { 
		padding: 30px;
	}
	

	.collection {
		align-content: center;
		flex: auto;
	}
	
	.row {
		flex-direction: column;
	 }
	
	.feedback {
		font-size: 15px;
	}
	
	h1 {
		font-size: 30px;
	}
	
	p {
		font-size: 15px;
		justify-content: space-between;
		text-justify: center;
		align-content: center;
		align-items: center;
	}
	
	.foot-col-2 img {
		transform: translate(-78%);
		height: 60px;
	}
	
	.foot-col-1 p {
		font-size: 9px;
	}
	
}

/*----------------------------------450px-----------------------------------*/

@media (max-width: 450px){
.header {
	min-height: 100vh;
}

.meet h1{
	font-size: 40px;
	padding: 15px;
}
	
.cards {
	display: block;
}	

.card {
	width: 80vw;
	height: 100%;
	margin: auto;
	padding: 15px;
}

.collection img{
	width: 65%;
	height: auto;
	display: block;
}

.card h3 {
	font-size: 22px;
}
	
.card h2 {
	font-size: 22px;
}
	
.card p {
	font-size: 14px;
}

.btn-primary {
	font-size: 17px;
}

.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 10px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: black;
	display: block;
	margin: auto;
	transition: 0.5s;
}
	
.nav-links ul li:hover::after{
	width: 100%;
	}

.hero-btn {
	padding: 6px 16px;
	font-size: 13px;
	}
.nav-links ul li{
	 	display: block;
	}
	
.second-btn {
	padding: 6px 16px;
	font-size: 13px;
	}

.yey-btn {
	padding: 6px 16px;
	font-size: 13px;
	}

	
.mem-btn {
	padding: 6px 16px;
	font-size: 13px;
	}
	
.buy-btn {
	width: 95px;
	height: 23.75px;
	font-size: 12px;
}

.nav-links{
		position: absolute; 
		background: #E2D3CD;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	
nav .fa {
		display: block;
		color: black;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	
.nav-links ul { 
		padding: 30px;
	}
	
.box {
	width: 183.333425px;
	border-radius: 10px;
	margin: 30px;
}

.slide-img {
	height: 275px;
}

.type a {
		font-size: 14px;
		margin: 2.8px 0px;
		font-weight: 700;
		letter-spacing: 0.5px;
		padding-right: 8px;
	}

.type span {
		font-size: 14px
	}

.price {
		font-weight: 600;
		font-size: 14px;
		letter-spacing: 0.5px;
	}

.collection {
		align-content: center;
		flex: auto;
	}
	
.row {
		flex-direction: column;
	 }
	
.feedback {
		font-size: 14px;
	}
	
h1 {
		font-size: 22px;
	}
	
p {
		font-size: 14px;
		justify-content: space-between;
		text-justify: center;
		align-content: center;
		align-items: center;
	}
	
.foot-col-2 img {
		transform: translate(-74%);
		height: 50px;
	}
	
.foot-col-1 p {
		font-size: 9px;
	}
	
}

/*----------------------------------300px-----------------------------------*/


@media (max-width: 300px){
.header {
	min-height: 100vh;
}

.meet h1{
	font-size: 35px;
	padding: 15px;
}
	
.cards {
	display: block;
}	

.card {
	width: 85vw;
	height: 100%;
	margin: auto;
	padding: 15px;
}

.collection img{
	width: 65%;
	height: auto;
	display: block;
}

.card h3 {
	font-size: 20px;
}
	
.card h2 {
	font-size: 20px;
}
	
.card p {
	font-size: 13px;
}

.btn-primary {
	font-size: 16px;
}

.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 10px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: black;
	display: block;
	margin: auto;
	transition: 0.5s;
}
	
.nav-links ul li:hover::after{
	width: 100%;
	}

.hero-btn {
	padding: 6px 16px;
	font-size: 13px;
	}
.nav-links ul li{
	 	display: block;
	}
	
.second-btn {
	padding: 6px 16px;
	font-size: 13px;
	}

.yey-btn {
	padding: 6px 16px;
	font-size: 13px;
	}

	
.mem-btn {
	padding: 6px 16px;
	font-size: 13px;
	}
	
.buy-btn {
	width: 95px;
	height: 23.75px;
	font-size: 12px;
}

.nav-links{
		position: absolute; 
		background: #E2D3CD;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	
nav .fa {
		display: block;
		color: black;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	
.nav-links ul { 
		padding: 30px;
	}
	
.box {
	width: 183.333425px;
	border-radius: 10px;
	margin: 30px;
}

.slide-img {
	height: 275px;
}

.type a {
		font-size: 13px;
		margin: 2.8px 0px;
		font-weight: 700;
		letter-spacing: 0.5px;
		padding-right: 8px;
	}

.type span {
		font-size: 13px
	}

.price {
		font-weight: 600;
		font-size: 14px;
		letter-spacing: 0.5px;
	}

.collection {
		align-content: center;
		flex: auto;
	}
	
.row {
		flex-direction: column;
	 }
	
.feedback {
		font-size: 13px;
	}
	
h1 {
		font-size: 20px;
	}
	
p {
		font-size: 13px;
		justify-content: space-between;
		text-justify: center;
		align-content: center;
		align-items: center;
	}
	
.foot-col-2 img {
		transform: translate(-74%);
		height: 50px;
	}
	
.foot-col-1 p {
		font-size: 7px;
	}
	
}

