*,
*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-anchor: auto;
}

body {
	font-family: "bebas-neue-pro", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.275rem;
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

p {
	margin-top: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #F1A51E;
}


i {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	letter-spacing: normal;
}


.normal {
	font-family: "bebas-neue-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
}


/* Grid */
.container {
	max-width: 1420px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 60px;
	padding-right: 60px;
	width: 100%;
}

/* Buttons */
.button {
	border: 4px solid #ffffff;
	padding: 10px 15px;
	font-size: 18px;
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}
.button:before {
	height: 0;
}
.button:hover {
	border: 4px solid #F1A51E;
	background-color: #F1A51E;
	color: #ffffff;
	text-decoration: none;
}


/* Styles */
.social-media li a i {
	position: relative;
	display: block;
}
.social-media .facebook,
.social-media .tiktok {
	font-size: 18px;
}

.social-media li {
	display: flex;
	align-items: center;
}
.social-media li a {
	width: auto;
}
.social-media li.instagram a,
.social-media li.facebook a ,
.social-media li.tiktok a {
	width: 30px;
	aspect-ratio: 1/1;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-media li.instagram a:hover,
.social-media li.facebook a:hover,
.social-media li.tiktok a:hover {
	text-decoration: none;
}

.social-media li.instagram a i {
	color: #ffffff;
	font-size: 30px;
}
.social-media li.instagram a i:hover {
	color: #F1A51E;
}
.social-media li.facebook a img,
.social-media li.facebook a svg,
.social-media li.tiktok a img,
.social-media li.tiktok a svg {
	width: 30px;
	aspect-ratio: 1/1;
	height: auto;
}
.social-media li.facebook a svg:hover path,
.social-media li.tiktok a svg:hover path {
	fill: #F1A51E;
}

footer .social-media li:nth-child(1) {
	padding-right: 30px;
}



/* Layouts */
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 100px;
	z-index: 100;
}
header a {
	color: #ffffff;
}
header ul {
	display: flex;
	gap: 15px;
}
header .header-container {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	height: 100%;
}
header .header-container .contact {
	justify-self: end;
}



main .main-container {
	position: relative;
}
main .main-container .main-image {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - (160px + 160px));
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
main .main-container .main-image .image-panel {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
}
main .main-container .main-image .image-panel:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #000000;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.3;
}
main .main-container .main-image .image-panel img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
main .main-container .info-panel {
	width: 350px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
main .main-container .info-panel .button {
	flex-basis: 1 1 auto;
}

main .address-panel {
	height: 160px;
	background-color: #ffffff;
	color: #000000;
	text-align: center;
}
main .address-panel .address-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 45px;
	height: 100%;
	font-size: 35px;
}
main .address-panel a {
	color: #000000;
	font-family: "bebas-neue-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
}



footer {
	width: 100%;
	height: 160px;
	background-color: #000000;
}
footer a {
	color: #ffffff;
}
footer ul {
	display: flex;
	gap: 15px;
}
footer .footer-container {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	height: 100%;
}
footer .footer-container .contact {
	justify-self: end;
}



@media screen and (max-width: 1280px) {

	main .main-container .info-panel {
		gap: 10px;
	}
	
	main .main-container .main-image {
		height: calc(100vh - (100px + 100px));
	}
	main .address-panel {
		height: 100px;
	}
	footer {
		height: 100px;
	}	
	
}

@media screen and (max-width: 992px) {

	main .main-container .main-image {
		height: calc(100vh - (120px + 120px));
	}

	main .address-panel {
		height: 120px;
	}
	main .address-panel .address-container {
		flex-wrap: wrap;
		gap: 5px;
	}

	footer {
    height: 120px;
	}
	footer .footer-container {
    grid-template-columns: 1fr;
		gap: 12px;
	}
	footer .social-media {
		align-self: end;
	}
	footer ul {
		justify-content: center;
	}
	footer .footer-container .contact {
		justify-self: center;
		align-self: start;
	}

}


@media screen and (max-width: 662px) {

	.container {
		max-width: 90%;
		padding-left: 0;
		padding-right: 0;
	}

	header .header-container {
    grid-template-columns: 1fr;
	}
	header .social-media {
		align-self: end;
		justify-self: center;
	}
	header .header-container .contact {
		justify-self: center;
	}

	main .main-container .info-panel {
		width: 250px;
		margin-top: 20px;
		gap: 0;
	}

	main .main-container .main-image {
    height: calc(100vh - (140px + 105px));
	}

	main .address-panel {
		display: flex;
		align-items: center;
		height: 105px;
	}
	main .address-panel .address-container {
		font-size: 24px;
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
		height: auto;
	}

	footer {
    height: 140px;
	}
	footer .footer-container {
    gap: 20px;
	}
	footer .footer-container .contact {
		justify-self: center;
		align-self: start;
	}
	footer ul {
		flex-wrap: wrap;
	}
	footer .social-media {
		justify-self: center;
	}
	footer .social-media li:nth-child(1) {
		padding-right: 0;
    flex: 1 1 100%;
	}
	footer .social-media li {
    flex: 0 1 auto;
		text-align: center;
		justify-content: center;
	}

}


@media screen and (max-width: 380px) {

	main .main-container .info-panel {
    width: 250px;
    margin-top: 70px;
    gap: 0;
	}

}