@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700;900&display=swap');

* {
	font-family: 'Nunito', sans-serif;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
}

.navigation-vertical::before {
	content: '';
	backdrop-filter: blur(5px);
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.navigation-vertical {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 30px);
	height: 100%;
	background-color: white;
	background-image: url(/tea.avif);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 100;
	text-align: center;
	display: none;
	opacity: 0;
	padding-top: 30px;
	padding-left: 15px;
	padding-right: 15px;
	transition: all 0.3s;
}
.navigation-vertical > a {
	display: block;
	width: 100%;
	padding: 15px;
	font-size: 25px;
	border: 0 !important;
	color: white !important;
	z-index: 2;
}
.navigation-vertical .btn {
	border-radius: 0;
	width: calc(100% - 17px);
}
.navigation-vertical > .logoLink {
	text-align: center;
}
.navigation-vertical .logo {
	width: 80%;
}

.navigation {
	position: sticky;
	top: 0;
	left: 0;
	padding: 15px;
	/* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
	width: 100%;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0);
	transition: all 0.3s;
}
.navigation > a:not(.btn) {
	color: white !important;
}
.navigation.isSticky > a:not(.btn) {
	color: #3c4349 !important;
}
.navigation > a.btn.bars {
	background-color: rgba(255, 255, 255, 0) !important;
	color: white !important;
}
.navigation.isSticky > a.btn.bars {
	background-color: rgba(255, 255, 255, 1) !important;
	color: #3c4349 !important;
}
.navigation.isSticky {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.logoLink {
	margin-right: 20px;
}
.logo {
	width: 75px;
	position: relative;
	padding-bottom: 10px;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
}
.logoLink {
	text-decoration: none;
}
.logo > img {
	display: inline-block;
	width: 100%;
	height: auto;
}
.logo > p {
	display: inline-block;
	width: calc(100% - 55px);
	font-size: 12px;
	font-weight: 900;
	text-align: center;
	position: absolute;
	left: 27px;
	top: 36px;
	color: #3c4349;
}
.navigation > a:not(.logoLink) {
	margin-right: 10px;
	vertical-align: middle;
}
a:not(.logoLink) {
	color: black;
	text-decoration: 0;
	border-bottom: 2px solid gold;
	font-weight: 700;
	color: #3c4349;
	display: inline-block;
	transition: 0.2s all;
	padding-left: 2px;
	padding-right: 2px;
}
a:not(.logoLink):hover {
	background-color: gold;
}
.navigation > a.btn {
	float: right;
	margin-right: 40px;
	margin-top: 12px;
	margin-bottom: 10px;
}
a.btn {
	background-color: gold;
	color: black;
	border-radius: 5px;
	padding: 10px;
}
a.btn:hover {
	background-color: goldenrod;
}
a.btn:focus {
	outline: 2px solid goldenrod;
}

.main-content {
	margin-top: -121px;
}
.container {
	padding: 40px;
}
.container-main {
	padding: 80px;
	padding-top: 236px;
	padding-bottom: 140px;
	background-image: url("/hero.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
	margin-left: 0;
	font-weight: 500;
}
.container-main > h1, .container-main > p {
	position: relative;
	color: white;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

ol {
	list-style-type: upper-roman;
}
ul {
	list-style-type: none;
}
ol > li {
	padding: 15px;
}
ul > li {
	padding: 15px;
	position: relative;
}
ul > li::before {
	content: "➜";
	position: absolute;
	left: -10px;
	font-weight: 900;
}
.text-center {
	text-align: center;
}

.footer {
	padding: 30px;
	background-color: #242424;
	color: white;
}
.footer > .row {
	display: flex;
}
.footer > .row > .column {
	display: inline-block;
	color: white;
	height: 100%;
	flex: 1;
	margin-right: 30px;
}
.footer a {
	border-bottom: 0;
	margin-bottom: 15px;
	color: white;
	text-decoration: underline;
}
.container.container-main a {
	color: black;
}
.container a {
	color: white;
}
.footer a:hover, .container a:hover {
	color: black;
	text-decoration: none;
}
hr {
	border: 0.5px solid dimgrey;
}
@media only screen and (max-width: 635px) {
  .row {
    display: block !important;
  }
  .column {
  	flex: 0 !important;
  	border-bottom: 1px solid dimgrey;
  	width: 100%;
  	padding-bottom: 30px;
  }
}
@media only screen and (max-width: 625px) {
	.navigation > a:not(.logoLink) {
		display: none !important;
	}
	.navigation > a.bars {
		display: block !important;
	}
}
.card {
	background-color: darkgoldenrod;
	color: white;
	font-size: 20px;
	display: inline-block;
	width: 200px;
	text-align: center;
	margin-bottom: 10px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 5px;
	height: 200px;
	position: relative;
	vertical-align: middle;
	transition: 0.2s all;
	cursor: pointer;
}
.card > p {
	margin-top: 85px;
}
.card::after {
	content: 'Register Now \f061';
	position: absolute;
	transition: 0.2s all;
	height: 200px;
	width: 200px;
	color: black;
	border-radius: 5px;
	font-family: "Nunito", "Font Awesome 5 Free";
	font-weight: 900;
	top: 0;
	left: 0;
	background-color: gold;
	opacity: 0;
	line-height: 200px;
}
.card:hover::after {
	opacity: 1;
}

.product {
	width: 250px;
	height: 300px;
	border: 1px solid black;
	position: relative;
	display: inline-block;
	border-radius: 5px;
	transition: all 0.3s;
	cursor: pointer;
}
.product:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.product > p {
	position: absolute;
	bottom: -7px;
	width: calc(100% - 4px);
	text-align: center;
	font-weight: 900;
	-webkit-text-stroke: 1px black;
	text-stroke: 1px black;
}
.product > .img {
	width: 250px;
	height: calc(300px - 60px);
	background-size: cover;
	background-position: center;
	border-radius: 5px;
}