:root {
	--wfcMediumGray: #797f95;
	--wfcBlack100: #000000;

	--wfcLighterBlue: #d6fcff;
	--wfcLightBlue: #3398B0;
	--wfcMediumBlue: #001c55;
	--wfcDarkBlue: #00072d;
	--wfcDeepPurple: #3726a5;
	--wfcTeal: #3398B0;
	--wfcDarkTeal: #085C71;

	--wfcMixLightBlueWhite: rgb(239, 253, 254);
	--wfcMixWhiteMediumGray: #d1d4e0;
	--wfcMixLightBlueLightGray: #aed2ed;
	--wfcMixLightBlueMediumGray: #03a1c8;
	--wfcMixDeepPurpleMediumGray: #58539d;
	--wfcMixDarkBlueMediumGray: #333957;
	--wfcMixDarkBlueDarkGray: #2b3151;

	--wfcWhite: #ffffff;
	--wfcLightYellow: rgb(255, 247, 229);
	--wfcYellow: #ffbe0b;
	--wfcLightOrange: #ffd7c8;
	--wfcOrange: #F15427;
	--wfcRed: rgb(255, 233, 225);
}




/************************************GLOBAL*************************************/
html,
body {
	color: var(--wfcBlack100) !important;
	background: var(--wfcWhite) !important;
}

body {
	margin-top: 95px;
}

a {
	color: var(--wfcOrange);
}

h1 {
	font-size: 70px;
	font-weight: 700;
}

h2 {
	font-size: 48px;
	font-weight: 300;
}

h3 {
	font-size: 36px;
	font-weight: 300;
}

h4 {
	font-size: 28px;
	font-weight: 300;
}

h5 {
	font-size: 22px;
	font-weight: 300;
}

.description {
	font-size: 20px;
	font-weight: 300;

	.text-small {
		font-size: 16px;
	}
}

.sections {
	display: flex;
	flex: 1;
	align-items: stretch;
	flex-wrap: wrap;
	padding-top: 0;
	flex-direction: column;
	row-gap: 6rem;

	.section-container {
		display: flex;
		flex: none;
		width: auto;
		flex-direction: column;
		box-sizing: border-box;

		.numbering {
			margin-left: 2rem;
			font-size: 64px;
			font-weight: 900;
			letter-spacing: 0.1px;
			text-align: left;
			color: var(--wfcMixDeepPurpleMediumGray);
		}

		.section {
			padding: 0 2rem 0 2rem;
			text-align: left;
			border: none;
			border-radius: 0.25rem;
			margin-top: 0;

			h3 {
				font-weight: bold;
			}

			h5 {
				font-weight: bold;
			}

			.section-header app-icon {
				position: absolute;
				left: -65px;
				top: 50%;
				transform: translateY(-50%);
				width: 50px;
				height: 50px;
				color: var(--wfcWhite);
				background-color: var(--wfcDeepPurple);
				text-align: center;
			}
		}

		.section-header {
			position: relative;
			display: inline-block;
			background-color: transparent;
			margin: 0;
			padding: 0;
			border: none;

			h5 {
				font-weight: bold;
				color: var(--wfcDeepPurple);
			}
		}

		.section-content {
			display: flex;
			text-align: start;
			flex-direction: column;

			.content {
				flex-direction: column;
				grid-gap: 2rem;

				&.flex-dir-row {
					flex-direction: row;
				}

				&.flex-dir-row-reverse {
					flex-direction: row-reverse;
				}

				&.flex-dir-col {
					flex-direction: column;
				}

				&.flex-dir-col-reverse {
					flex-direction: column-reverse;
				}
			}

			ul,
			.content-image {
				flex: 1;
			}

			.content-image {
				margin: auto 0;
				max-height: 500px;
			}
		}

		.section-content,
		.section {
			ul {
				padding: 0;
				margin: 0;
				list-style: none;

				li {
					position: relative;
					padding-left: 1.5rem;
					margin-top: 2rem;
				}
			}

			ul li::before {
				margin-right: 0.5rem;
				color: var(--wfcMixLightBlueMediumGray);
				position: absolute;
				left: 0;
			}

			/* První úroveň: check */
			ul > li::before {
				content: "\2713\0020";
			}

			/* Druhá úroveň: dot */
			ul ul > li::before {
				content: "\25CF";
			}

			/* Třetí úroveň: circle */
			ul ul ul > li::before {
				content: "\25CB";
			}

			/* Čtvrtá úroveň: square */
			ul ul ul ul > li::before {
				content: "\25A0";
			}
		}
	}
}
/**********************************GLOBAL END***********************************/




/***********************************GALLERY***********************************/
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--wfcMixDarkBlueDarkGray);
}

.border-gray .owl-stage-outer {
	border-color: var(--wfcMixDarkBlueMediumGray);
}

.border-light-blue .owl-stage-outer {
	border-color: var(--wfcMixLightBlueLightGray);
}

.owl-dot {
	span {
		background-color: var(--wfcMixWhiteMediumGray) !important;
		border-color: var(--wfcMixDarkBlueMediumGray) !important;
	}
}

.owl-dot.active span {
	background-color: var(--wfcYellow) !important;
}

.owl-dot:hover span {
	background-color: var(--wfcOrange) !important;
}
/***********************************GALLERY END***********************************/



/***********************************BUTTONS***********************************/
.btn-primary {
	color: var(--wfcWhite);
	background-color: var(--wfcOrange);
	border-color: transparent;
	border-radius: 0.25rem;
	padding: 0.75rem 3rem;
	font-weight: bold;
}

.btn-primary:hover {
	background-color: var(--wfcLightOrange);
	border-color: var(--wfcLightOrange);
	color: var(--wfcWhite);
}

.btn-link {
	color: var(--wfcWhite);
	background-color: var(--wfcOrange);
	border-color: transparent;
	border-radius: 0.25rem;
	padding: 0.75rem 3rem;
	font-weight: bold;
}

.btn-link:hover {
	background-color: var(--wfcLightOrange);
	border-color: var(--wfcLightOrange);
	color: var(--wfcWhite);
}
/***********************************BUTTONS END***********************************/




