@font-face {
	font-family: 'Euclid-Light';
	src: url('fonts/Euclid\ Circular\ A\ Light.woff2');
}

@font-face {
	font-family: 'Euclid-Regular';
	src: url('fonts/Euclid\ Circular\ A\ Regular.woff2');
}

@font-face {
	font-family: 'Euclid-Medium';
	src: url('fonts/Euclid\ Circular\ A\ Medium.woff2');
}

@font-face {
	font-family: 'Euclid-SemiBold';
	src: url('fonts/Euclid\ Circular\ A\ SemiBold.woff2');
}

@font-face {
	font-family: 'Euclid-Bold';
	src: url('fonts/Euclid\ Circular\ A\ Bold.woff2');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--announcement: #ea4343;
	--highlight: #49b857;
	--dark: #333333;
	--light: #707070;
	--row: #e4e4e4;
}

html {
	scroll-behavior: smooth;
}

.hamburger-menu {
	display: none !important;
}

.hidden {
	display: none !important;
}

.mobile-menu {
	display: none;
	transform: translateY(-100%);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 50;
	background-color: #ffffff;
	width: 100vw;
	transition: all 0.5s;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem 0;
	background-color: white;
	position: relative;
	z-index: 100;
}

.header-sticky {
	position: sticky;
	top: 0;
	padding: 1.5rem;
	z-index: 100;
}

.header-sticky nav a {
	font-size: 1.25rem;
}

.header-logo {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 4rem;
}

.header-logo img {
	width: 200px;
}

.header-logo-mobile {
	display: none;
}

nav a {
	font-family: 'Euclid-Light';
	color: var(--dark);
	text-decoration: none;
	margin: 2rem;
	font-size: 1.5rem;
	cursor: pointer;
}

nav a:hover {
	color: var(--highlight);
}

nav a i {
	font-size: 15px;
	transform: translate(2px, -2px);
}

.facebook-link {
	position: absolute;
	top: 50%;
	right: 4rem;
	transform: translateY(-50%);
}

.facebook-link img {
	width: 30px;
}

.intro-container {
	background-color: var(--dark);
	position: relative;
	overflow: hidden;
}

.intro-background {
	width: 200%;
	height: 1000px;
	position: absolute;
	bottom: -750px;
	left: -50%;
	background-color: #1b1b1b;
	rotate: -5deg;
}

.intro-text h1 {
	color: white;
	font-family: 'Euclid-SemiBold';
	font-size: 4rem;
	text-align: center;
	padding: 3rem 2rem;
}

.intro-content {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.intro-content-column {
	background-color: var(--light);
	width: 25vw;
	min-height: 350px;
	margin: 2rem;
	font-family: 'Euclid-Light';
	color: white;
	position: relative;
	overflow: hidden;
}

.intro-content-column h2 {
	padding: 2rem;
	font-size: 2.5rem;
}

.intro-content-column p {
	font-size: 1.5rem;
	margin: 2rem 0.5rem;
}

.intro-content-column img {
	position: absolute;
	width: 200px;
	height: 200px;
	bottom: -50px;
	right: -50px;
	opacity: 0.2;
	pointer-events: none;
}

.price-info-container {
	text-align: center;
	background-color: var(--highlight);
	padding: 2rem 1rem;
	color: white;
}

.price-info-text {
	font-family: 'Euclid-Medium';
	font-size: 2rem;
}

.price-info-value {
	font-family: 'Euclid-SemiBold';
	font-size: 3rem;
	margin: 0.75rem 0;
}

.price-info-addition {
	font-family: 'Euclid-Light';
	font-size: 1.15rem;
}

.announcement-container {
	text-align: center;
	background-color: var(--announcement);
	padding: 2rem 1rem;
	color: white;
}

.announcement-container p {
	font-family: 'Euclid-Medium';
	font-size: 1.5rem;
}

.services-container {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.services-header {
	text-align: center;
}

.services-header h2 {
	font-family: 'Euclid-Regular';
	padding: 2rem 0 1rem 0;
	font-size: 2.5rem;
}

.services-header p {
	font-family: 'Euclid-Light';
	font-size: 1.5rem;
}

.services-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 45%;
	gap: 4rem;
	margin-top: 2rem;
	justify-content: center;
}

.services-content-cell {
	background-color: var(--light);
	min-height: 300px;
	padding: 2rem;
	color: white;
	font-family: 'Euclid-Light';
	border: 4px dashed var(--dark);
}

.services-content-cell h3 {
	font-size: 1.75rem;
}

.services-content-cell p {
	padding: 2rem 0;
	margin-bottom: 5rem;
	font-size: 1.25rem;
}

.services-content-cell img {
	width: 100px;
	opacity: 0.4;
	pointer-events: none;
	position: absolute;
	bottom: 1rem;
	right: 50%;
	transform: translateX(50%);
}

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

.prices-container h2 {
	font-family: 'Euclid-Regular';
	padding: 3rem 0 2rem 0;
	font-size: 2.5rem;
}

.prices-list {
	width: 50%;
}

.price-row {
	display: flex;
	justify-content: space-between;
	font-family: 'Euclid-Light';
	font-size: 1.5rem;
	padding: 0.75rem 0;
}

.price-row:nth-child(odd):not(.price-row-header) {
	background-color: var(--row);
}

.price-row-header {
	font-family: 'Euclid-Regular';
	font-size: 1.5rem;
	background-color: var(--highlight);
	color: white;
}

.product {
	padding-left: 1rem;
}

.price {
	text-align: right;
	padding-right: 1rem;
}

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

.contact-container h2 {
	font-family: 'Euclid-Regular';
	padding: 3rem 0 2rem 0;
	font-size: 2.5rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
}

.contact-cell {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	background-color: var(--row);
	text-decoration: none;
	position: relative;
	min-height: 120px;
}

.contact-cell img {
	height: 50px;
	opacity: 0.7;
}

.contact-cell h3 {
	font-family: 'Euclid-SemiBold';
	font-size: 1.75rem;
	opacity: 0.7;
}

.contact-cell p {
	padding: 0 1.5rem;
	font-family: 'Euclid-Light';
	font-size: 1.75rem;
	text-decoration: none;
	color: #000000;
}

.contact-cell i {
	color: #000000;
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
}

.contact-cell:hover i {
	color: var(--highlight);
}

.contact-cell-address {
	grid-area: 1 / 1 / 2 / 3;
}
.contact-cell-phone {
	grid-area: 2 / 1 / 3 / 2;
}
.contact-cell-email {
	grid-area: 2 / 2 / 3 / 3;
}
.contact-cell-id {
	grid-area: 3 / 1 / 4 / 2;
}
.contact-cell-taxid {
	grid-area: 3 / 2 / 4 / 3;
}

.open-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.open-container h2 {
	font-family: 'Euclid-Regular';
	padding: 3rem 0 2rem 0;
	font-size: 2.5rem;
}

.open-row {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--light);
}

