/*!
Theme Name: ELL
Author: CLEMCLEM
Author URI: http://clemclem.world
Description: Developed for ELL by CLEMCLEM
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ell
Tags: custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');
@import url('https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css');

:root {
	--color-1: #007cc3;
	--color-2: #171717;
	--color-3: #FFF;
	--color-4: #FAFAFA;
	--pr: 1.5rem
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

body,
button,
input,
select,
optgroup,
textarea {
	color: var(--color-2);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-2);
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: var(--color-4)
}

hr {
	background-color: var(--color-2);
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
	padding-left: 0
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: inherit
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: var(--color-4);
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--color-2);
	border: 1px solid var(--color-4);
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: var(--color-2);
}

select {
	border: 1px solid var(--color-4);
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */

.site-header {
	position: sticky;
	z-index: 44;
	top: 0;
	left: 0;
	width: 100%;
	padding: calc(var(--pr) / 2) var(--pr);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--color-3);
	margin-bottom: calc(var(--pr) + 1rem)
}

.site-branding {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.page-template-page-Contact .site-header {
	margin-bottom: 0
}

.home .site-header {
	margin-bottom: var(--pr)
}

#masthead-logo,
#spinoff-logo,
#footer-logo,
#footer-logo--mobile {
	height: 3.5rem;
	display: block	
}

#spinoff-logo {
	margin-left: 1rem
}

#footer-logo--mobile {
	display: none
}

.main-navigation {
	display: block;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	display: none;
	z-index: 99999;
	background: var(--color-1);
	padding: calc(var(--pr) / 4) 0;
	text-align: center
}

.main-navigation ul ul li {
	color: var(--color-3);
}

.main-navigation ul ul li.sub-menu--open > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul li.sub-menu--open > ul,
.main-navigation ul li.focus > ul {
	display: flex;
	justify-content: center
}

.main-navigation li {
	margin-left: 2.25rem;
	text-transform: uppercase;
	color: var(--color-1);
	font-weight: 600;
	font-size: .875rem;
}

.main-navigation li:first-child {
	margin-left: 0;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.archive .site-main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	align-items: flex-start
}

.category-disseminazione .archive .site-main,
.category-disseminazione--parent .archive .site-main {
	display: block
}

.archive .page-header {
	grid-column: span 2;
}

.archive h2 {
	margin-top: 0
}

.category-disseminazione h3 {
	margin: 0;
	color: var(--color-1)
}

.category-disseminazione p {
	margin: 0;
}

.category-disseminazione.post {
	margin: var(--pr) 0
}

.category-disseminazione .home-button {
	margin-left: unset;
	margin-right: unset;
	margin-bottom: calc(var(--pr) * 3)
}

.category-disseminazione .home-button:last-child {
	margin-bottom: 0
}

.container,
.archive .site-main {
	width: 1170px;
	margin: 0 auto
}

.container.small {
	width: 740px
}

.post-thumbnail img,
.post video,
.post-thumbnail video {
	width: 100%;
}

.entry-title {
	color: var(--color-1) !important
}

.section-title {
	display: flex;
	align-items: center;
	color: var(--color-1)
}

.section-title::after {
	content: "";
	display: block;
	height: 0;
	border-bottom: 2pt solid var(--color-1);
	flex: 1;
	margin-left: 1rem
}

.home-service {
	width: calc(100% - (var(--pr) * 2));
	margin: 0 auto;
	position: relative;
	height: calc(100vh - 9rem);
	overflow: hidden;
	display: flex;
	align-items: center;
	margin-bottom: var(--pr)
}

.home-video video {
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.home-video--text {
	position: relative;
	z-index: 2;
	color: var(--color-3);
	padding: 0 3.75rem;
}

.home-video--title {
	font-size: 4.5rem;
	margin: 0
}

.home-video--text p {
	font-size: 1.375rem;
	margin: .625rem 0 1.375rem
}

.home-video--text p:last-child {
	margin-bottom: 0
}

.home-video--button,
.home-button {
	max-width: fit-content;
	padding: .625rem calc(var(--pr) / 2);
	font-size: 1.25rem;
	font-weight: 600;
	background: var(--color-3);
	color: var(--color-2);
	display: flex;
	align-items: center
}

.home-button {
	background: var(--color-2);
	color: var(--color-1);
	margin: var(--pr) auto 0
}

.home-video--button a,
.home-button a {
	text-decoration: none;
	color: inherit
}

.home-video--button::before,
.home-button::before {
	content: "\f30f";
	font-family: "Ionicons";
	margin-right: calc(var(--pr) / 2);
}

.home-video--button:hover {
	color: var(--color-1)
}

.home-button:hover {
	color: var(--color-3);
}

.social {
	font-size: 2rem;
	color: var(--color-3);
	margin-right: calc(var(--pr) / 2);
}

.social:hover {
	color: var(--color-2);
}

.wp-block-image {
	margin-bottom: 0
}

#home-customers {
	margin: 0 auto 0;
	background: var(--color-1);
	padding: var(--pr) 0;
}