/***********************************NAV BAR***********************************/
.nav-bar {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transition: background-color 0.5s ease-in;
	z-index: 9999;
	color: var(--wfcWhite);
	border-bottom: 1px solid var(--wfcLightBlue);

	.nav-bar-btn {
		background-color: transparent;
		border: none;
		color: var(--wfcBlack100);

		.icon-container {
			display: inline-block;
			min-width: 20px;
			width: auto;
			color: var(--wfcBlack100);
		}
	}

	.nav-bar-btn:hover {
		color: var(--wfcLightBlue);
	}

	.nav-bar-btn:hover > .icon-container app-icon {
		color: var(--wfcLightBlue);
	}

	.nav-bar-btn.is-active {
		color: var(--wfcLightBlue);
	}

	.nav-bar-btn.is-active > .icon-container app-icon {
		color: var(--wfcLightBlue);
	}

	.nav-bar-sub-btn {
		background-color: transparent;
		border: none;
		color: var(--wfcMediumBlue);
		display: flex;
		flex-direction: column;
		align-items: center;

		.icon-container {
			display: inline-block;
			min-width: 20px;
			width: auto;
		}
	}

	.nav-bar-sub-btn:hover {
		color: var(--wfcMediumBlue);
	}

	.nav-bar-sub-btn > .icon-container app-icon {
		color: var(--wfcOrange);
		font-size: 100px;
	}

	.nav-logo {
		text-align: start;
	}

	.navbar-collapse {
		transition: none;
	}

	.dropdown > .dropdown-content {
		background-color: var(--wfcWhite);
	}

	.language-dropdown > .btn {
		color: var(--wfcLightBlue);
	}

	.language-dropdown .language-options {
		background-color: var(--wfcWhite);
	}

	.nav-buttons {
		justify-content: flex-end;

		ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: flex-end;
			gap: 1.5rem;
			margin: 0;
			height: 100%;

			li:has(.icon-container) {
				position: unset;
			}

			li {
				margin: auto 0;
				list-style: none;

				.btn {
					padding: 5px 15px;
				}

				&.dropdown > .dropdown-content {
					border-radius: 0.25rem;
					display: none;
					position: absolute;
					padding: 1rem;
					width: max-content;
					max-width: 100vw;
					height: auto;
					max-height: 400px;
					box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
					z-index: 1;
					text-align: left;
					top: 100%;
					left: 50%;
					transform: translate(-50%, 0);
					overflow-y: auto;

					button {
						padding: 1rem 2rem;

						.icon-container {
							margin-right: 0.25rem;
						}
					}
				}
			}
		}
	}

	.language-dropdown {
		position: relative;
		margin: auto 0 auto 0.5rem;

		> .btn {
			padding: 5px 15px;
		}

		.language-options {
			border-radius: 0.25rem;
			width: max-content;
			box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
			z-index: 1;
			text-align: left;
			top: 100%;
			position: absolute;
			left: 50%;
			transform: translateX(-50%);

			.btn {
				padding: 0.25rem 1rem;
			}
		}
	}
}

.nav-bar.nav-bar-background {
	background-color: var(--wfcWhite);
	color: var(--wfcBlack100);
}
/***********************************NAV BAR END***********************************/




/***********************************FOOTER***********************************/
.footer {
	color: var(--wfcWhite);
	background-color: var(--wfcTeal);

	a {
		color: var(--wfcMediumGray) !important;
	}

	a:hover {
		color: var(--wfcWhite);
	}
}
/***********************************FOOTER END***********************************/




/***********************************LOADING***********************************/
.loading-spinner {
	color: var(--wfcMediumBlue);
}
/***********************************LOADING END***********************************/




/***********************************SECTION STYLES***********************************/
/*HEADER*/
#header {
	padding-bottom: 160px;
	padding-top: 200px;
	background-repeat: no-repeat;

	.header-image-container {
		position: relative;

		.header-image {
			position: absolute;
			left: 0;
			right: 0;
		}
	}
}
/*HEADER END*/

/*ABOUT*/
#about {
	background-color: var(--wfcMixLightBlueWhite);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: bottom -5rem center;

	.title {
		color: var(--wfcLightBlue);
	}

	.sections {
		.section-container {
			h5 {
				text-align: start;
			}

			.section {
				height: 100%;
			}
		}
	}
}

#about > div {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom center;
}
/*ABOUT END*/

/*BENEFITS*/
#benefits {
	.title {
		color: var(--wfcLightBlue);
	}

	.sections {
		row-gap: 3rem;

		.section-container {
			min-width: 50%;
		}
	}
}
/*BENEFITS END*/

/*FUNCTIONS*/
#functions {
	padding-bottom: 100px;
	position: relative;

	.title {
		color: var(--wfcOrange);
	}

	.description {
	}
	.subtitle {
	}

	.sections {
		flex-direction: column;
		row-gap: 6rem;

		.section-container {
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			column-gap: 2rem;

			.header-image {
				display: flex;
				flex: 1;
				width: auto;

				app-image {
					display: flex;
				}
			}

			.section {
				flex: 1;
				display: flex;
				flex-direction: column;
				text-align: start;
				margin-top: 0;
				background-color: transparent !important;

				.title{
					color: var(--wfcLightBlue);

					app-icon {
						margin-right: 1.5rem;
					}
				}

				.btn-container{
					app-icon{
						margin-left: 0.5rem;
					}
				}

				h3,
				h5,
				.section-description,
				button {
					text-align: start;
				}

				button {
					margin-top: auto;
				}
			}
		}
	}
}
/*FUNCTIONS END*/

/*PRODUCTS*/
#products {
	padding-top: 100px;

	.title {
		color: var(--wfcLightBlue);
	}
	.sections {
		flex-direction: row;
		column-gap: 2rem;
		padding-top: 0;

		.section-container {
			display: flex;
			column-gap: 2rem;
			text-align: start;

			h4 {
				font-weight: bold;

				app-icon {
					position: unset;
					margin: 0 1rem 0 0 !important;
				}
			}

			h4,
			.section-description,
			button {
				text-align: start;
			}

			button {
				width: fit-content;
			}

			.section {
				height: 100%;
			}
		}
	}
}
/*PRODUCTS END*/
/***********************************SECTION STYLES END***********************************/




/***********************************MEDIA STYLE***********************************/
/*GLOBAL*/
@media (max-width: 1200px) {
	h1 {
		font-size: 54px;
	}

	h2 {
		font-size: 40px;
	}

	h3 {
		font-size: 28px;
	}

	h4 {
		font-size: 26px;
	}

	h5 {
		font-size: 20px;
	}

	.description {
		font-size: 18px;
	}
}

@media (min-width: 900px) {
	.sections .section-container.even-section {
		.header-image {
			order: 2;
			padding: 0 1rem !important;
		}

		.section {
			order: 1;
			align-items: end;
			text-align: end !important;

			h3,
			h5,
			.section-description,
			button {
				text-align: end !important;
				margin-top: 0;
			}
		}
	}
}

