
/*-----------------*/
/*   2025 design   */
/*-----------------*/

html {
	height: 100%
}
.front-page {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.main {
	display: flex;
	flex-direction: column;
	align-items: center;
}
section {
	background: var(--color-bg);
	border-radius: var(--border-radius-container);
	padding: 30px 40px;
	margin: 0;
	box-shadow: var(--default-box-shadow);
}


/*--------------------------------*/
/*             Header             */
/*--------------------------------*/
header .logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
	min-height: 67px;
	width: 400px;
}
header .logo img {
	max-height: 80px;
	max-width: 200px;
}

/*--------------------------------*/
/*             Content            */
/*--------------------------------*/
.content {
	width: 320px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/*--------------------------------*/
/*             Footer             */
/*--------------------------------*/
footer a,
footer span {
	font-size: 13px;
}

/*--------------------------------*/
/*   Multi-page slide component   */
/*--------------------------------*/

#grid-wrapper {
	width: 320px;
	overflow: hidden;
}
#grid-wrapper #grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	position: relative;
	left: 0;
	transition: left 0.3s ease;
}
#grid-wrapper .step {
	width: 320px;
	padding: 1px;
	transition: visibility 0.3s ease;
}
#grid-wrapper #grid.grid-step2 {
	left: -320px;
}
#grid-wrapper #grid.grid-step3 {
	left: -640px;
}
#grid-wrapper #grid.grid-step4 {
	left: -960px;
}

#grid-wrapper #grid:not(.grid-step2) #step2,
#grid-wrapper #grid:not(.grid-step3) #step3,
#grid-wrapper #grid:not(.grid-step4) #step4 {
	visibility: hidden;
}

#grid-wrapper #grid.grid-step2 #step1 {
	visibility: hidden;
}

#grid-wrapper #grid.grid-step3 #step1,
#grid-wrapper #grid.grid-step3 #step2 {
	visibility: hidden;
}

#grid-wrapper #grid.grid-step4 #step1,
#grid-wrapper #grid.grid-step4 #step2,
#grid-wrapper #grid.grid-step4 #step3 {
	visibility: hidden;
}


/*--------------------------------*/
/*             Mobile             */
/*--------------------------------*/
@media screen and (max-width: 440px) and (orientation: portrait) {
	section {
		padding: 30px 20px;
	}
}

@media screen and (max-width: 440px) and (orientation: portrait) {
	section {
		padding: 20px 20px;
		width: 280px;
	}
	.content {
		width: 280px;
	}
	#grid-wrapper {
		width: 300px;
		overflow: hidden;
	}
	#grid-wrapper .step {
		width: 300px;
		padding: 1px;
	}
	#grid-wrapper #grid.grid-step2 {
		left: -300px;
	}
	#grid-wrapper #grid.grid-step3 {
		left: -600px;
	}
	#grid-wrapper #grid.grid-step4 {
		left: -900px;
	}
	.g-recaptcha {
		transform: scale(0.9);
	}
	.footer-links {
		width: 300px;
	}
}





