@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&family=Open+Sans:wght@300;400&display=swap');


body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

* {
	font-family: 'Open Sans', sans-serif;
}

img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

iframe {
	border: 0;
}

a {
	text-decoration: none;
	outline: none;
}

button {
	cursor: pointer;
}

select,
input,
textarea,
button {
	box-sizing: border-box;
}

select:focus,
a:focus,
button:focus,
textarea:focus,
input:focus {
	outline: 0;
	box-shadow: none;
}

p {
	margin: 0px;
	padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	padding: 0px;
	font-family: 'Oswald', sans-serif;
	line-height: 1em;
	text-transform: capitalize;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

:root {
	--main-padding: 120px 50px;
	--dark-text: #1b1e32;
	--light-text: #3f4b68;
}

.wrapper {
	margin: auto;
	max-width: 1440px;
}

section {
	padding: var(--main-padding);
	margin: 0 40px;
}

.button {
	width: 250px;
	padding: 10px;
	text-align: center;
	border: 5px solid black;
	box-sizing: border-box;
	text-transform: capitalize;
	font-size: 14px;
	font-weight: 700;
	transition: background-color .3s;
}

.primary-btn {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.primary-btn:hover {
	background-color: var(--primary-color);
	color: white;
}

.secondary-btn {
	color: var(--secondary-color);
	border-color: var(--secondary-color);
}

.secondary-btn:hover {
	background-color: var(--secondary-color);
	color: white;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.logo>img {
	width: 150px;
}

.landing {
	display: flex;
	gap: 100px;
	align-items: center;
}

.landing>* {
	flex: 1;
}

.landing-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.landing-text>div {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.landing-text>div>h1 {
	font-size: 60px;
	color: var(--dark-text);
}

.landing-text>div>p {
	font-size: 16px;
	color: var(--light-text);
}

.landing-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-container {
	width: 100%;
	position: relative;
}

.image-container>.image {
	width: 100%;
	height: 600px;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 2;
}

.image-container:before,
.image-container:after {
	content: '';
	height: 300px;
	width: 300px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	z-index: 1;
}

.image-container:before {
	top: -20px;
	left: -20px;
}

.image-container:after {
	bottom: -20px;
	right: -20px;
}

.buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.about {
	background-color: var(--secondary-color);
	display: flex;
	gap: 50px;
	color: white;
}

.about>* {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-image>.image-container>.image {
	height: 400px;
}

.about-image>.image-container:before {
	width: 100%;
	height: 100%;
}

.about-image>.image-container:after {
	display: none;
}

.about-text {
	gap: 20px;
}

.in-quotes {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 40px;
}

.in-quotes>h1 {
	font-size: 50px;
}

.in-quotes>p {
	font-size: 15px;
}

.about-text>i {
	font-size: 40px;
	color: var(--primary-color);
}

.about-text>i:last-of-type {
	align-self: flex-end;
}

.social-media {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 20px;
}

.social-media>li>a {
	color: white;
	transition: .3s color;
}

.social-media>li>a:hover {
	color: var(--primary-color);
}

.gallery,
.services {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
}

.title-container>h1 {
	font-size: 50px;
	color: var(--dark-text);
}

.title-container>p {
	font-size: 14px;
	color: var(--light-text);
	max-width: 700px;
	text-align: center;
}

.services-list {
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	position: relative;
	background-color: white;
	padding: 20px;
	gap: 10px;
}

.services-list>div {
	width: calc(50% - 10px);
	padding: 15px;
	box-sizing: border-box;
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 700;
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	color: var(--light-text);
	border: 5px solid var(--secondary-color);
}

.services-list>div>span {
	color: var(--primary-color);
}

.services-list:before,
.services-list:after {
	content: '';
	height: 70px;
	width: 70px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	z-index: -1;
}

.services-list:before {
	top: -20px;
	left: -20px;
}

.services-list:after {
	bottom: -20px;
	right: -20px;
}

.images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}

.images>div {
	width: calc((100% - 40px) / 3);
	box-sizing: border-box;
	height: 400px;
	background-position: center;
	background-size: cover;
}

.waitlist {
	display: flex;
	gap: 100px;
	background-color: var(--secondary-color);
}


.waitlist-text {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
}

.waitlist-text>h1,
.waitlist-text>p {
	text-align: left;
	color: white;
}

.waitlist-container {
	display: flex;
	flex-direction: column;
	width: 70%;
}

.waitlist-container>div {
	position: relative;
	padding: 15px;
}

.waitlist-container>div>iframe {
	width: 100%;
	height: 700px;
	position: relative;
	z-index: 2;
	border: 15px solid var(--secondary-color);
	box-sizing: border-box;
}

.waitlist-container>div:before,
.waitlist-container>div:after {
	content: '';
	height: 100px;
	width: 100px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	z-index: 1;
}

.waitlist-container>div:before {
	top: -10px;
	left: -10px;
}

.waitlist-container>div:after {
	bottom: -10px;
	right: -10px;
}

.employees {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.employees-list {
	width: 100%;
	max-width: 1364px;
	gap: 20px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 40px;
}

.employee {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.e-img {
	height: 300px;
	width: 250px;
	background-position: center;
	background-size: cover;
}

.e-text-c {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.e-text {
	width: 100%;
	position: relative;
	margin-top: 20px;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	background-color: rgb(255, 255, 255);
}

.e-text>p {
	line-height: 15px;
	font-size: 16px;
	font-weight: 700;
}

.e-text>a {
	font-size: 13px;
	color: var(--primary-color);
}

.e-text:before,
.e-text:after {
	content: '';
	height: 40px;
	width: 40px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	z-index: -1;
}

.e-text:before {
	top: -10px;
	left: -10px;
}

.e-text:after {
	bottom: -10px;
	right: -10px;
}

.employee:nth-of-type(2n)>.e-text-c>.e-text:before {
	left: auto;
	right: -10px;
}

.employee:nth-of-type(2n)>.e-text-c>.e-text:after {
	right: auto;
	left: -10px;
}

.products-text {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	text-align: center;
	align-items: center;
}

.products-text>h1 {
	font-size: 50px;
	color: white;
	align-items: center;
	color: var(--primary-color);
}

.products {
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.products-list {
	margin-top: 20px;
	width: 100%;
	max-width: 1364px;
	gap: 20px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.product {
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 17%);
}

.p-text {
	position: absolute;
	width: 100%;
	background: linear-gradient(0deg, var(--primary-color) 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
	bottom: 0;
	padding: 15px 0;
	box-sizing: border-box;
	color: rgb(255, 255, 255);
	font-size: 15px;
}

.p-img {
	height: 300px;
	width: 250px;
	background-position: center;
	background-size: cover;
}

.p-text>p {
	font-size: 17px;
	text-align: center;
}

.products>a {
	margin-top: 60px;
	background-color: white;
	color: var(--primary-color);
	font-size: 13px;
	cursor: pointer;
}

.schedule {
	display: flex;
	gap: 100px;
}

.schedule>* {
	flex: 1;
}

.map {
	align-items: center;
	display: flex;
}

.schedule-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.schedule-info>p {
	text-align: left;
}

.schedule-info>div {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 17px;
	margin-top: 20px;
}

.schedule-info>div>div {
	display: flex;
	gap: 5px;
	align-items: center;
	color: #2e333c;
}

.day {
	font-weight: 700;
	width: 100px;
	text-transform: capitalize;
}

.schedule-info>div>div>i {
	margin-right: 50px;
	color: var(--secondary-color);
}

.time {
	position: relative;
}

.time>span {
	color: var(--secondary-color);
	font-size: 25px;
	font-family: 'Oswald', sans-serif;
}

.closed:after {
	content: 'Closed';
	color: var(--secondary-color);
	font-size: 25px;
	font-family: 'Oswald', sans-serif;
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	background-color: white;
}

.map-container {
	width: 100%;
	position: relative;
	padding: 15px;
	background-color: white;
}

.map-container>iframe {
	width: 100%;
	height: 400px;
}

.map-container:before,
.map-container:after {
	content: '';
	height: 70px;
	width: 70px;
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	z-index: -1;
}

.map-container:before {
	top: -20px;
	left: -20px;
}

.map-container:after {
	bottom: -20px;
	right: -20px;
}

@media (max-width: 900px) {

	:root {
		--main-padding: 100px 20px;
	}

	section {
		margin: 0px;
	}

	.landing {
		flex-direction: column;
	}

	.landing-image {
		width: 90%;
	}

	.image-container>.image {
		height: 500px;
	}

	.image-container:before,
	.image-container:after {
		height: 150px;
		width: 150px;
	}

	.landing-text>div,
	.landing-text {
		align-items: center;
		text-align: center;
	}

	.landing-text>div>h1 {
		font-size: 40px;
	}

	.about {
		flex-direction: column;
		align-items: center;
	}

	.about-image {
		width: 100%;
		align-items: center;
		display: flex;
		justify-content: center;
	}

	.about-image>.image-container {
		width: 70%;
	}

	.about-image>.image-container>.image {
		height: 300px;
	}

	.services-list {
		width: 80%;
	}

	.services-list>div {
		width: 100%;
		font-size: 15px;
	}

	.images>div {
		width: 100%;
	}

	.waitlist {
		flex-direction: column;
	}

	.waitlist-container {
		width: 100%;
	}

	.waitlist-text {
		align-items: center;
	}

	.schedule-info>p,
	.waitlist-text>p {
		text-align: center;
	}

	.schedule {
		flex-direction: column;
	}

	.schedule-info {
		align-items: center;
		text-align: center;
	}

	.map {
		width: 100%;
	}

	.map>iframe {
		width: 100%;
		max-width: 100%;
	}

}