@media (max-width: 900px) {
	.section-content .content {
		&.flex-dir-row,
		&.flex-dir-row-reverse {
			flex-direction: column !important;
		}
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}

	.description {
		font-size: 16px;
	}

	.sections {
		flex-direction: column;
	}

	.btn-container .btn {
		display: block;
		margin: 1rem auto;
	}
}
/*GLOBAL END*/

/*NAV BAR*/
@media (max-width: 1024px) {
	.nav-bar > div {
		width: 100%;
	}

	.nav-bar-sub-btn > .icon-container app-icon {
		font-size: 16px !important;
	}
		
	.nav-bar {
		.navbar-toggler:focus {
			color: var(--wfcOrange);
		}

		.nav-name {
			margin-top: 1rem;
		}

		.nav-buttons {
			margin-top: 1rem;
			justify-content: center;
		}
		
		.navbar-toggler {
			color: var(--wfcTeal);
			border: none;

			&:focus {
				box-shadow: none;
			}
		}

		.nav-buttons.navbar-collapse.show {
			position: absolute;
			top: 4rem;
			left: 0;
			width: 100%;
			background-color: var(--wfcWhite);
			border-top-color: var(--wfcWhite);
			border-bottom-color: var(--wfcWhite);

			ul {
				padding: 2rem;
				flex-direction: column;
			}

			&::before {
				content: "";
				position: absolute;
				top: 0;
				right: 6.3rem;
				transform: translateY(-100%);
				border-width: 12px;
				border-style: solid;
			}
		}

		.nav-buttons ul li.dropdown .dropdown-content.active {
			display: contents !important;
		}

		.nav-buttons ul li.dropdown .dropdown-content {
			display: none !important;

			.btn {
				padding: 0.5rem 1rem !important;
				display: flex;
				flex-direction: row;
				margin-left: 30px;
			}
		}

		.nav-buttons.navbar-collapse.show::before {
			border-color: transparent transparent #f0f0f0 transparent;
		}
	}
}

@media (min-width: 767px) {
	.nav-buttons ul li.dropdown::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		border-radius: 5px;
		transform: scaleX(0);
		transition: all 0.5s ease;
		bottom: 0;
		left: 0;
	}

	.nav-buttons ul li.dropdown:hover {
		color: var(--wfcYellow);

		.dropdown-content {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			grid-auto-rows: 1fr;
			align-items: center;
			row-gap: 80px;
			max-height: max-content;
			place-items: center;
			top: 60px;

			.btn {
				position: relative;
			}

			.btn::before {
				content: "";
				position: absolute;
				width: 100%;
				height: 2px;
				border-radius: 5px;
				transform: scaleX(0);
				transition: all 0.5s ease;
				bottom: 0;
				left: 0;
			}

			.btn:hover::before {
				transform: scaleX(0.85);	
			}
		}
	}

	.nav-buttons ul li.dropdown:hover::before {
		transform: scaleX(0.85);
	}

	.nav-buttons ul li.dropdown:hover:hover .dropdown-content .btn::before {
		background: var(--wfcDarkBlue);
	}
}

@media (max-width: 767px) {
	.nav-buttons ul li.dropdown {
		position: unset !important;

		.dropdown-content {
			.btn {
				display: flex;
				text-align: left;

				.icon-container {
					text-align: center;
				}
			}
		}
	}

	.nav-buttons ul li.dropdown > .btn {
		padding: 0 15px !important;
	}

	.nav-buttons ul li.dropdown .dropdown-content.active {
		display: inline-flex !important;
		flex-wrap: wrap;
		align-items: flex-start;
		flex-direction: column;
		max-height: 70vh !important;
		width: 100vw !important;
	}

	.nav-bar .nav-buttons ul {
		padding: 0.5rem !important;
		justify-content: space-evenly;
		gap: 0.5rem;
	}
}
/*NAV BAR END*/

/*SECTION STYLES*/
/*FUNCTIONS*/
@media (max-width: 900px) {
	#functions {
		.sections {
			grid-gap: 0;

			.section-container {
				flex-direction: column;

				.header-image {
					order: 2 !important;
				}

				.section {
					padding: 0 2rem;
					order: 1 !important;
				}
			}
		}
	}
}

@media (max-width: 600px) {
	#functions {
		padding-top: 20px;
		padding-bottom: 20px;

		.sections {
			.section-container {
				.header-image {
					padding-top: 2rem !important;
				}

				.section {
					h3,
					h5,
					.section-description,
					button {
						margin: 1rem 0 1rem 0;
					}
				}
			}
		}
	}
}
/*FUNCTIONS END*/

/*PRODUCTS*/
@media (max-width: 900px) {
	#products .sections {
		flex-direction: column;
		grid-gap: 0;
	}
}

@media (max-width: 600px) {
	#products {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
/*PRODUCTS END*/

/*BENEFITS*/
@media (max-width: 900px) {
	#benefits {
		.sections {
			flex-direction: column;
		}
	}
}

@media (max-width: 600px) {
	#benefits {
		padding-top: 20px;
		padding-bottom: 20px;

		.section-container {
			margin-top: 1rem !important;
		}
	}
}
/*BENEFITS END*/

/*ABOUT*/
@media (max-width: 1200px) {
	#about {
		padding-top: 180px;
	}
}

@media (max-width: 900px) {
	#about {
		padding-top: 80px;

		.sections {
			grid-gap: 0;
			flex-direction: column;

			.section-container {
				margin-left: 2rem;
			}
		}
	}
}

@media (max-width: 600px) {
	#about {
		padding-top: 20px;
	}
}
/*ABOUT END*/
/***********************************MEDIA STYLE END***********************************/




/***********************************CUSTOM STYLES***********************************/
br, p:empty, b:empty, span:empty:not(.bi-list), p:has(span:empty) {
	display: none;
}

p {
	margin: 0;
}

#page-content {
	.sections app-section .section-container,
	app-functions #functions > div,
	app-products #products > div {
		max-width: 1400px;
		margin: auto;
	}
}

#header {
	background-repeat: repeat-x;
	background-position: center;
	text-align: left;
	padding-bottom: 160px;

	#header-container {
		width: max-content;
		margin: auto;
	}

	#header-title {
		h1{
			font-size: 60px !important;
			line-height: normal;
		}
	}

	#header-subtitle {
		font-size: 45px;
		line-height: normal;
	}

	#header-description {
		font-size: 22px;
	}

	#header-subtitle, #header-description {
		color: var(--wfcTeal);
		line-height: normal;
	}

	#header-description, .btn-container{
		margin-top: 60px;
	}
}

