/* stylelint-disable scss/selector-no-redundant-nesting-selector */
:root {
	--section-spacing-top: 85px;
    --section-spacing-bottom: 85px;
}

.fcb-section[data-background-image-size="cover"] {
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fcb-section[data-background-image-size="contain"] {
	background-size: contain;
	background-repeat: no-repeat;
}

.fcb-section[data-background-image-size="contain"][data-background-contain-position="top"] {
	background-repeat: no-repeat;
	background-position: top center;
}

.fcb-section[data-background-image-size="contain"][data-background-contain-position="center"] {
	background-repeat: no-repeat;
	background-position:center;
}

.fcb-section[data-background-image-size="contain"][data-background-contain-position="bottom"] {
	background-repeat: no-repeat;
	background-position: bottom center;
}

.fcb-section .fcb-columns {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='1/3 2/3'] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='1/3 2/3'] > .fcb-column:nth-child(2) {
	grid-column: 2 / span 2;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='2/3 1/3'] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='2/3 1/3'] > .fcb-column:nth-child(1) {
	grid-column: 1 / span 2;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='1/4 3/4'] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='1/4 3/4'] > .fcb-column:nth-child(2) {
	grid-column: 2 / span 3;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='3/4 1/4'] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='3/4 1/4'] > .fcb-column:nth-child(1) {
	grid-column: 1 / span 3;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='3/5 2/5'] {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='3/5 2/5'] > .fcb-column:nth-child(1) {
    grid-column: 1 / span 3;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='3/5 2/5'] > .fcb-column:nth-child(2) {
    grid-column: 4 / span 2;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='2/5 3/5'] {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='2/5 3/5'] > .fcb-column:nth-child(1) {
    grid-column: 1 / span 2;
}
.fcb-section .fcb-columns[data-elements-count='2'][data-distribution='2/5 3/5'] > .fcb-column:nth-child(2) {
    grid-column: 3 / span 3;
}
.fcb-section .fcb-columns[data-elements-count='3'] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='3'][data-distribution='1/5 3/5 1/5'] {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='3'][data-distribution='1/5 3/5 1/5'] > .fcb-column:nth-child(2) {
	grid-column: 2 / span 3;
}
.fcb-section .fcb-columns[data-elements-count='4'] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.fcb-section .fcb-columns[data-elements-count='5'] {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Additional settings styles */
.fcb-section[data-section-spacing-top] {
	padding-top: var(--section-spacing-top);
}

.fcb-section[data-section-spacing-bottom] {
	padding-bottom: var(--section-spacing-bottom);
}

.no-heroes + #flexible-content .fcb-section:first-child,
.no-heroes + .single-wrapper:not(:has(.team-title-container, .project-top-content-container)) .fcb-section:first-child,
.no-heroes + .single-wrapper .project-top-content-container,
.no-heroes + .single-wrapper:has(.team-title-container) .team-title-container,
.no-heroes + .fcb-section:first-of-type {
	padding-top: 250px;
}

.fcb-section[data-section-width="full"] .container {
	width: 100%;
	padding: 0;
}

.fcb-section[data-section-width="padding-right"] .container {
	width: 100%;
	padding: 0 130px 0 0;
}

.fcb-section[data-section-width="padding-left"] .container {
	width: 100%;
	padding: 0 0 0 130px;
}

.fcb-section[data-section-text-center="center"] .fcb-columns {
	align-items: center;
}

.fcb-section .fcb-columns[data-elements-count="1"] > .fcb-column:not(.deepest) > *:not(.fcb-subsection):last-child > *:last-child {
	margin-bottom: 0;
}

.fcb-section[data-section-color="green"] {
	background-color: var(--color-green);
}

.fcb-section[data-section-width="full"] .container:not(.header-image) .row {
	margin: 0;
}

@media (min-width: 769px) {
	.fcb-section .fcb-column.deepest > *:last-child > *:last-child {
		margin-bottom: 0;
	}
}

@media (min-width:769px) and (max-width:1024px) {
	.fcb-section .fcb-columns[data-elements-count='4'] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fcb-section .fcb-columns[data-distribution='1/4 3/4'] .fcb-column {
		grid-column: auto !important;
	}
}

@media (max-width: 1115px) {
	.fcb-section[data-section-width="full"] .container.header-image {
		padding: 0;
	}
	.fcb-section[data-section-width="full"] .container.header-image .row {
		margin: 0;
	}
	.container:not(.header-image) .row {
		margin: 0;
	}
}

@media (max-width: 1024px) {
	:root {
		--section-spacing-top: 40px;
		--section-spacing-bottom: 40px;
	}

	.fcb-section[data-section-spacing-top]:first-of-type {
		padding-top: calc(var(--section-spacing-top) * 2);
	}

	.fcb-section[data-section-spacing-bottom]:last-of-type {
		padding-bottom: calc(var(--section-spacing-bottom) * 2);
	}

	.fcb-section .fcb-columns[data-elements-count="3"] {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
		column-gap: 0;
		/* grid-gap: 0; */
	}

	.fcb-section .fcb-columns[data-elements-count='3'][data-distribution='1/5 3/5 1/5'] > .fcb-column:nth-child(2) {
		grid-column: 1 / span 3;
	}

	.fcb-section .fcb-columns[data-elements-count="3"] .fcb-column.empty-column {
        display: none;
    }
}

@media (max-width: 768px) {
	:root {
		--section-spacing-top: 30px;
		--section-spacing-bottom: 30px;
	}

	.fcb-section .fcb-columns {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
		/* grid-gap: 0; */
	}
	.fcb-section .fcb-columns .fcb-column {
		grid-column: auto !important;
	}

	.fcb-section .fcb-column.deepest:last-child > *:last-child > *:last-child {
		margin-bottom: 0;
	}

	.fcb-team-single .fcb-column:last-child,
	.fcb-columns:has(.mobile-reverse) .fcb-column:last-child {
		order: 1;
	}
	
	.fcb-team-single .fcb-column:first-child,
	.fcb-columns:has(.mobile-reverse) .fcb-column:first-child {
		order: 2;
	}
	
	.fcb-column.empty-column {
        display: none;
    }
}