.open-row:last-child {
	border-bottom: none;
}

.open-row span {
	margin: 1rem 2rem;
	font-size: 1.5rem;
}

.open-time {
	font-family: 'Euclid-Light';
}

.open-day {
	font-family: 'Euclid-Medium';
}

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Euclid-Light';
	background-color: var(--row);
	padding: 1rem 0;
	margin-top: 2rem;
}

footer p {
	color: var(--dark);
	padding: 0 1rem;
}

@media only screen and (max-width: 1400px) {
	.announcement-container {
		border-top: 5rem solid var(--dark);
	}

	.services-content {
		grid-template-columns: repeat(1, 1fr);
	}

	.intro-content-column {
		min-height: 400px;
	}

	header {
		display: none;
	}

	.intro-text h1 {
		margin-top: 2.5rem;
	}

	.hamburger-menu {
		display: block !important;
		position: fixed;
		top: 1rem;
		right: 1rem;
		z-index: 100;
		font-size: 2rem;
		background-color: #ffffff;
		padding: 0.5rem 0.75rem;
		border-radius: 10px;
		cursor: pointer;
	}

	.mobile-menu {
		display: flex;
	}

	.facebook-link-mobile img {
		width: 30px;
	}

	.header-logo-mobile {
		display: block;
		position: absolute;
		z-index: 50;
		top: 0.75rem;
		left: 0.75rem;
	}

	.header-logo-mobile img {
		width: 150px;
	}
}

@media only screen and (max-width: 1200px) {
	.intro-content {
		flex-direction: column;
		width: 100%;
	}

	.intro-content-column {
		width: 85vw;
		min-height: 150px;
	}
}

@media only screen and (max-width: 992px) {
	.services-content {
		width: 85vw;
	}

	.prices-list {
		width: 85vw;
	}

	.price-info-text {
		font-size: 1.5rem;
	}

	.price-info-value {
		font-size: 2rem;
	}

	.price-info-addition {
		font-size: 1rem;
	}

	.contact-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.contact-cell {
		grid-area: auto;
		width: 85vw;
	}

	.contact-cell {
		justify-content: space-between;
		text-align: right;
	}

	.contact-cell h3 {
		font-size: 1.25rem;
	}

	.contact-cell p {
		font-size: 1.25rem;
	}
}

@media only screen and (max-width: 768px) {
	.intro-text h1 {
		font-size: 2rem;
	}

	.intro-content-column h2 {
		font-size: 1.75rem;
	}

	.price-row {
		font-size: 1rem;
	}

	.services-container h2,
	.prices-container h2,
	.contact-container h2,
	.open-container h2 {
		font-size: 2rem;
	}

	.open-row span {
		font-size: 1.15rem;
	}
}

@media only screen and (max-width: 576px) {
	.open-row {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.open-time {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	footer {
		flex-direction: column;
	}

	footer p {
		padding: 0.5rem 0;
	}
}