@media (max-width: 900px) {
	#header {
		padding-top: 0px !important;
		padding-bottom: 10px;
		text-align: center;

		#header-container {
			padding: 0 10px 0 10px;
			margin-top: 10px !important;
			width: 100%;
		}

		#header-title h1{
			font-size: 40px !important;
		}

		#header-subtitle {
			font-size: 35px;
		}

		#header-description {
			font-size: 18px !important;
			margin-top: 40px;
		}

		.btn-container {
			margin-top: 40px;
		}

		#header-subtitle, #header-description, #header-title {
			margin-left: auto;
			margin-right: auto;
		}
	}
}





.page-home #header {
	#header-title {
		max-width: 815px;
	}

	#header-description {
		max-width: 500px;
	}
}

.page-home #page-content {
	overflow: hidden;

	> .sections:nth-child(1) {
		margin-top: 100px;

		.section-container .section {		
			.section-content .content {
				align-items: center;
				gap: 80px;
		
				.description {
					color: var(--wfcTeal);
		
					h2 {
						margin-bottom: 40px;
					}
		
					p:first-child {
						font-weight: bold;
						margin-bottom: 40px;
					}
				}
			}
			
			.section-content:last-child .content-container {
				margin-top: 40px;
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
				grid-auto-rows: 1fr;
				gap: 40px;
		
				div:first-child {
					grid-column: 2;
				}
		
				> div:nth-child(1), > div:nth-child(5) {
					background-color: var(--wfcMixLightBlueWhite);
				}
		
				> div:nth-child(2), > div:nth-child(3) {
					background-color: var(--wfcLightYellow);
				}
		
				> div:nth-child(4) {
					background-color: var(--wfcRed);
				}
		
				div {
					border-radius: 10px;
					padding: 10px;
					display: flex;
					flex-direction: row-reverse !important;
		
					p{
						font-size: 16px;
						align-self: baseline;
					}
				}
		
				.content {
					gap: 20px;
		
					.content-image {
						display: contents;
		
						app-image {
							align-self: flex-start;
						}
					}
				}
			}
		}
		
		.page-home #products {
			padding-top: 0;
		
			.title {
				max-width: unset !important;
				margin-bottom: 60px;
			}
		
			.section-container {
				margin: 0;
				padding-top: 0;
				padding-bottom: 0;
		
				.section {
					padding: 40px;
		
					.section-header h4 {
						margin: 0;
						line-height: normal;
					}
		
					.section-content .content-container {
						ul {
							padding-left: 0;
							margin-bottom: 0;
						}
		
						.content-image img {
							max-width: 300px;
						}
					}	
				}
			}
		}	
	}

	app-section-container:nth-of-type(1) #functions {
		background-color: var(--wfcMixLightBlueWhite);
		margin-top: 100px;

		.sections {
			row-gap: 210px;
		}
	
		.subtitle {
			margin-bottom: 100px;
			margin-top: 0;
		}
	
		.section .subtitle {
			margin-bottom: 0;
		}
	
		.section-container {
			align-items:  center;
			
			.section {
				.title {
					margin: 0;
				}
		
				gap: 30px;
			}
		}
	}

	app-section-container:nth-of-type(2) #products {
		padding: 0;

		.title {
			margin-bottom: 60px;
			padding: 0 2rem;
		}

		.sections .section-container { 
			width: 100%;

			.section { 
				padding: 60px;

				.section-header h4 {
					font-size: 26px;
				}
			
				.content-container {
					gap: 60px;
				}
			}
		}
	}

	app-section-container:nth-of-type(3) #functions {
		background-color: var(--wfcRed);
		margin-top: 100px;

		.title {
			margin-bottom: 60px;
			text-align: left;
			max-width: 700px;
			padding: 0 2rem;
		}
	}
}

.page-home #functions {
	padding-top: 100px;
	padding-bottom: 100px;
}

.page-home #products .section-container:nth-child(even) .section{
	background-color: var(--wfcLightOrange);

	.section-header h4 {
		color: var(--wfcOrange);
	}
}

.page-home #products .section-container:nth-child(odd) .section{
	background-color: var(--wfcLighterBlue);

	.section-header h4 {
		color: var(--wfcDarkTeal);
	}
}

.page-home #products .section-container .section .content-container,
.page-case-studies #products .section-container .section .content-container{
	display: flex;
	gap: 52px;
}

.page-home #products .section-container .section .content-container div,
.page-case-studies #products .section-container .section .content-container div{
	width: 100%;
}

@media (max-width: 900px) {
	.page-home #page-content {
		> .sections:nth-child(1) {
			margin-top: 50px;

			.section-container .section .section-content .content .description {
				text-align: center;
			}
		}

		app-section-container:nth-of-type(1) #functions {
			margin-top: 50px;

			.sections {
				row-gap: 105px;
			}
		}

		app-section-container:nth-of-type(2) #products .sections .section-container .section { 
			.section-header {
				width: 100%;
				
				h4 {
					text-align: center;
				}
			}

			.content-container {
				gap: 0;	

				.content {
					gap: 0;
				}
			}
		}

		app-section-container:nth-of-type(3) #functions {
			margin-top: 50px;
			padding-top: 50px;
			padding-bottom: 50px;
	
			.title {
				text-align: center !important;
			}

			.sections .section-container:nth-child(1) {
				margin-bottom: 50px;
			}
		}
		

		#products .section-container .section .content-container {
			flex-wrap: wrap;
		}

		.sections:nth-child(1){ 
			margin-top: 50px;
			
			.section-container .section {
				.section-content:first-child .content img {
					max-width: 100%;
				}
		
				.section-content:last-child .content-container div:first-child {
					grid-column: unset !important;
				}
			}
		}
	}

	.page-home #header {
		#header-container {
			margin-top: 0px;
		}
	}

	.page-home .sections:first-child .section-container .section {
		.section-content .content .description {
			p:first-child {
				font-size: 34px;
			}
		}
	}

	.page-home app-section-container:nth-of-type(1) #functions {
		padding-top: 40px;
		margin-bottom: 60px;

		.title, .subtitle {
			padding: 0 10px 0 10px;
		}

		.subtitle {
			margin-bottom: 10px;
		}

		.sections .section-container .section { 
			.title {
				display: flex;
			}

			.subtitle, .title {
				padding: 0;
			}
		}
	}

	.page-home #products .section-container {
		padding: 0;
	}
}




.page-404 #header #header-container{
	display: flex;
    flex-direction: column;
	text-align: center;

	#header-title {
		order: 2;
		color: var(--wfcOrange);
		margin-top: 80px;
	}

	#header-description {
		order: 3;
		font-size: 24px;
	}

	.header-image {
		order: 1;

		img {
			max-width: 200px;
		}
	}
}




