ia@charset "utf-8";
/* CSS Document */
/* Hero Section */

.store-main {
	background-color: #fff;
}

.store-main__container {
	display: grid;
	grid-template-columns: 30% 4fr;
	justify-self: center;
	margin: 0 auto;
	background-color: #fff;
	z-index: 1;
	width: 80%;
	max-width: 1300px;
	padding: 0 50px;
}

.store-main__content {
	margin: auto auto;
	padding-left: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80%;
}

.store-main__content h1 {
		font-size: 2.5rem;
		color: #000;
		text-align:left;
		margin: 0;
		padding: 0;
/*
	background-color: #ff8177;
	background-: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
*/	
}

.store-main__content h2 {
		font-size: 1.5rem;
		color: #000;
		text-align:left;
		margin: 0;
		padding: 0;
/*	background-color: #ff8177;
	background-: linear-gradient(to top, #b721ff 0%, #21d4fd 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
*/	
}

.store-main__content p {
	margin-bottom: .5rem;
	font-size: 1rem;
	font-weight: 100;
	color: #000;
	padding: 0 20px 0 20px;
	text-align: justify;
}

.store-grid-container {
	border: 1px solid rgba(0, 0, 0, 0.25);
	display: grid;
	grid-template-columns: auto;
	grid-auto-rows: auto;
	width: 100%;
	margin-top: 1rem;
	align-items: center;
    box-shadow: 5px 5px 8px rgb(0 0 0 / 40%);
}

.store-grid-item-lang-title {
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 1rem;
    padding-top: 1rem;
    background-color: #f9f6f1;
}

.store-grid-item {
/*	border: 1px solid rgba(0, 0, 0, 0.8); */
	font-size: 1.5rem;
	text-align: center;
	text-decoration: none;
	padding: 10px;
}

.store-grid-item a {
	text-decoration: none;
	color: #212121;
}

.store-grid-item a:hover {
	color: #7F9E3B;
}
.store-grid-item img {
	height: 20px;
}

.store-main__btn {
	font-size: 1rem;
	/* background-: linear-gradient(to top, #f77062 0%, #fe5196 100%); */
	background: #7F9E3B;
	padding: 14px 32px;
	border: none;
	border-radius: 4px;
	color: #fff;
	margin-top: 2rem;
	cursor: pointer;
	position: relative;
	transition: all 0.35s;
	outline: none;
}

.store-main__btn a {
	position: relative;
	z-index: 2;
	color: #fff;
	text-decoration: none;
}

.store-main__btn:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #4837ff;
	transition: all 0.35s;
	border-radius: 4px;
}

.store-main__btn:hover {
	color: #fff;
}

.store-main__btn:hover:after {
	width: 100%;
}

#store-main__img {
	margin-top: 10%;
	margin-bottom: 10%;
	width: 100%;
}



/* Mobile Responsive*/
@media screen and (max-width: 768px) {
	.store-main__container {
		display: grid;
		grid-template-columns: auto;
		align-items: center;
		justify-self: center;
		width: 80%;
		margin: 0 auto;
	}

	.store-main__content {
		text-align: center;
		margin-bottom: 4rem;
		padding-left: 10px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.store-main__content h1 {
		font-size: 2.5rem;
		color: #000;
		text-align:left;
		margin: 0;
		padding: 0;
	}
	
	.store-main__content h2 {
		font-size: 1.5rem;
		color: #000;
		text-align:left;
		margin: 0;
		padding: 0;
	}
	
	.store-main__content p {
		margin-bottom: .5rem;
		font-size: 1rem;
		font-weight: 100;
		color: #000;
		padding: 0 20px 0 20px;
		text-align: justify;
	}
	

	#store-main__img {
		width: 80%;
	}
	
/*	
	#store-maincontent__messagetitle {
		font-size: 3rem;
		margin-bottom: 1rem;
		padding: 0;
	}
	
	#store-maincontent__messagequote {
		font-size: 2.5rem;
		margin: 0;
		padding: 0;
	}
	
	#store-maincontent__messagequote img {
		width: 100%;
	}
	
	#store-maincontent__messagebody {
		padding-left: 3rem;
	}
	
	
}

*/

@media screen and (max-width: 480px) {
	
	.store-main__container {
		width: 80%;
	}
	
	.store-main__content h1 {
		font-size: 2rem;
		margin-top: 3rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		margin: 0;
		padding: 0;
	}
	
	.store-main__content h2 {
		font-size: 2rem;
		margin: 0;
		padding: 0;
	}
	
	.store-main__content p {
		margin-bottom: .5rem;
		font-size: 1rem;
		font-weight: 100;
		color: #000;
		padding: 0 20px 0 20px;
		text-align: justify;
	}
	
	.store-main__btn {
		padding: 12px 36px;
		margin: 2.5rem 0;
	}
}