.home-cover {
	background-color: var(--background-primary-color);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	min-height: 100vh;
	padding: clamp(1em, 5vw, 5em);
	margin-top: -8em;
	gap: 4em;
	align-items: center;
}

.home-cover-title {
	font-family: 'rust', sans-serif;
	text-transform: uppercase;
	line-height: 1em;
	font-size: 4em;
}

.title-first {
	font-size: 0.96em;
}

.title-last {
	font-size: 1.02em;
}

.home-cover-image-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -1em;
}

.home-cover-image {
	width: clamp(260px, 35vw, 600px);
	height: auto;
}

.home-cover-text {
	color: #ffffff;
}

.subtitle {
	margin-bottom: 2em;
	margin-top: 1em;
}

.introduction {
	background-color: var(--background-secondary-color);
	text-align: center;
	color: var(--primary-color);
	padding-top: 5em;
	padding-right: clamp(1em, 4vw, 5em);
	padding-left: clamp(1em, 4vw, 5em);
	min-height: 100vh;
}

.introduction-title {
	font-size: 2.5em;
}

.blue-bird {
	height: 250px;
}

.white-bird-placeholder {
	width: 150px;
	position: relative;
	top: 2em;
}

.home-service {
	background-color: var(--background-primary-color);
	color: #ffffff;
	padding-top: 5em;
	padding-right: clamp(1em, 4vw, 5em);
	padding-left: clamp(1em, 4vw, 5em);
	position: relative;
	min-height: 100vh;

	& h1:not(.home-service-title) {
		padding-top: 2em;
		font-size: 3.5em;
		padding-bottom: 0.5em;
		color: var(--secondary-color);
	}
}

.home-service-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 2em;
	margin-bottom: 2em;
}

.home-service-title {
	margin-bottom: 0.3em;
}

.home-service-image {
	right: 0;
	bottom: 0;
	position: absolute;
	height: clamp(300px, 40vw, 600px);
	z-index: 1;
}

.home-advantage {
	background-color: var(--background-secondary-color);
	color: var(--primary-color);
	padding-top: 5em;
	padding-right: clamp(1em, 4vw, 5em);
	padding-left: clamp(1em, 4vw, 5em);
	min-height: 100vh;

	& h3 {
		line-height: 1.3em;
	}
}

.advantage-br {
	display: none;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding-top: clamp(3em, 6vw, 8em);
	gap: 4em;
	flex-wrap: wrap;
}

.column {
	flex: 1;
	text-align: center !important;
	gap: unset;

	& h3 {
		font-size: 2.6em;
		margin-bottom: 0.5em;
	}
}

.advantage-icon {
	height: 200px;
	width: 200px;
	margin-bottom: 1em;
}

.home-contact {
	background-color: var(--background-primary-color);
	text-align: center;
	color: #ffffff;
	padding: 6em clamp(1em, 4vw, 5em) 8em;
	min-height: 100vh;

	& h1 {
		margin-bottom: 1em;
	}
}

.white-bird {
	margin-top: 8em;
	height: 250px;
}

@media screen and (max-width: 1780px) {
	.home-cover-title {
		font-size: clamp(1.3rem, 1.8vw + 0.8rem, 3rem);
	}

	.home-service h1:not(.home-service-title) {
		font-size: 3em !important;
	}
}

@media screen and (max-width: 1630px) {
	.introduction-title {
		font-size: 2em;
	}

	.advantage-br {
		display: block;
	}
}

@media screen and (max-width: 1425px) {
	.introduction-title {
		font-size: 1.8em;
	}
}

@media screen and (max-width: 1250px) {
	.home-cover-title {
		font-size: clamp(1.3em, 1.8vw + 0.8em, 3em);
	}

	.subtitle-br {
		display: none;
	}

	.home-advantage h3 {
		font-size: 2em;
	}
}

@media screen and (max-width: 1025px) {
	/*PORTABLE/TABLETTE*/
	.home-cover {
		flex-direction: column;
		text-align: center;
		justify-content: center;
		margin-top: 0;
		padding-bottom: unset;
		gap: 25em;
		position: relative;
		min-height: unset;
	}

	.home-cover-title {
		line-height: 1.3em;
	}

	.title-first {
		font-size: 1.5em;
	}

	.title-last {
		font-size: 1.62em;
	}

	.home-cover-image {
		width: clamp(220px, 70vw, 360px);
		position: absolute;
		bottom: 0;
	}

	.subtitle {
		margin-bottom: 3em;
	}

	.introduction {
		min-height: unset;
		padding-top: clamp(4em, 6vw, 8em);
	}

	.home-service {
		min-height: 800px;
		padding-top: clamp(4em, 6vw, 8em);
	}

	.home-service-container {
		flex-direction: column;
	}

	.home-service h1:not(.home-service-title) {
		padding-top: 0.5em;
		font-size: 2.7em !important;
		text-align: center;
		line-height: 1em;
	}

	.home-service-text {
		padding-top: 2.5em;
	}

	.home-advantage {
		min-height: unset;
		padding-bottom: 12em;
		padding-top: clamp(4em, 6vw, 8em);
	}

	.home-contact {
		min-height: unset;
		padding-top: clamp(4em, 6vw, 8em);
	}

	.white-bird {
		margin-top: unset;
	}
}

@media screen and (max-width: 955px) {
	.intro-br {
		display: none;
	}

	.home-contact-cta {
		background-color: var(--highlight-color);
		width: 65%;
		margin: auto;
		border-radius: 50px;
		transition: 0.3s;
		padding: 0.7em 1em;
		line-height: 1.5em;
	}

	.home-contact-cta .redirect-link {
		background-color: transparent;
		padding: unset;
	}
}

@media screen and (max-width: 740px) {
	.home-service {
		min-height: 900px;
	}

	.home-service h1:not(.home-service-title) {
		font-size: 2em !important;
	}

	.home-service-text {
		text-align: center;
		padding-top: 1em;
	}

	.home-service-cta {
		position: relative;
		text-align: center;
		z-index: 2;
	}

	.service-br {
		display: none;
	}

	.advantage-icon {
		height: 150px;
		width: 150px;
		margin-bottom: unset;
	}

	.white-bird {
		height: 200px;
	}
}

@media screen and (max-width: 663px) {
	.home-cover-title {
		line-height: 1.5em;
		font-size: 30px;
	}

	.title-last {
		font-size: 45px;
	}

	.text-secondary {
		font-size: 47px;
	}

	.home-cover-br {
		display: none;
	}

	.introduction-title {
		font-size: 1.5em;
	}

	.home-title-br {
		display: none;
	}
}

@media screen and (max-width: 645px) {
	.home-contact-cta {
		width: 85%;
	}
}

@media screen and (max-width: 510px) {
	.home-cover-title {
		font-size: 22px;
	}

	.title-last {
		font-size: 33px;
	}

	.text-secondary {
		font-size: 35px;
	}
}

@media screen and (max-width: 460px) {
	/*PORTABLE*/
	.home-cover {
		gap: 20em;
	}

	.home-service {
		min-height: 1050px;
	}

	.home-contact-cta {
		width: 100%;
	}
}