#home-customers .wp-block-group__inner-container {
	width: 75%;
	margin: 0 auto var(--pr);
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 7.5%;
	row-gap: 2.5%;
	align-items: flex-end;
}

#home-customers .wp-block-group__inner-container figure,
.logo-footer,
#spin-off {
	width: 100%;
	-webkit-filter: grayscale(1);
}

.logo-footer:hover,
#spin-off:hover,
#home-customers .wp-block-group__inner-container figure:hover {
	-webkit-filter: grayscale(0);
}

#home-customers .wp-block-group__inner-container figure img {
	width: 100% !important
}

#spin-off {
	width: 75%
}

figcaption {
	font-size: .875rem;
}

#home-customers .wp-block-group__inner-container figcaption {
	text-align: center;
	color: var(--color-3);
	margin-top: calc(var(--pr) / 2);
	margin-bottom: 0
}

#projects {
	width: calc(100% - (var(--pr) * 2));
	margin: var(--pr) auto;
	text-align: center;
	position: relative;
}

#projects p:not(#projects-container p) {
	font-size: 1.5rem;
	text-align: left;
	margin: 0;
	margin-bottom: var(--pr)
}

#projects h2 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	margin-bottom: var(--pr)
}

#projects-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: var(--pr)
}

.project {
	width: 100%;
	color: var(--color-3);
	text-align: left;
	position: relative;
	overflow: hidden
}

.project-container {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: var(--pr)
}

.project img,
.project video {
	display: block;
	object-fit: cover;
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 0;
	left: 0
}

#projects-container p {
	text-align: left
}

.project::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: var(--color-1);
	opacity: .5
}

.project:hover::after {
	display: block
}

.project-subtitle,
.project-title {
	position: relative;
	z-index: 2
}

.project-subtitle {
	font-size: 1rem;
	margin: 0
}

.project-title {
	font-size: 1.625rem;
	font-weight: 700;
	margin: 0
}

.project-title a {
	text-decoration: none;
	color: inherit
}

#people {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--pr)
}

.person {
	display: flex;
	align-items: center;
	text-align: left;
}

.person > div {
	display: flex;
	flex-flow: column
}

.person-image {
	width: 25%;
	border-radius: 50%;
	display: block;
	margin-right: calc(var(--pr) / 2)
}

.person-name,
.post-preview-name {
	font-weight: 600;
	color: var(--color-1);
	margin: 0
}

.tile-link {
	width: 100%;
	background: var(--color-1);
	padding: calc(var(--pr) / 2);
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0
}

.tile-link-w {
	background: var(--color-3);
	border: 1px solid var(--color-1)
}

.tile-link a {
	color: var(--color-3) !important;
	text-decoration: none
}

.tile-link-w a {
	color: var(--color-1) !important
}

.tile-link:hover {
	transform: scale(1.1)
}

article.category-team h1,
.category-disseminazione--parent h1 {
	margin-bottom: 0
}

article.category-team h2,
.category-disseminazione--parent h2 {
	margin: 0
}

article.category-team .post-thumbnail {
	width: 40%;
	float: right;
	margin: 0 0 var(--pr) var(--pr);
}

article.category-team .post-thumbnail img {
	border-radius: 50%;
}

article.category-team .post-thumbnail img:hover {
	/* transform: scaleX(-1); */
}

#person-email {
	font-style: italic;
	margin-top: .5rem
}

#sections-nav {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background: var(--color-1);
	text-align: center;
	padding: .25rem 0;
	border-top: 1px solid var(--color-4)
}

#sections-nav a {
	color: var(--color-3);
	margin-right: 2rem;
	font-weight: bold;
	font-size: 1.5rem;
	text-decoration: none;
	text-transform: uppercase
}

#sections-nav a:hover {
	color: var(--color-2);
}

#contact-map {
	width: 100%;
	height: 100%
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
	width: 100%;
	overflow: hidden;
}

