/* || General Styles */

html, body, header, nav, h1, h2, h3, h4, div, ul, li, a, p, button, main, section, img, footer {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	background-color: #fff;
	color: #1d1d1f;
	scroll-behavior: smooth;
}

/* || Utilities */

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

main a {
	color: #0066cc;
}

main a:hover {
	text-decoration-line: underline;
}

a:focus-visible {
	outline: 3px solid #0066cc;
	outline-offset: 4px;
}

@media only screen and (max-width: 1024px) {
	main a:focus {
		text-decoration-line: underline;
	}
}

.visuallyhidden {
	clip: rect(0 0 0 0);
	clip-path: inset(0 0 100% 100%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.red {
	color: #e11d2e;
}

/* || Typography */

html {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
}

body {
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 1.5;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
	body {
		letter-spacing: 0;
	}
}

/* || SITEWIDE */

/* || STORE PAGES */

/* || Navigation Bar */

.navbar {
	position: fixed;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid #ececf0;
	z-index: 999;
}

.navbar-content {
	margin: 0 auto;
	padding-top: 16px;
	padding-right: calc(max(22px, env(safe-area-inset-right)));
	padding-bottom: 16px;
	padding-left: calc(max(22px, env(safe-area-inset-left)));
	max-width: 1000px;
}

.main-menu {
	display: flex;
	justify-content: space-between;
	user-select: none;
	align-items: center;
	gap: 24px;
}

.menu-link {
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 3.3;
	letter-spacing: 0.05rem;
	color: #424245;
	opacity: .9;
}

.menu-link:hover {
	opacity: 1;
}

.home-link {
	opacity: .8;
}

.home-link:hover {
	opacity: 1;
}

/* || */

main {
	position: relative;
	top: 89px;
}

/* || First Section */

.home-first-section {
	background: linear-gradient(135deg, #ffffff, #f7f7f9);
	display: grid;
	grid-template-columns: minmax(22px, 1fr) minmax(0, 560px) minmax(320px, 640px) minmax(22px, 1fr);
	column-gap: 56px;
	align-items: center;
	min-height: 520px;
	padding: 40px 0;
}

.home-first-section-content {
	grid-column: 2;
}

.home-first-section-title {
	font-size: 72px;
	font-size: 7.2rem;
	font-weight: 700;
	line-height: 1.02;
	color: #1d1d1f;
}

.home-first-section-p {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.45;
	color: #515154;
	margin-top: 20px;
	max-width: 620px;
}

.home-first-section-p--mobile {
	display: none;
}

.home-first-section-trust-bar {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-size: 1.4rem;
	color: #e11d2e;
	margin-top: 12px;
}

.home-first-section-trust-bar li:not(:last-child)::after {
	content: '\00a0\00b7\00a0';
}

.home-first-section-link {
	font-size: 17px;
	font-size: 1.7rem;
	margin-top: 24px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.home-first-section-microcopy {
	font-size: 13px;
	font-size: 1.3rem;
	color: #86868b;
	margin-top: 10px;
}

.home-first-section-image {
	grid-column: 3;
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(29, 29, 31, 0.12);
}

.button-link {
	display: inline-block;
	background-color: #e11d2e;
	color: #ffffff;
	border: 2px solid #e11d2e;
	border-radius: 999px;
	padding: 10px 24px;
	font-weight: 700;
	transition: background-color 0.2s, color 0.2s;
}

.button-link:hover {
	background-color: #b91524;
	border-color: #b91524;
	text-decoration-line: none;
	color: #ffffff;
}

.button-outline {
	background-color: transparent;
	color: #e11d2e;
}

.button-outline:hover {
	background-color: #e11d2e;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.home-first-section {
		grid-template-columns: 22px 1fr 22px;
		column-gap: 0;
		row-gap: 32px;
		padding: 32px 0;
	}

	.home-first-section-content,
	.home-first-section-image {
		grid-column: 2;
	}
}

@media (max-width: 767px) {
	.home-first-section {
		grid-template-columns: 16px 1fr 16px;
	}

	.home-first-section-title {
		font-size: 46px;
		font-size: 4.6rem;
	}

	.home-first-section-p {
		font-size: 20px;
		font-size: 2rem;
	}

	.home-first-section-p--desktop {
		display: none;
	}

	.home-first-section-p--mobile {
		display: block;
	}

	.home-first-section-trust-bar {
		flex-direction: column;
		gap: 4px;
	}

	.home-first-section-trust-bar li:not(:last-child)::after {
		content: none;
	}

	.home-first-section-link {
		margin-top: 20px;
	}
}

/* || Second Section */

.home-second-section {
	background-color: #ffffff;
	padding: 100px 22px;
}

.home-second-section-container {
	max-width: 1250px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	column-gap: 80px;
	align-items: start;
}

.home-second-section-title {
	font-size: 42px;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.1;
	color: #1d1d1f;
}

.home-second-section-p {
	font-size: 19px;
	font-size: 1.9rem;
	line-height: 1.6;
	color: #515154;
}

.home-second-section-list-intro {
	margin-top: 24px;
}

.home-second-section-closing-p {
	margin-top: 24px;
}

.home-second-section-list {
	list-style: disc;
	padding-left: 24px;
	margin-top: 16px;
	font-size: 19px;
	font-size: 1.9rem;
	line-height: 1.6;
	color: #515154;
}

/* || Second Section Card */

.home-second-section-card {
	margin-top: 32px;
	padding: 20px 20px 20px 22px;
	border-left: 3px solid #e11d2e;
	border-radius: 0 8px 8px 0;
	background-color: #f7f7f9;
}

.home-second-section-card-icon {
	display: block;
	margin-bottom: 12px;
}

.home-second-section-card-title {
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: 600;
	color: #1d1d1f;
	margin-bottom: 8px;
}

.home-second-section-card-body {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #515154;
}

@media (max-width: 1024px) {
	.home-second-section {
		padding: 70px 22px;
	}

	.home-second-section-container {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.home-second-section-title {
		font-size: 28px;
		font-size: 2.8rem;
	}
}

@media (max-width: 767px) {
	.home-second-section {
		padding: 50px 16px;
	}

	.home-second-section-p {
		font-size: 17px;
		font-size: 1.7rem;
	}

	.home-second-section-list {
		font-size: 17px;
		font-size: 1.7rem;
	}
}

/* || Third Section */

.home-third-section {
	background-color: #fcfcfc;
	padding: 72px 22px 40px;
}

.home-third-section-title {
	font-size: 37px;
	font-size: 3.7rem;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 50px;
}

.wrapper {
	max-width: 1125px;
	display: grid;
	grid-template-columns: 1.3fr 0.7fr 1.3fr;
	grid-column-gap: 25px;
	grid-row-gap: 75px;
	column-gap: 25px;
	row-gap: 75px;
	padding-bottom: 25px;
	margin: auto;
	align-items: center;
}

.wrapper > :nth-child(1),
.wrapper > :nth-child(2) {
	grid-row: 1;
}

.wrapper > :nth-child(3),
.wrapper > :nth-child(4) {
	grid-row: 2;
}

.wrapper > :nth-child(5),
.wrapper > :nth-child(6) {
	grid-row: 3;
}

.body-left {
	grid-column: 1;
}

.body-right {
	grid-column: 3;
}

.wrapper-body {
	text-align: center;
	padding: 48px 40px;
	background-color: #ffffff;
	border: 1px solid #d8d8dc;
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 18px 40px rgba(0, 0, 0, 0.10);
	position: relative;
	z-index: 1;
}

.wrapper-body h3 {
	font-size: 27px;
	font-size: 2.7rem;
	margin-top: 0;
	margin-bottom: 12px;
}

.wrapper-body h4 {
	font-size: 18px;
	font-size: 1.8rem;
	margin-top: 0;
	margin-bottom: 20px;
	color: #515154;
}

.wrapper-body p {
	margin: 20px 0;
}

.wrapper-body a {
	display: inline-block;
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: 700;
	color: #e11d2e;
	margin-bottom: 0;
}

.image-right {
	grid-column: 2 / 4;
	padding: 0 10px;
}

.image-left {
	grid-column: 1 / 3;
	padding: 0 10px;
}

/*.image-right img {
	width: 721.667px;
	height: 400px;
	max-width: 100%;
	object-fit: contain;
}*/

.uffici-temporanei, .meeting-room, .ufficio-virtuale {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

/* || Fourth Section */

.home-fourth-section-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	column-gap: 28px;
	row-gap: 28px;
	max-width: 1150px;
	padding: 0 22px;
	margin: auto;
	margin-bottom: 100px;
}

.home-fourth-section-card {
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 28px 28px 28px 26px;
	background-color: #f7f7f9;
	border-left: 3px solid #e11d2e;
	border-radius: 0 8px 8px 0;
}

.home-fourth-section-card-icon {
	display: block;
	margin-bottom: 14px;
}

.home-fourth-section-card-title {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #1d1d1f;
	margin-bottom: 10px;
}

.home-fourth-section-card-body {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #515154;
}

.home-fourth-section-title {
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 75px;
}

@media (max-width: 900px) {
	.wrapper {
		grid-template-columns: 1fr;
		row-gap: 28px;
	}

	.wrapper > * {
		grid-column: 1 !important;
		grid-row: auto !important;
		padding: 0;
	}

	.home-fourth-section-wrapper {
		grid-template-columns: 1fr 1fr;
		gap: 22px;
	}
}

@media (max-width: 767px) {
	main {
		top: 82px;
	}

	.navbar-content {
		padding-right: 16px;
		padding-left: 16px;
	}

	.menu-link {
		font-size: 15px;
		font-size: 1.5rem;
	}

	.home-third-section {
		padding: 52px 16px 28px;
	}

	.home-third-section-title,
	.home-fourth-section-title {
		font-size: 29px;
		font-size: 2.9rem;
		margin-bottom: 34px;
	}

	.wrapper-body {
		padding: 28px 22px;
	}

	.home-fourth-section-wrapper {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0 16px;
		margin-bottom: 70px;
	}
}