.page-contact #header {
	#header-container {
		max-width: 700px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
	}

	#header-description {
		max-width: 830px;
		line-height: normal;
		font-size: 24px;
	}
}

.page-contact .sections .section-container .section .section-content {
	align-items: center;

	.content {
		align-items: center;
		margin-top: 100px;
		margin-bottom: 100px;
		gap: 80px;
		max-width: 700px;

		.description p:first-child {
			color: var(--wfcOrange);
			line-height: normal;
			font-size: 44px;
			margin-bottom: 20px;
			font-weight: bold;
		}

		.description p:not(:first-child) {
			font-size: 20px;
			color: var(--wfcTeal);
		}

		img {
			max-width: 100px;
		}
	}
}

@media (max-width: 900px) {
	.page-contact .sections .section-container .section .section-content {
		text-align: center;
		margin-top: 0;

		.content {
			margin-top: 50px;
			margin-bottom: 50px;
			gap: 40px;

			.description p:first-child {
				font-size: 24px;
			}
		}
	}
}





.page-case-studies #header {
	#header-container {
		max-width: 700px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
	}

	#header-description {
		max-width: 830px;
		line-height: normal;
		font-size: 24px;
	}
}

.page-case-studies {
	.sections {
		margin-top: 100px;
		margin-bottom: 100px;
	}

	.sections:first-child .section-container .section {
		.section-content {
			.content {
				align-items: center;
				gap: 100px;

				div:last-child {
					display: contents;
				}
			}	

			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}

			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}

			.description p {
				margin-top: 20px;
				line-height: normal;
			}

			app-image, app-image img {
				max-width: 260px !important;
				width: 100%;
				height: auto;
			}
		}
	}

	.sections:nth-child(2) .section-container .section,
	.sections:nth-child(3) .section-container .section {
		.title {
			font-size: 24px;
			color: var(--wfcDarkTeal);
		}

		.content-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			gap: 60px;

			div{
				width: 100%;
				max-width: 405px;

				ul {
					margin: 0;
					padding: 0;
				}

				img {
					max-width: 300px;
				}
			}
		}		
	}

	.sections:nth-child(3) .section-container .section .title {
		text-align: right;
	}
	
	.sections:nth-child(4) .section-container .section {
		.content {
			gap: 0;
			background-color: var(--wfcLightOrange);
			border-radius: 10px;
			padding: 20px;
	
			h4 {
				font-size: 24px;
				line-height: normal;
			}
	
			ul {
				margin: 0;
				padding: 0;

				li {
					margin-top: 1rem;
				}
			}
		}
	}
}

@media (max-width: 900px) {
	.page-case-studies .sections .section-container .section {
		.title h2{
			font-size: 24px;
		}

		.section-content {
			margin-top: 0;

			.description {
				text-align: center;

				p:nth-child(1) {
					font-size: 30px !important;
				}
			}
		}
	}

	.page-case-studies {
		.sections {
			margin-top: 50px;
			margin-bottom: 50px;
		}

		.sections:first-child .section-container .section .section-content .content {
			gap: 50px;
		}	

		.sections:nth-child(2) .section-container .section,
		.sections:nth-child(3) .section-container .section {
			.content-container {
				justify-content: center;
				gap: 10px;

				div {
					max-width: max-content;
				}
			}
		}

		.sections:nth-child(4), .sections:nth-child(4) .section,
		.sections:nth-child(3), .sections:nth-child(3) .section,
		.sections:nth-child(2), .sections:nth-child(2) .section {
			padding-top: 0;
		}
	}
}




.page-connectivity #header {
	#header-container {
		margin-top: 30px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		max-width: 700px;
		line-height: normal;
	}

	#header-description {
		max-width: 700px;
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;

		p:nth-child(2) {
			margin-bottom: 20px;
		}
	}

	.btn-container {
		margin-top: 40px;
	}
}

.page-connectivity {
	.sections .section-container .section {
		margin-top: 100px;
		margin-bottom: 100px;

		.section-content {
			.content {
				align-items: center;
				gap: 100px;

				div:last-child {
					display: contents;
				}
			}	

			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}

			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}

			.description p {
				margin-top: 20px;
				line-height: normal;
			}

			app-image, app-image img {
				max-width: 80px !important;
				width: 100%;
				height: auto;
				max-height: 130px !important;
			}
		}
	}
}

@media (max-width: 900px) {
	.page-connectivity .sections .section-container .section {
		padding-top: 0;
		margin-top: 50px;
		margin-bottom: 50px;

		.section-content { 
			padding-top: 0;

			.content {
				gap: 50px;
			}

			.description {
				text-align: center;

				p:nth-child(1) {
					font-size: 30px;
				}
			}
		}
	}
}




.page-capacity-planning #header {
	#header-container {
		margin-top: 30px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		line-height: normal;
	}

	#header-description {
		max-width: 600px;
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;

		p:nth-child(2) {
			margin-bottom: 20px;
		}
	}

	.btn-container {
		margin-top: 170px;
	}
}

.page-capacity-planning {
	.sections .section-container .section {
		margin-top: 100px;
		margin-bottom: 100px;

		.section-content:first-child {
			.content {
				align-items: center;
				gap: 100px;

				div:last-child {
					display: contents;
				}
			}	

			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}

			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}

			.description p {
				margin-top: 20px;
				line-height: normal;
			}

			app-image, app-image img {
				max-width: 130px;
				width: 100%;
				height: auto;
				max-height: 130px;
			}
		}

		.section-content:last-child {
			.content-container {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				margin-top: 100px;
				gap: 60px;

				div{
					width: 100%;
					max-width: 405px;

					ul {
						margin: 0;
						padding: 0;
					}

					img {
						max-width: 300px;
					}
				}
			}	
		}
	}
}

@media (max-width: 900px) {
	.page-capacity-planning #header .btn-container {
		margin-top: 40px;
	}

	.page-capacity-planning .sections .section-container .section {
		margin-top: 50px;
		margin-bottom: 50px;
		padding-top: 0;

		.section-content:first-child .content {
			gap: 50px;
		}

		.section-content:last-child .content-container {
			justify-content: center;
			margin-top: 35px;
			gap: 10px;
		}

		.section-content .description {
			text-align: center;

			p:nth-child(1) {
				font-size: 30px;
			}
		}
	}

	.page-capacity-planning #header {
		padding-bottom: 30px;
	}
}