.project::before,
.wp-block-embed-youtube .wp-block-embed__wrapper::before {
	content: "";
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	display: block;
	overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#footer {
	width: 100%;
	padding: var(--pr);
	background: var(--color-1);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: var(--pr);
	row-gap: var(--pr);
	margin-top: calc(var(--pr) * 2);
	font-size: .875rem
}

html.page-template-page-Contact,
body.page-template-page-Contact,
body.page-template-page-Contact #page,
body.page-template-page-Contact #primary {
	height: 100%
}

body.page-template-page-Contact #page {
	display: flex;
	flex-flow: column
}

.page-template-page-Contact #footer {
	margin-top: 0
}

#footer h6 {
	font-weight: 700;
	font-size: 1.125rem;
	margin: 0;
	text-transform: uppercase
}

#footer p {
	margin: 0;
	color: var(--color-3);
	font-weight: 500
}

#footer-logo--container {
	display: flex;
	flex-flow: column;
	align-items: flex-end
}

#footer--bottom-left {
	display: flex;
	justify-content: flex-end;
	flex-flow: column
}

#footer--partners {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	column-gap: 10%;
	align-items: flex-end
}

#footer--credits {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end
}

.title-f {
	visibility: hidden
}

@media screen and (max-width: 1200px) {
	.container,
	.archive .site-main {
		width: 960px;
	}
	
	#projects-container {
		grid-template-columns: repeat(2, 1fr)
	}
	
	.project-container {
		padding: var(--pr)
	}
	
	.project-title {
		font-size: 1.25rem
	}
}

@media screen and (max-width: 980px) and (min-width: 768px) {
	.container,
	.archive .site-main {
		width: 740px;
	}
	
	#people {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media screen and (max-width: 980px) {
	:root {
		--pr: 1rem
	}
	
	body {
		font-size: .9rem
	}
	
	.home-video--text {
		padding: 1rem
	}
	
	.home-video--title {
		font-size: 2.25rem;
		word-break: break-word;
	}
	
	.home-video--text p {
		font-size: 1rem
	}
	
	#home-customers .wp-block-group__inner-container {
		width: 95%
	}
	
	figcaption,
	#footer {
		font-size: .75rem
	}
	
	#footer h6 {
		font-size: .9rem
	}
	
	.social {
		font-size: 1.5rem
	}
}

@media screen and (max-width: 767px) {
	.site-header {
		display: block
	}
	
	.main-navigation {
		margin-top: var(--pr)
	}
	
	.main-navigation ul,
	.main-navigation ul li.sub-menu--open > ul,
	.main-navigation ul li.focus > ul,
	#sections-nav {
		justify-content: unset;
		white-space: nowrap;
		overflow-x: scroll
	}
	
	.main-navigation ul ul li:first-child,
	#sections-nav a {
		margin-left: var(--pr)
	}
	
	.main-navigation ul ul li:last-child,
	#sections-nav a {
		margin-right: var(--pr)
	}
}

@media screen and (max-width: 767px) {	
	.container,
	.container.small,
	.archive .site-main {
		width: 90%;
	}
	
	#masthead-logo,
	#spinoff-logo,
	#footer-logo,
	#footer-logo--mobile {
		height: 3rem
	}
	
	#spinoff-logo {
		height: auto;
		width: 40%
	}
	
	.wp-container-3,
	.wp-container-7,
	.wp-container-11,
	.wp-container-14 {
		gap: var(--pr) !important
	}
	
	#footer-logo--container,
	#footer--partners,
	#footer--banner:empty {
		display: none;
	}
	
	#footer--credits {
		writing-mode: vertical-lr; 
		position: absolute;
		bottom: var(--pr);
		right: var(--pr);
	}
	
	#footer-logo--mobile {
		display: block;
		position: absolute;
		top: var(--pr);
		right: var(--pr);
	}
	
	#home-customers {
		padding-bottom: calc(var(--pr) * 6)
	}
	
	#home-customers .wp-block-group__inner-container {
		width: 90%;
		grid-template-columns: repeat(4, 1fr)
	}
	
	.archive .page-header {
		grid-column: span 1
	}

	#people,
	#projects-container,
	.archive .site-main,
	#footer	{
		grid-template-columns: 1fr
	}
	
	#footer {
		position: relative
	}
	
	.title-f {
		display: none
	}
	
	.post-25--pcm:not(:first-of-type) {
		display: none
	}
}

@media screen and (max-width: 767px) and (orientation:landscape) {
	#projects-container {
		grid-template-columns: repeat(2, 1fr)
	}
	
	.title-f {
		display: block
	}

	#footer {
		grid-template-columns: repeat(3, 1fr);
	}
}