@media ( max-width : 1400px) {
	nav ul:first-of-type {
		display: none;
	}
}

@media ( max-width : 1024px) {
	:root {
		/* SPACERS 
		--size-xs: 4px;
		--size-s: 16px;
		--size-m: 26px;
		--size-l: 44px;
		--size-xl: 64px;*/
	}
	
	body {
		padding-top: 80px;
		font-size: 14px;
	}
	
	/* DISPLAY & ALIGNMENT */
	.flex {
		flex-direction: column;
	}
	.none-m {
		display: none !important;
	}
	.block-m {
		display: block !important;
	}
	
	
	.grid[column-count="4"] {
	   grid-template-columns: repeat(2, 1fr);
	}
	.grid[column-count="2"],
	.grid[column-count="3"] {
	    grid-template-columns: repeat(1, 1fr);
	}
	
	.fd-r-m {
		flex-direction: row !important;
	}
	.fd-cr-m {
		flex-direction: column-reverse;
	}
	
	.ai-fs-m {
		align-items: flex-start !important;
	}
	.ai-c-m {
		align-items: center !important;
	}
	
	.jc-sb-m {
		justify-content: space-between;
	}
	
	.fw-w-m {
		flex-wrap: wrap;
	}
	
	/* WIDTHS */
	.w-100-m {
		width: 100% !important;
	}
	.w-50-m {
		width: 50% !important;
	}
	
	/* HEIGHTS */
	.h-100-m {
		height: 100%;
	}
	
	/* CONTAINER */
	.container {
		padding: 0 40px;
	}

	/* TYPOGRAPHY */
	h1, .h1 {
		font-size: 38px;
	}
	h1.l, .h1.l {
		font-size: 40px;
	}
	h2, .h2 {
		font-size: 24px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	
	h4, .h4 {
		font-size: 18px;
	}
	h5, .h5 {
		font-size: 16px;
	}
	h6, .h6 {
		font-size: 14px;
	}
	h1 br, .h1 br,
	/* h2 br, .h2 br, */
	h3 br, .h3 br,
	h4 br, .h4 br,
	h5 br, .h5 br,
	h6 br, .h6 br {
		display: none;
	}
	
	/* HEADER */
	header {
		height: 70vh;
	}
	header picture[alpha]:after {
	    background: linear-gradient(to right, black, transparent);
	}
	
	/* SECTION */
	section {
		padding: var(--size-l) 0;
	}
	section[border-radius] {
	    margin-top: -50px;
	    border-top-left-radius: 50px;
	    border-top-right-radius: 50px;
	}
	
	/* PICTURE */
	picture {
		max-width: 100%;
		height: auto;
	}
	
	/* NAVIGATION */
	nav {
		height: 80px;
	}
	nav .logo {
		width: 130px;
	}
	nav ul li a:not(.button) {
		padding: 3px 0;
	}
	
	/* COL BG */
	[column-background] {
		width: calc(100% + 80px) !important;
		margin-left: -40px;
    	padding: 0 40px;
	}
	
	/* ANCHOR */
	.section__anchor {
		top: -80px;
	}
	
	/* CAROUSEL */
	.owl-carousel .owl-nav {
		position: relative;
	    bottom: 0;
	    justify-content: space-between;
	    padding: 40px 0;
	}
	
	/* GALLERY */
	.gallery .gallery__thumbs {
		height: unset;
	}
	
	
	/* PAGES */
	.page-home .offices {
		min-height: 380px;
	}
	.page-home .offices .offices__list {
		top: -60px;
	}
	
	
	
	
	/* FOOTER */
	footer {
		padding: var(--size-l) 0;
	}
	footer .grid[column-count="2"] {
	    grid-template-columns: repeat(2, 1fr);
	}
	
	
	
	
}