.page-invoice #header {
	padding-bottom: 90px;
	padding-top: 140px;

	#header-container {
		margin-top: 30px;
		max-width: 650px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		line-height: normal;
	}

	#header-description {
		max-width: 860px;
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;

		p:nth-child(2) {
			margin-bottom: 20px;
		}
	}

	.btn-container {
		margin-top: 60px;
	}
}

.page-invoice {
	.sections .section-container .section {
		.section-content:first-child {
			margin-bottom: 100px;
			margin-top: 100px;

			.content {
				align-items: center;
				gap: 100px;

				div:last-child {
					display: contents;
				}
			}	

			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}

			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}

			.description p {
				margin-top: 20px;
				line-height: normal;
			}

			app-image, app-image img {
				max-width: 130px;
				width: 100%;
				height: auto;
				max-height: 130px;
			}
		}

		.section-content:last-child {
			margin-bottom: 100px;

			.content-container {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				gap: 60px;

				div{
					width: 100%;
					max-width: 405px;

					ul {
						margin: 0;
						padding: 0;
					}

					img {
						max-width: 300px;
					}
				}
			}	
		}

		.subtitle {
			color: var(--wfcDarkTeal);
		}
	}
}

@media (max-width: 900px) {
	.page-invoice #header {
		.btn-container {
			margin-top: 40px;
		}
	}

	.page-invoice .sections .section-container .section {
		padding-top: 0px;

		.section-content:first-child {
			margin-top: 50px;
			margin-bottom: 50px;

			.content {
				gap: 50px;
			}
		}

		.subtitle {
			text-align: center;
		}

		.section-content:last-child .content-container {
			justify-content: center;
			gap: 10px;
		}

		.section-content .description {
			text-align: center;

			p:nth-child(1) {
				font-size: 30px !important;
			}
		}
	}

	.page-invoice #header {
		padding-bottom: 30px;
	}
}




.page-productivity #header {
	padding-bottom: 90px;
	padding-top: 140px;

	#header-container {
		margin-top: 30px;
		max-width: 700px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		line-height: normal;
	}

	#header-description {
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;

		p:nth-child(2) {
			margin-top: 20px;
		}
	}

	.btn-container {
		margin-top: 100px;
	}
}

.page-productivity {
	#page-content {
		> .sections:nth-child(1) {
			margin-top: 100px;
		}
	
		> .sections:nth-child(2) {
			margin-top: 100px;
			margin-bottom: 60px;
		}
	
		> .sections:nth-child(3) {
			margin-bottom: 100px;
		}
	}

	.sections .section-container .section {
		.title {
			font-size: 24px !important;
		}

		.section-content:first-child {
			.content {
				align-items: center;
				gap: 100px;

				div:last-child {
					display: contents;
				}
			}	

			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}

			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}

			.description p {
				margin-top: 20px;
				line-height: normal;
			}

			app-image, app-image img {
				max-width: 100px;
				width: 100%;
				height: auto;
			}
		}

		.section-content:not(:first-child) {
			.content-container {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				gap: 60px;

				div{
					width: 100%;
					max-width: 405px;

					ul {
						margin: 0;
						padding: 0;
					}

					img {
						max-width: 300px;
					}
				}
			}	
		}

		.title {
			color: var(--wfcDarkTeal);
			font-size: 36px;
		}
	}
}

@media (max-width: 900px) {
	.page-productivity #page-content {
		> .sections:nth-child(1) {
			margin-top: 50px;

			.section-content .content {
				gap: 50px;
			}
		}
	
		> .sections:nth-child(2) {
			margin-top: 50px;
			margin-bottom: 30px;
		}
	
		> .sections:nth-child(3) {
			margin-bottom: 50px;
		}
	}

	.page-productivity #header {
		.btn-container {
			margin-top: 40px;
		}
	}

	.page-productivity .sections {
		padding-top: 0;
	}

	.page-productivity .sections .section-container .section {
		.title {
			text-align: center;
		}

		.section-content:not(:first-child) .content-container {
			justify-content: center;
			gap: 10px;
		}

		.section-content .description {
			text-align: center;

			p:nth-child(1) {
				font-size: 30px !important;
			}
		}
	}

	.page-productivity .sections:nth-child(2) .section-container .section {
		padding-bottom: 0;
	}
}




.page-digitalization #header {
	padding-top: 110px;
	padding-bottom: 0;

	#header-container {
		max-width: 700px;
		margin-top: 0;
		padding-bottom: 50px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		line-height: normal;
		max-width: 980px;
	}

	#header-description {
		max-width: 820px;
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;
	}

	.btn-container {
		margin-top: 60px;
	}
}

.page-digitalization .sections:nth-child(1) {
	margin-top: 100px;
	margin-bottom: 100px;
}

.page-digitalization .sections:nth-child(3),
.page-digitalization .sections:nth-child(4),
.page-digitalization .sections:nth-child(5),
.page-digitalization .sections:nth-child(7),
.page-digitalization .sections:nth-child(8) {
	margin-bottom: 100px;
}

.page-digitalization .sections:nth-child(6) {
	margin-bottom: 200px;
}

.page-digitalization .sections:nth-child(1),
.page-digitalization .sections:nth-child(7) {
	.section-content {
		.description p:nth-child(1) {
			color: var(--wfcDarkTeal);
			font-size: 44px;
			font-weight: bold;
		}
	
		.description p:nth-child(2) {
			color: var(--wfcTeal);
			margin-top: 40px;
		}
	
		.description p {
			margin-top: 20px;
			line-height: normal;
		}
	
		app-image, app-image img {
			max-width: 120px;
			width: 100%;
			height: auto;
		}

		.content{
			align-items: center;
			gap: 100px;

			div:last-child {
				display: contents;
			}
		}
	}
}

.page-digitalization .sections:nth-child(6) .section {
	padding-bottom: 10px;
}

.page-digitalization .sections:nth-child(2) {
	.section-container .section { 
		padding-bottom: 0;

		.content {
			display: flex;
			gap: 40px;
			text-align: right;
			justify-content: flex-end;
			align-items: center;
			flex-direction: row;

			span {
				display: block;
			}

			span:nth-child(1) {
				font-size: 36px;
				color: var(--wfcBlack100);
				font-weight: bold;
			}

			span:nth-child(2) {
				font-size: 24px;
				color: var(--wfcDarkTeal);
			}

			.content-image {
				display: contents;
			}
		}
	}
}


