body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
	font-family: 'Archivo Narrow', sans-serif;
}

.vt323-regular {
	font-family: 'VT323', monospace;
	font-weight: 400;
	font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Use a value from 400 to 700 */

/* .archivo-<uniquifier> {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */

/* .archivo-narrow-standard {
  font-family: "Archivo Narrow", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

/* .archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

header div {
	display: flex;
}

header div h1 {
	margin: 20px auto;
	font-size: 40px;
	/* border-bottom: 1px solid lightgrey; */
}

.header-one {
	justify-content: space-between;
	margin: 10px 10px 10px 10px;
}

.header-two {
	flex-direction: column;
	align-items: center;
	margin: 0 0 20px 0;
}

.logo-start-title {
	font-family: 'Archivo', sans-serif;
	font-size: 50px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #a6a6a6;
}

.logo-start-subtitle {
	font-family: 'Archivo', sans-serif;
	font-size: 12px;
	font-weight: 700;
	padding-top: 5px;
	letter-spacing: 1.5px;
	/* text-transform: uppercase; */
}

/* img.header-logo {
	width: 100px;
	height: auto;
} */

.category-title {
	border-right: 1px solid #a6a6a6;
	padding-right: 10px;
	margin-right: 10px;
}

.category-title:last-of-type {
	border-right: 0;
	padding-right: 0;
	margin-right: 0;
}

.main-background {
	width: 100%;
	margin: 0 0 20px 0;
}

.main-background img {
	display: block;
	width: 100%;
	height: auto;
}

.wrapper-work {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.work-sect,
.footer-sect {
	display: inline-block;
}

.work-sect {
	padding: 25px 0 0 10px;
}

h2.work-title {
	margin: 15px 0px 10px 0px;
	font-size: 30px;
}

h3.work-subtitle {
	text-align: center;
	font-size: 20px;
}

.work-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background: #edeade;
	margin-bottom: 10px;
	border-radius: 3px;
}

.work-content {
	width: 80%;
	max-width: 800px;
}

.work-text {
	margin: 0 0 20px 0;
}

.work-text:last-child {
	margin: 0 0 15px 0;
}

.work-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 20px 0 0 0;
}

.work-cta span {
	font-size: 20px;
}

.work-cta-mail {
	text-decoration: underline;
}

.work-cta-tel {
	font-size: 24px;
}

.work-cta span a:hover {
	text-decoration: underline;
	opacity: 1;
}

.category-title,
.cta-mail,
.work-sect,
.footer-sect {
	font-size: 18px;
}

.icon-social {
	font-size: 30px;
}

footer {
	padding: 75px 10px 10px 10px;
	margin-top: auto;
}

a {
	text-decoration: none;
	color: #000000;
}

header a:hover,
main a:hover,
.social-mail-wrapper a:hover {
	text-decoration: none;
	color: #000000;
	transition: opacity 0.5s;
	opacity: 0.5;
}

.social-icons-wrapper a:hover {
	transition: transform 0.3s;
	transform: scale(1.1, 1.1);
}

.social-icons-wrapper {
	gap: 5px;
	align-items: center;
}

footer div {
	display: flex;
	flex: 1;
}

.footer-social,
.wrapper-work {
	border-top: 1px solid lightgrey;
	padding: 10px 0 0 0;
}

.social-mail-wrapper {
	justify-content: center;
}

.social-mail-box {
	flex-direction: column;
	align-items: center;
}

.footer-social div:last-of-type {
	justify-content: flex-end;
}

.copyrights {
	font-family: 'Archivo', sans-serif;
	font-size: 12px;
	letter-spacing: 3px;
}

.copyrights span {
	text-transform: uppercase;
}

.copyrights span:nth-child(2) {
	text-transform: none;
	font-family: 'VT323', monospace;
	font-size: 16px;
}

.lang-switch {
	display: inline-flex;
	position: fixed;
	top: 10px;
	right: 10px;
	gap: 5px;
}

.lang-switch div {
	padding-right: 5px;
	border-right: 1px solid #808080;
}

.lang-switch div:last-child {
	border: none;
	padding-right: 0px;
}

.gallery-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 10px;
}

.column {
	/* The column is now a simple container for the image-box */
	/* Flexbox on the parent wrapper handles the layout. */
}

.image-box {
	width: 320px;
	height: 240px;
	padding: 15px;
	background-color: #fdfdff;
	border: 3px solid #a9a9a9;
	box-shadow: 3px 7px 5px #808080;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image {
	width: 100%;
	height: 100%;
}

.image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* @media (min-width: 1600px) {
	.main-background img {
		width: 50%;
		margin: 0 auto;
	}
} */

@media (max-width: 520px) {
	.header-one {
		justify-content: center;
	}

	/* .logo-start-title {
		font-size: 40px;
	}

	.logo-start-subtitle {
		font-size: 11px;
		padding-top: 5px;
		letter-spacing: 1px;
	} */

	header div h1 {
		font-size: 30px;
	}

	h2.work-title {
		font-size: 25px;
	}

	.work-content {
		width: 100%;
	}

	h3.work-subtitle,
	.work-cta span {
		font-size: 18px;
	}

	.cta-mail,
	.work-sect,
	.footer-sect {
		font-size: 16px;
	}

	.work-cta-tel {
		font-size: 22px;
	}

	.copyrights {
		font-size: 10px;
	}

	.copyrights span:nth-child(2) {
		font-size: 14px;
	}

	.column {
		/* On mobile, each column takes full width to center the box */
		flex: 1 1 100%;
		display: flex;
		justify-content: center;
		padding-bottom: 10px;
	}

	.image-box {
		width: 280px;
		height: 210px;
	}

	.gallery-wrapper {
		gap: 10px;
	}
}
