* {
	box-sizing: border-box;
}
:root {
	--primary-clr: #1b75bb;
	--white-clr: #fff;
	--black-clr: #000;
	--text-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	--padding: clamp(1rem, 0.6rem + 2vw, 3rem);
}
body {
	font-size: 100%;
	font-family: roboto, sans-serif;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
p {
	margin: 0;
}

.swiper-slide {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	img {
		width: 100%;
		height: auto;
	}
}
.swiper-button-next,
.swiper-button-prev {
	color: var(--white-clr);
}

.page-wrapper {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-flow: column nowrap;
	@media (min-width: 62rem) {
		flex-flow: row nowrap;
	}
}

.page-wrapper .start-wrapper,
.page-wrapper .end-wrapper {
	flex: 1;
	/*flex: 0 0 50%;
	max-width: 50%;*/
	background-color: var(--white-clr);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem var(--padding);
}

.page-wrapper .end-wrapper {
	background-color: var(--primary-clr);
	background-image: url("../images/furlan-logo-bg.png");
	background-position-x: right;
	background-position-y: 75%;
	background-repeat: no-repeat;
	background-blend-mode: color-burn;
}

/* Left side */
.info-wrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 1rem;
	@media (min-width: 62rem) {
		align-items: flex-end;
	}
}

.info-wrap .page-logo {
	/*margin-bottom: 3rem;*/
}

.info-wrap .about-us-wrapper {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	font-size: var(--text-size);
	text-align: left;
	color: var(--black-clr);
}

.info-wrap .about-us-wrapper .about-us {
	font-weight: 400;
}

.info-wrap .about-us-wrapper .about-us a {
	color: var(--primary-clr);
	text-decoration: none;
}

.info-wrap .about-us-wrapper .about-us a:hover {
	color: var(--primary-clr);
	text-decoration: underline;
}

.info-wrap .about-us-wrapper .webpage {
	font-weight: 700;
}

/* Right side */
.content-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;
}

.list-of-services {
	font-weight: 400;
	font-size: var(--text-size);
	text-align: left;
	color: var(--white-clr);
}
.list-of-services li::marker {
	content: url("../images/bullet.svg") "  ";
}
.list-of-services li + li {
	margin-top: 0.625rem;
}