.page-digitalization .sections:nth-child(3),
.page-digitalization .sections:nth-child(4),
.page-digitalization .sections:nth-child(5),
.page-digitalization .sections:nth-child(8) {
	.section-container .section {
		.title {
			font-size: 24px;
			color: var(--wfcDarkTeal);
		}

		.section-content .content-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			gap: 60px;

			div{
				width: 100%;
				max-width: 520px;

				ul {
					margin: 0;
					padding: 0;
				}

				img {
					max-width: 300px;
				}
			}
		}
	}
}

.page-digitalization .sections:nth-child(5) .section-container .section .title {
	text-align: right;
}

.page-digitalization .sections:nth-child(8) .section-container .section .section-content .content-container div {
	max-width: 405px;
}

.page-digitalization .sections:nth-child(6) .section-container .section {
	.title {
		font-size: 24px;
		color: var(--wfcDarkTeal);
		margin-bottom: 30px;
	}

	.content-container {
		display: flex;
		flex-wrap: wrap;
		gap: 60px;

		div {
			min-width: 300px;
			flex: 1;
			padding: 10px;
			border-radius: 10px;
			background-color: var(--wfcMixWhiteMediumGray);

			.content {
				flex-direction: column;

				p:first-child img {
					margin-right: 30px;
				}
			}
		}
	}
}

@media (max-width: 900px) {
	.page-digitalization #header .btn-container {
		margin-top: 40px;
	}

	.page-digitalization .sections,
	.page-digitalization .sections .section {
		padding-top: 0;
	}

	.page-digitalization .sections:nth-child(6) {
		margin-bottom: 100px;
	}

	.page-digitalization .sections:not(:nth-child(6)) .section-container .section {
		.title {
			text-align: center;
		}

		.section-content .content-container {
			justify-content: center !important;
			gap: 0px;
		}
	}

	.page-digitalization {
		.sections:nth-child(1),
		.sections:nth-child(7) {
			.section-content .description {
				text-align: center;
	
				p:nth-child(1) {
					font-size: 30px !important;
				}
			}
		}
	}

	.page-digitalization .sections:nth-child(2) {
		.content {
			column-gap: 10px !important;
			text-align: center !important;
			flex-direction: column !important;

			span:nth-child(1) {
				font-size: 24px !important;
			}

			span:nth-child(2) {
				font-size: 16px !important;
			}

			img {
				max-width: 100px;
			}
		}
	}
}




.page-configuration #header {
	padding-bottom: 80px;
	padding-top: 160px;

	#header-container {
		max-width: 700px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		line-height: normal;
	}

	#header-description {
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;

		p:not(:last-child) {
			margin-bottom: 20px;
		}
	}

	.btn-container {
		margin-top: 60px;
	}
}

.page-configuration {
	.sections:nth-child(1) {
		margin-top: 100px;
		margin-bottom: 200px;

		.section-container .section-content:nth-child(2) {
			margin-top: 100px;
		}
	}

	.sections:nth-child(2),
	.sections:nth-child(3) {
		margin-bottom: 100px;
	}

	.sections .section-container .section {
		.section-content:first-child {
			.content {
				align-items: center;
				gap: 100px;

				div:last-child {
					display: contents;
				}
			}	

			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}

			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}

			.description p {
				margin-top: 20px;
				line-height: normal;
			}

			app-image, app-image img {
				max-width: 160px;
				width: 100%;
				height: auto;
			}
		}

		.title {
			color: var(--wfcDarkTeal);
			font-size: 36px;
		}
	}

	.sections:not(:nth-child(2)) .section-container .section .section-content:not(:first-child) {
		.content-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;

			div{
				width: 100%;
				max-width: 405px;

				ul {
					margin: 0;
					padding: 0;
				}

				img {
					max-width: 300px;
				}
			}
		}	
	}

	.sections:nth-child(2) .section-container .section .section-content:not(:first-child) {
		display: block;
		margin-top: 60px;

		.content {
			flex-direction: column;
			padding: 20px;
			border-radius: 10px;
			background-color: var(--wfcLightOrange);
			gap: 0;

			ul {
				margin: 0;
				padding: 0;
			}
		}
	}

	.sections:not(:first-child) .section-container .section .section-content:not(:first-child) .content-container {
		ul {
			margin: 0;
			padding: 0;
		}
	}

	#functions {
		padding: 0 2rem;

		.title {
			font-size: 24px;
			line-height: normal;
			color: var(--wfcDarkTeal);
			text-align: left;
			margin: 0;
		}

		.subtitle {
			font-size: 24px;
			line-height: normal;
			text-align: left;
			margin-bottom: 30px;
		}	

		.sections {
			flex-direction: row;
			justify-content: space-between;
			gap: 20px;

			> div {
				max-width: 366px;
				background-color: var(--wfcMixLightBlueWhite);
				border-radius: 10px;
				padding: 20px;

				.section {
					padding: 0;
				}

				.title {
					display: flex;
					color: var(--wfcBlack100) !important;
					align-items: center;
					margin-top: 0;
					align-self: flex-start;

					p {
						font-size: 16px;
					}

					app-icon {
						font-size: 30px;
						color: var(--wfcTeal);
						margin: 0;
					}
				}

				.description {
					font-size: 16px;
					line-height: normal;
					text-align: left;
					padding: 0;
				}
			}
		}
	}
}

@media (max-width: 900px) {
	.page-configuration #header {
		.btn-container {
			margin-top: 40px;
		}
	}

	.page-configuration .sections {
		padding-top: 0;
	}

	.page-configuration .sections:nth-child(1) .section-container .section .section-content,
	.page-configuration .sections:nth-child(2) .section-container .section .section-content {
		.content {
			gap: 50px;
		}
	}

	.page-configuration .sections:nth-child(3) .section-container .section {
		padding-top: 0;

		.title {
			font-size: 30px;
		}

		.section-content .content-container {
			gap: 10px !important;
		}
	}

	.page-configuration {
		.sections .section-container .section {
			.section-content:first-child {
				.description {
					text-align: center;
		
					p:nth-child(1) {
						font-size: 30px !important;
					}
				}
			}
		}

		.sections:not(:nth-child(2)) .section-container .section {
			padding-bottom: 0;

			.title {
				line-height: normal;
				text-align: center;
			}

			.section-content:not(:first-child) .content-container {
				justify-content: center;
			}
		}

		#functions {
			padding-left: 10px;
			padding-right: 10px;

			.title, .subtitle {
				text-align: center;
			}

			.subtitle {
				font-size: 18px;
			}

			.sections {
				justify-content: center;
				gap: 30px;

				.section-container {
					margin-bottom: 0;
				}
			}
		}
	}
}




.page-one-place #header {
	#header-container {
		margin-top: 30px;
	}

	#header-title {
		color: var(--wfcDarkTeal);
		line-height: normal;
		max-width: 720px;
	}

	#header-description {
		max-width: 830px;
		line-height: normal;
		font-size: 24px;
		margin-top: 20px;

		p:not(:last-child) {
			margin-bottom: 20px;
		}
	}

	.btn-container {
		margin-top: 60px;
	}
}

.page-one-place #page-content {
	> .sections:nth-child(2) {
		margin-top: 100px;
		margin-bottom: 100px;
	}

	> .sections:nth-child(4),
	> .sections:nth-child(6),
	> .sections:nth-child(7),
	> .sections:nth-child(10),
	> .sections:nth-child(11),
	> .sections:nth-child(12),
	> .sections:nth-child(13),
	> .sections:nth-child(14) {
		margin-bottom: 100px;
	}

	.sections:first-child .section-container {
		margin-top: 100px;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;

		.section {
			padding: 0;
			padding-bottom: 2rem;
	
			img {
				max-width: 100%;
			}
		}
	}

	.sections:nth-child(2),
	.sections:nth-child(11),
	.sections:nth-child(12),
	.sections:nth-child(14) {
		.section-content:first-child {
			.content {
				align-items: center;
				gap: 100px;
	
				div:last-child {
					display: contents;
				}
			}	
	
			.description p:nth-child(1) {
				color: var(--wfcDarkTeal);
				font-size: 44px;
				font-weight: bold;
			}
	
			.description p:nth-child(2) {
				color: var(--wfcTeal);
				margin-top: 40px;
			}
	
			.description p {
				margin-top: 20px;
				line-height: normal;
			}
	
			app-image, app-image img {
				max-width: 100px;
				width: 100%;
				height: auto;
			}
		}
	}

	.sections:nth-child(3),
	.sections:nth-child(5),
	.sections:nth-child(9) {
		.section-container .section { 
			padding-bottom: 0;
	
			.content {
				display: flex;
				gap: 40px;
				text-align: right;
				justify-content: flex-end;
				align-items: center;
				flex-direction: row;

				span {
					display: block;
				}
	
				span:nth-child(1) {
					font-size: 36px;
					color: var(--wfcBlack100);
					font-weight: bold;
				}
	
				span:nth-child(2) {
					font-size: 24px;
					color: var(--wfcDarkTeal);
				}
	
				.content-image {
					display: contents;
				}
			}
		}
	}
	
	.sections:nth-child(6) .section-container .section,
	.sections:nth-child(4) .section-container .section,
	.sections:nth-child(7) .section-container .section,
	.sections:nth-child(10) .section-container .section {
		.subtitle {
			color: var(--wfcDarkTeal);
		}

		.content-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;

			div{
				width: 100%;
				max-width: 405px;

				ul {
					margin: 0;
					padding: 0;
				}

				img {
					max-width: 300px;
				}
			}
		}
	}

	#functions:nth-child(1) {
		.title {
			color: var(--wfcDarkTeal);
			font-size: 24px;
			text-align: left;
			margin-bottom: 30px;
		}

		.sections {
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			grid-template-rows: max-content max-content;
			gap: 30px;

			.section-container {
				margin: 0;

				.section {
					padding: 20px;
					border-radius: 10px;
					background-color: var(--wfcLightOrange) !important;

					.title {
						color: var(--wfcBlack100);
						align-self: flex-start;
						font-size: 16px;
						line-height: normal;
						margin-top: 0;
						display: flex;
						align-items: center;

						app-icon {
							color: var(--wfcOrange);
							font-size: 28px;
						}
					}

					.description {
						font-size: 16px;
						line-height: normal;
						text-align: left;
					}
				}
			}

			.section-container:last-child {
				grid-column-start: 2;
				grid-column-end: 4;
			}
		}
	}

	.sections:nth-child(13) .section-container .content {
		background-color: var(--wfcMixLightBlueWhite);
		border-radius: 10px;
		padding: 20px;
		display: block !important;

		ul {
			padding: 0;
			margin-bottom: 0;
		}
	}
}


@media (max-width: 900px) {
	.page-one-place #header {
		.btn-container {
			margin-top: 40px;
		}
	}

	.page-one-place .sections,
	.page-one-place .sections .section{
		padding-top: 0;
	}

	.page-one-place #page-content {
		> .sections:nth-child(2) {
			margin-top: 50px;
			margin-bottom: 50px;
		}
	
		> .sections:nth-child(4),
		> .sections:nth-child(6),
		> .sections:nth-child(7),
		> .sections:nth-child(10),
		> .sections:nth-child(11),
		> .sections:nth-child(12),
		> .sections:nth-child(13),
		> .sections:nth-child(14) {
			margin-bottom: 50px;
		}

		.sections:nth-child(1) {
			.section-content {
				margin: 0;
			}
		}

		.sections:nth-child(2) .section-content .content {
			gap: 50px !important;
			margin-bottom: 90px;
		}

		.sections:nth-child(2),
		.sections:nth-child(11),
		.sections:nth-child(12),
		.sections:nth-child(14) {
			.section {
				padding-bottom: 0;
			}

			.section-content {
				.description {
					text-align: center;
		
					p:nth-child(1) {
						font-size: 30px !important;
					}
				}

				.content {
					gap: 30px !important;
					margin-bottom: 50px;
				}
			}
		}

		.sections:nth-child(3),
		.sections:nth-child(5),
		.sections:nth-child(9) {
			.section {
				padding-left: 10px;
				padding-right: 10px;
			}

			.content {
				column-gap: 10px !important;
				text-align: center !important;
				flex-direction: column !important;
	
				span:nth-child(1) {
					font-size: 24px !important;
				}
	
				span:nth-child(2) {
					font-size: 16px !important;
				}
	
				img {
					max-width: 100px;
				}
			}
		}

		#functions:nth-child(1) {
			padding-left: 10px;
			padding-right: 10px;
			padding-bottom: 0;
			margin-bottom: 50px;

			.sections {
				display: flex;
			}

			.title {
				text-align: center;
			}
		}

		.sections:nth-child(6) .section-container .section,
		.sections:nth-child(4) .section-container .section,
		.sections:nth-child(7) .section-container .section,
		.sections:nth-child(10) .section-container .section {
			padding-top: 0;

			.subtitle {
				text-align: center;
			}

			.content-container {
				gap: 0;
				justify-content: center;
			}
		}

		.sections:nth-child(13) .section-container .section,
		.sections:nth-child(10) .section-container .section {
			padding-bottom: 0;
		}
	}
}
/***********************************CUSTOM STYLES END***********************************/
