/*
Theme Name: Hillsons
Author: URBAN PROPAGANDA Communications GmbH
Author URI: https://urban-propaganda.de/
Description: Custom responsive theme.
Version: 1.0.2
Tags: php8, wp6
Text Domain: hillsons
*/

@charset "UTF-8";

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: oblique -10deg 0deg;
    font-display: swap;
}

html, body {
    height: 100%;
}

body {
	background-color: var(--background-color);
}

body, button, input, select, textarea {
    font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: var(--text-color);
}

textarea {
	resize: vertical;
}

* {
	box-sizing: border-box;
	outline: none;
	margin: 0;
	padding: 0;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
}

b, strong {
	font-weight: 700;
}

h1, .h1, h2, h3, h4, h5, h6 {
	color: var(--text-color);
	font-weight: 700;
}
.textlight h1, .textlight .h1, .textlight h2, .textlight h3, .textlight h4, .textlight h5, .textlight h6 {
	color: var(--text-light);
}
.textdark h1, .textdark .h1, .textdark h2, .textdark h3, .textdark h4, .textdark h5, .textdark h6 {
	color: var(--text-dark);
}

h1, .h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin-bottom: 20px;
}
h1, .h1 {
	font-size: 52px;
	line-height: 71px;
}
h2 {
	font-size: 42px;
	line-height: 50px;
}
h3 {
	font-size: 32px;
	line-height: 44px;
}
h4 {
	font-size: 28px;
	line-height: 36px;
}
h5 {
	font-size: 24px;
	line-height: 32px;
}
h6 {
	font-size: 20px;
	line-height: 28px;
}

ul, ol {
	padding-left: 12px;
}

a {
	color: var(--text-color);
	text-decoration: underline;
	transition: all 0.3s;
}
a:hover {
	color: var(--hover-color);
	text-decoration: underline;
}

.imgresponsive {
	display: block;
	width: 100%;
	height: auto;
}
.imgrounded {
	border-radius: var(--rounded-radius);
}

#main {
	min-height: 100vh;
}


/* Content */
.c-content {
	width: 100%;
/*	max-width: 1920px; */
	margin: 0 auto;
	background-color: var(--background-color);
}
.c-content-center {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}
.c-content-inner {
	padding: 0 80px;
}
.c-box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.c-box-overlay {
	display: flex;
}
.c-box-overlay-content {
    display: block;
	width: 100%;
    align-self: flex-end;
}
/* /Content */


/* Spacers */
.c-spacer {
	height: 60px;
}
.c-spacer-halfhalf,
.c-spacer-small {
	height: 15px;
}
.c-spacer-half {
	height: 30px;
}
.c-spacer-double {
	height: 120px;
}
.c-spacer-section {
	height: 240px;
}
.c-spacer-header {
	height: 116px;
}
/* /Spacers */


/* Formatting */
.textcenter {
	text-align: center;
}
.textright {
	text-align: right;
}
.textleft {
	text-align: left;
}
.textsmall {
	font-size: 12px;
	line-height: 17px;
}
.textbody {
	font-size: 18px;
	line-height: 34px;
}
.textlarge {
	font-size: 108px;
	line-height: 116px;
	font-weight: 700;
}
.textupper {
	text-transform: uppercase;
}
.textunderline {
	text-decoration: underline;
}
.textunderlined {
	border-bottom: 2px solid var(--text-color);
}
.textbold {
	font-weight: 700;
}
.textcolor {
	color: var(--text-color);
}
.textprimary {
	color: var(--primary-color);
}
.textsecondary {
	color: var(--secondary-color);
}
.textbackground {
	color: var(--background-color);
}
.textlight {
	color: #fff;
}
.textlight a {
	color: #fff;
}
.textlight a:hover {
	color: var(--hover-color);
}
.textgray {
	color: #888;
}
.textdark {
	color: #000;
}
.textdark a {
	color: #000;
}
.textdark a:hover {
	color: var(--hover-color);
}
.textnodecoration {
	text-decoration: none;
}
.textnowrap {
	white-space: nowrap;
}
.backgroundlight {
	background-color: var(--text-light);
}
.backgrounddark {
	background-color: var(--text-dark);
}
.backgroundprimary {
	background-color: var(--primary-color);
}
.backgroundsecondary {
	background-color: var(--secondary-color);
}
.backgroundbackground {
	background-color: var(--background-color);
}
.backgroundpistache {
	background-color: #737c4f;
}
.backgroundvanilla {
	background-color: #e6c777;
}
/* /Formatting */


/* Header */
#header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100vw;
	z-index: 9;
	background-color: var(--background-color);
	transform: translateY(0);
	transition: transform 0.3s;
}
#header .header-grid {
	display: grid;
	grid-template-columns: 0 340px 1fr 340px;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

#header .header-icon {
	display: none;
	padding-top: 42px;
}
#header .header-icon-inner {
	width: 24px;
	height: 32px;
	position: relative;
	cursor: pointer;
}
#header .header-icon-inner span {
	position: absolute;
	left: 0;
	right: 0;
	height: 3px;
	background-color: var(--primary-color);
	opacity: 1;
	transition: all 0.3s;
}
#header .header-icon-inner span.a1 {
	top: 6px;
}
#header .header-icon-inner span.a2 {
	top: 50%;
	transform: translateY(-50%);
}
#header .header-icon-inner span.a3 {
	bottom: 6px;
}
#header .header-icon-inner:hover span {
	background-color: var(--hover-color);
}
body.mobilemenu-active #header .header-icon-inner span.a1 {
	top: 14.5px;
	transform: rotate(45deg);
}
body.mobilemenu-active #header .header-icon-inner span.a2 {
	opacity: 0;
}
body.mobilemenu-active #header .header-icon-inner span.a3 {
	bottom: 14.5px;
	transform: rotate(-45deg);
}

#header .header-logo {
	margin: 8px 0;
}
#header .header-logo-image {
	display: block;
	width: 100%;
	max-width: 320px;
	height: 100px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}

#header .header-menu {
	text-align: center;
}
#header .header-menu ul {
	display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#header .header-menu ul li {
	display: inline-block;
}
#header .header-menu ul li a {
	display: inline-block;
	line-height: 26px;
	font-size: 18px;
	font-weight: bold;
	padding: 0 20px;
	text-decoration: none;
}
#header .header-menu ul li a:hover {
	text-decoration: none;
}

#header .header-switch {
	height: 48px;
	line-height: 48px;
	font-size: 18px;
	font-weight: bold;
}
#header .header-switch a,
#header .header-switch a:hover; {
	text-decoration: none;
}

#header .header-links {
	height: 48px;
}
#header .header-links ul {
	display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#header .header-links ul li {
	float: left;
}
#header .header-links ul li svg {
	display: inline-block;
	width: 38px;
	height: 38px;
	margin-top: 5px;
	margin-left: 20px;
}
#header .header-links ul li a {
	display: inline-block;
	height: 43px;
}
#header .header-links ul li a svg path {
	transition: all 0.3s;
}
#header .header-links ul li a svg path.bg {
	fill: var(--text-light);
}
#header .header-links ul li a svg path.front {
	fill: var(--primary-color);
}
#header .header-links ul li a:hover svg path.bg {
	fill: var(--text-light);
}
#header .header-links ul li a:hover svg path.front {
	fill: var(--hover-color);
}

body.header-retracted #header {
	transform: translateY(-100%);
}
/* /Header */


/* Mobile Menu */
#mobilemenu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	background-color: var(--text-light);
	width: 100%;
	max-width: 320px;
	box-shadow: 10px 0 10px 10px rgba(0,0,0,0.1);
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.3s;
	z-index: 7;
}
#mobilemenu ul {
	display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#mobilemenu ul li {
	display: block;
	border-bottom: 1px solid #ccc;
}
#mobilemenu ul li a {
	display: block;
	line-height: 48px;
	padding: 0 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--text-color);
	text-decoration: none;
}
#mobilemenu ul li a:hover {
	background-color: #e7e7e7;
	text-decoration: none;
}

body.mobilemenu-active #mobilemenu {
	transform: translateX(0);
	opacity: 1;
}
/* /Mobile Menu */


/* Video */
.c-video {
	display: block;
	overflow: hidden;
	position: relative;
	padding-bottom: 75%;
}
.c-video-element {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130%;
    transform: translate(-50%,-50%);
}
/* /Video */


/* Grid */
.c-grid {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 60px;
}
.c-grid-nested {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 60px;
}
.c-grid-1-10-1 {
	grid-template-columns: 1fr 10fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 60px;
}
.c-grid-1-5-1-4-1 {
	grid-template-columns: 1fr 5fr 1fr 4fr 1fr;
	grid-column-gap: 0;
	grid-row-gap: 0;
}
.c-grid-6-6 {
	grid-template-columns: repeat(2, 1fr);
}
.c-grid-4-4-4 {
	grid-template-columns: repeat(3, 1fr);
}
.c-grid-2-8-2 {
	grid-template-columns: 2fr 8fr 2fr;
}
.c-grid-3-1-8 {
	grid-template-columns: 3fr 1fr 8fr;
}
.c-grid-3-6-3 {
	grid-template-columns: 3fr 6fr 3fr;
}
.c-grid-4-1-7 {
	grid-template-columns: 4fr 1fr 7fr;
}
.c-grid-3-3-3-3 {
	grid-template-columns: repeat(4, 1fr);
}
.c-grid-5-1-6 {
	grid-template-columns: 5fr 1fr 6fr;
}
.c-grid-5-2-5 {
	grid-template-columns: 5fr 2fr 5fr;
}
.c-grid-6-2-4 {
	grid-template-columns: 6fr 2fr 4fr;
}
.c-grid-6-3-3 {
	grid-template-columns: 6fr 3fr 3fr;
}
.c-grid-6-1-5 {
	grid-template-columns: 6fr 1fr 5fr;
}
.c-grid-3-3-6 {
	grid-template-columns: 3fr 3fr 6fr;
}
.c-grid-7-1-4 {
	grid-template-columns: 7fr 1fr 4fr;
}
.c-grid-8-1-3 {
	grid-template-columns: 8fr 1fr 3fr;
}
.c-grid-8-4 {
	grid-template-columns: 8fr 4fr;
}
.c-grid-4-8 {
	grid-template-columns: 4fr 8fr;
}
.c-grid-5-7 {
	grid-template-columns: 5fr 7fr;
}
.c-grid-7-5 {
	grid-template-columns: 7fr 5fr;
}
.c-grid-9-3 {
	grid-template-columns: 9fr 3fr;
}
.c-grid-3-9 {
	grid-template-columns: 3fr 9fr;
}
.c-grid-2-10 {
	grid-template-columns: 1fr 5fr;
}
.c-grid-10-2 {
	grid-template-columns: 5fr 1fr;
}
.c-grid-gap {
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}
.c-grid-gap-double {
	grid-column-gap: 60px;
	grid-row-gap: 60px;
}
.c-grid-nogap {
	grid-column-gap: 0 !important;
	grid-row-gap: 0 !important;
}
.c-col-center {
	place-self: center;
	width: 100%;
}
.c-col-end {
	place-self: end;
	width: 100%;
}
/* /Grid */


/* Button */
.urban-button {
	position: relative;
	display: inline-block;
	min-height: 48px;
	border: 2px solid var(--text-dark);
	background-color: var(--text-dark);
	color: var(--text-light);
	padding: 10px 20px;
	line-height: 24px;
	white-space: nowrap;
	border-radius: 24px;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	margin-right: 20px;
	margin-bottom: 10px;
	justify-content: center;
	vertical-align: middle;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s;
}
.textlight .urban-button {
	border: 2px solid var(--text-light);
	background-color: var(--text-light);
	color: var(--text-dark);
}
.urban-button-outline {
	background-color: transparent;
	border: 2px solid var(--text-dark);
	color: var(--text-dark);
}
.textlight .urban-button-outline {
	background-color: transparent;
	border: 2px solid var(--text-light);
	color: var(--text-light);
}
.urban-button:hover {
	border: 2px solid var(--hover-color);
	background-color: var(--hover-color);
	color: var(--text-light) !important;
	font-weight: 700;
	text-decoration: none;
}
.urban-button-outline:hover {
	background-color: transparent;
	border: 2px solid var(--hover-color);
	color: var(--hover-color) !important;
	font-weight: 700;
}

.urban-button-icon {
	padding-right: 52px;
}
.urban-button-icon.urban-button-icon-phone {
	padding-right: 20px;
	padding-left: 52px;
}
.urban-button-icon svg {
	position: absolute;
	top: calc(50% - 8px);
	right: 20px;
	width: 16px;
	height: 16px;
	transition: all 0.3s;
}
.urban-button-icon.urban-button-icon-phone svg {
	right: auto;
	left: 20px;
}
.urban-button-icon.urban-button-icon-arrow:hover svg {
	right: 10px;
}
.urban-button-icon.urban-button-icon-phone:hover svg {
	left: 10px;
}

.urban-button-icon svg path {
	transition: all 0.3s;
	fill: var(--text-light);
}
.urban-button-icon.urban-button-outline svg path {
	fill: var(--text-dark);
}
.urban-button-icon.urban-button-outline:hover svg path {
	fill: var(--hover-color);
}
.textlight .urban-button-icon svg path {
	fill: var(--text-dark);
}
.textlight .urban-button-icon:hover svg path {
	fill: var(--text-light);
}
.textlight .urban-button-icon.urban-button-outline svg path {
	fill: var(--text-light);
}
.textlight .urban-button-icon.urban-button-outline:hover svg path {
	fill: var(--hover-color);
}

.urban-button-disabled {
	pointer-events: none;
	opacity: 0.1;
}
/* /Button */


/* Formatting */
.mobileonly {
	display: none;
}
.desktoponly {
	display: block;
}
.wideonly {
	width: 100%;
}
/* /Formatting */


/* Pagination */
.navigation.pagination .screen-reader-text {
	display: none;
}
.navigation.pagination .nav-links .page-numbers {
	display: inline-block;
	text-decoration: none;
	padding: 0 20px;
	line-height: 28px;
	height: 32px;
	background-color: transparent;
	color: #333;
	border: 2px solid var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 12px;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}
.navigation.pagination .nav-links .page-numbers.current {
	background-color: var(--text-color);
	color: #fff;
}
.navigation.pagination .nav-links .page-numbers:hover {
	border: 2px solid var(--primary-color) !important;
	color: var(--primary-color) !important;
}
.navigation.pagination .nav-links .page-numbers.current:hover {
	border: 2px solid var(--primary-color) !important;
	background-color: var(--primary-color) !important;
	color: #fff !important;
}
/* /Pagination */


/* Animations */
.customAnim.animFadeUp {
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.customAnim.animFadeUp.come-in {
	opacity: 1;
	animation: afu-come-in 0.6s ease forwards;
	-webkit-transform: -webkit-translateY(100px);
	transform: translateY(100px);
}
.customAnim.animSlowUp {
	opacity: 0;
	-webkit-transition: opacity 2.4s;
	transition: opacity 2.4s ease-out;
}
.customAnim.animSlowUp.come-in {
	opacity: 1;
	animation: afu-come-in 2.4s ease forwards;
	-webkit-transform: -webkit-translateY(50px);
	transform: translateY(50px);
}
@keyframes afu-come-in {
	to {
		-webkit-transform: -webkit-translateY(0);
		transform: translateY(0);
	}
}
/* /Animations */


/* Popup */
.popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1001;
	background: rgba(0,0,0,0.75);
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}
.popup.pass-on {
	opacity: 1;
	visibility: visible;
}
.popup .popup-inner {
	position: fixed;
	top: -50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 700px;
	z-index: 1002;
	transition: top 0.5s;
	box-sizing: border-box;
	padding: 0 40px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.25);
	transition: top 0.5s;
}
.popup.pass-on .popup-inner {
	top: 50%;
}
.popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	background-color: #000;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}
.popup-close-button:hover {
	background-color: var(--hover-color);
}
/* /Popup */


/* Brands */
#slider-brands {
	background-color: var(--text-dark);
}
#listing-brands .brand-item,
#slider-brands .brand-item {
	height: 80px;
	width: 160px;
	margin: 0 20px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
@media (prefers-color-scheme: dark) {
	#listing-brands .brand-item,
	#slider-brands .brand-item {
		filter: invert(100%);
  	}
}
#listing-brands .brand-item.darkonly,
#slider-brands .brand-item.darkonly {
	filter: invert(0%);
}
#listing-brands,
#slider-brands {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: gray;
}
.slider-brands-line {
	height: 80px;
	overflow: hidden;
}
.slider-brands-line.right table {
	animation: 60s linear 0s infinite running sliderbrandsanimationreverted;
}
.slider-brands-line.left table {
	animation: 60s linear 0s infinite running sliderbrandsanimation;
}
@keyframes sliderbrandsanimationreverted {
	0% {
		transform: translateX(-33.33%);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes sliderbrandsanimation {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-33.33%);
	}
}
#listing-brands .brand-item-wrapper {
	width: 25%;
	height: 80px;
	float: left;
	margin-bottom: 40px;
}
#listing-brands .brand-item-wrapper .brand-item {
	width: 100%;
}
/* /Brands */


/* Slider */
.urban-slider {
	position: relative;
}
.urban-slider .urban-slide-background {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.urban-slider .urban-slide-overlay {
	display: flex;
}
.urban-slider .urban-slide-content {
	display: block;
	width: 100%;
	align-self: flex-end;
}
.urban-slider .slick-arrow {
	position: absolute;
	top: 50%;
	width: 48px;
	height: 48px;
	background-color: #000;
	background-image: url('/wp-content/themes/hillsons/images/arrow.svg');
	background-position: center center;
	background-size: 24px 24px;
	background-repeat: no-repeat;
	border: none;
	border-radius: 24px !important;
	overflow: hidden;
	transition: background 0.3s;
	color: transparent;
	z-index: 9;
	cursor: pointer;
}
.urban-slider .slick-arrow.slick-prev {
	right: auto;
	left: 20px;
	border-radius: 24px !important;
	transform: translateY(-50%) rotate(180deg);
}
.urban-slider .slick-arrow.slick-prev:focus,
.urban-slider .slick-arrow.slick-prev:hover {
	background-color: var(--hover-color);
	border-radius: 24px !important;
}
.urban-slider .slick-arrow.slick-next {
	right: 20px;
	left: auto;
	border-radius: 24px !important;
	transform: translateY(-50%);
}
.urban-slider .slick-arrow.slick-next:focus,
.urban-slider .slick-arrow.slick-next:hover {
	background-color: var(--hover-color);
	border-radius: 24px !important;
}
/* /Slider */


/* Jobs */
.job-item {
	border-bottom: 1px solid #000;
}
.job-item a {
	display: block;
	padding: 20px;
}
.job-item-title {
	display: block;
	position: relative;
	padding-right: 32px;
}
.job-item-arrow {
	position: absolute;
	top: 5px;
	right: 0;
	width: 16px;
	height: 16px;
	line-height: 16px;
	pointer-events: none;
	transition: all 0.3s;
}
.job-item-arrow svg {
	display: inline-block;
	width: 16px;
	height: 16px;
	fill: #000;
}
.job-item a:hover .job-item-arrow {
	right: -10px;
}
/* /Jobs */


/* Ticker */
#tickerwrapper {
	width: 100vw;
	height: 40px;
	overflow: hidden;
	z-index: 999;
}
#ticker {
	width: 400vw;
	height: 40px;
	box-sizing: content-box;
	background-color: var(--primary-color);
	white-space: nowrap;
}
#ticker .tickerbar {
	display: inline-block;
	height: 40px;
	line-height: 40px;
    font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
	white-space: nowrap;
	text-transform: uppercase;
	box-sizing: content-box;
	text-decoration: none;
	color: var(--text-light);
 	-webkit-animation-iteration-count: infinite; 
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: var(--animtime);
	animation-duration: var(--animtime);
}
.ticker-icon {
	width: 16px;
	height: 16px;
	display: inline-block;
	border: none;
	margin: 0 4px 0 2px;
	fill: var(--ticker-color);
	vertical-align: middle;
}
.ticker-placeholder {
	height: 40px;
}
@-webkit-keyframes ticker {
	0% {
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	  visibility: visible;
	}
	100% {
	  -webkit-transform: translate3d(-100%, 0, 0);
	  transform: translate3d(-100%, 0, 0);
	}
}
@keyframes ticker {
	0% {
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	  visibility: visible;
	}
	100% {
	  -webkit-transform: translate3d(-100%, 0, 0);
	  transform: translate3d(-100%, 0, 0);
	}
}
/* /Ticker */


/* Bento */
.bento-grid-1 {
	display: grid;
	grid-template-columns: repeat(2, 1fr) 2fr;
	grid-template-rows: 0.6fr 4.1fr 0.6fr 4.1fr 0.6fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.bento-grid-1 .c-col {
	background-color: #888;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: var(--rounded-radius);
	min-height: 360px;
}
.bento-grid-1 .c-col.c-col-1 { grid-area: 2 / 1 / 4 / 2; }
.bento-grid-1 .c-col.c-col-2 { grid-area: 4 / 1 / 6 / 2; }
.bento-grid-1 .c-col.c-col-3 { grid-area: 1 / 2 / 3 / 3; }
.bento-grid-1 .c-col.c-col-4 { grid-area: 3 / 2 / 5 / 3; }
.bento-grid-1 .c-col.c-col-5 { grid-area: 2 / 3 / 6 / 4; }

.bento-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1.2fr 7.6fr 1.2fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.bento-grid-2 .c-col {
	background-color: #888;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: var(--rounded-radius);
	min-height: 360px;
	padding-bottom: 150%;
}
.bento-grid-2 .c-col.c-col-1 { grid-area: 2 / 1 / 4 / 2; }
.bento-grid-2 .c-col.c-col-2 { grid-area: 1 / 2 / 3 / 3; } 

.bento-grid-3 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1.2fr 7.6fr 1.2fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.bento-grid-3 .c-col {
	background-color: #888;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: var(--rounded-radius);
	min-height: 360px;
	padding-bottom: 150%;
}
.bento-grid-3 .c-col.c-col-1 { grid-area: 1 / 1 / 3 / 2; }
.bento-grid-3 .c-col.c-col-2 { grid-area: 2 / 2 / 4 / 3; } 
/* Bento */


/* Footer */
#footer {
	background-color: #000;
}
#footer .footer-grid {
	display: grid;
	grid-template-columns: 320px 1fr 320px;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
#footer .footer-links ul {
	display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#footer .footer-links ul li {
	float: left;
}
#footer .footer-links ul li svg {
	display: inline-block;
	width: 38px;
	height: 38px;
	margin-right: 20px;
	margin-top: 5px;
}
#footer .footer-links ul li a svg path {
	transition: all 0.3s;
}
#footer .footer-links ul li a svg path.bg {
	fill: var(--text-dark);
}
#footer .footer-links ul li a svg path.front {
	fill: var(--text-light);
}
#footer .footer-links ul li a:hover svg path.bg {
	fill: var(--text-light);
}
#footer .footer-links ul li a:hover svg path.front {
	fill: var(--hover-color);
}
#footer .footer-menu {
	padding-top: 12px;
}
#footer .footer-menu ul {
	display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#footer .footer-menu ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
#footer .footer-menu ul li::before {
	content: '/';
}
#footer .footer-menu ul li:first-child::before {
	content: '';
}
#footer .footer-menu ul li a {
	margin-left: 6px;
}
#footer .footer-menu ul li:first-child a {
	margin-left: 0;
}
#footer .footer-copy {
	padding-top: 12px;
}
/* /Footer */


.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.columns-2-desktop {
	column-count: 2;
	column-gap: 60px;
}


.p0 {
	padding: 0;
}
.m0 {
	margin: 0;
}
.p10 {
	padding: 10px;
}
.p20 {
	padding: 20px;
}
.p30 {
	padding: 30px;
}
.p40 {
	padding: 40px;
}
.pt10 {
	padding-top: 10px;
}
.pt20 {
	padding-top: 20px;
}
.pt30 {
	padding-top: 30px;
}
.pr10 {
	padding-right: 10px;
}
.pr20 {
	padding-right: 20px;
}
.pr30 {
	padding-right: 30px;
}
.pl10 {
	padding-left: 10px;
}
.pl20 {
	padding-left: 20px;
}
.pl30 {
	padding-left: 30px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb30 {
	padding-bottom: 30px;
}
.py10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.py20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.py30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.mt0 {
	margin-top: 0;
}
.mb0 {
	margin-bottom: 0;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.ml0 {
	margin-left: 0;
}
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 20px;
}
.ml30 {
	margin-left: 30px;
}
.ml40 {
	margin-left: 40px;
}
.mr0 {
	margin-right: 0;
}
.mr10 {
	margin-right: 10px;
}
.mr20 {
	margin-right: 20px;
}
.mr30 {
	margin-right: 30px;
}
.mr40 {
	margin-right: 40px;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.w100 {
	width: 100% !important;
}


/* Responsive */
@media only screen and (max-width: 1280px) {

	/* Mobile Header */
	#header .header-grid {
		grid-template-columns: 0 160px 1fr 340px;
	}
	/* /Mobile Header */
	
}
@media only screen and (max-width: 1024px) {

	/* Content */
	.c-content-inner {
		padding: 0 40px;
	}
	/* /Content */

	/* Grid */
	.c-grid-4-4-4 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-6-6 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-3-3-3-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	/* /Grid */

	/* Mobile Header */
	#header .header-grid {
		grid-template-columns: 44px 1fr 0 140px;
		grid-column-gap: 0;
		grid-row-gap: 0;
	}
	body.mobilemenuoff #header .header-grid {
		grid-template-columns: 0 1fr 0 140px;
	}
	#header .header-icon {
		display: block;
	}
	body.mobilemenuoff #header .header-icon {
		display: none;
	}
	#header .header-menu,
	#header .header-switch,
	#header .header-social {
		display: none;
	}
	/* /Mobile Header */

}
@media only screen and (max-width: 768px) {

	body, button, input, select, textarea {
		font-size: 14px;
		line-height: 22px;
	}

	/* Content */
	.c-content-inner {
		padding: 0 20px;
	}
	/* /Content */

	/* Formatting */
	.mobileonly {
		display: block;
	}
	.desktoponly {
		display: none;
	}

	.textlarge {
		font-size: 52px;
		line-height: 60px;
	}

	h1, .h1 {
		font-size: 26px;
		line-height: 34px;
	}
	h2 {
		font-size: 24px;
		line-height: 32px;
	}
	h3 {
		font-size: 22px;
		line-height: 30px;
	}
	h4 {
		font-size: 20px;
		line-height: 28px;
	}
	h5 {
		font-size: 18px;
		line-height: 26px;
	}
	/* /Formatting */

	/* Grid */
	.c-grid {
		clear: both;
		grid-row-gap: 30px;
		width: 100%;
	}
	.c-grid-1-10-1 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
		grid-row-gap: 60px;
	}
	.c-grid-1-5-1-4-1 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
		grid-row-gap: 0;
	}
	.c-grid-3-3-3-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-2-8-2,
	.c-grid-3-1-8,
	.c-grid-3-3-6,
	.c-grid-3-6-3,
	.c-grid-4-1-7,
	.c-grid-5-2-5,
	.c-grid-5-1-6,
	.c-grid-6-1-5,
	.c-grid-6-2-4,
	.c-grid-6-3-3,
	.c-grid-7-1-4,
	.c-grid-8-1-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-1-11,
	.c-grid-2-10,
	.c-grid-3-9,
	.c-grid-4-8,
	.c-grid-5-7,
	.c-grid-6-6,
	.c-grid-7-5,
	.c-grid-8-4,
	.c-grid-9-3,
	.c-grid-10-2,
	.c-grid-11-1 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	/* /Grid */

	/* Spacers */
	.c-spacer {
		height: 60px;
	}
	.c-spacer-halfhalf,
	.c-spacer-small {
		height: 15px;
	}
	.c-spacer-half {
		height: 30px;
	}
	.c-spacer-double {
		height: 120px;
	}
	.c-spacer-section {
		height: 240px;
	}
	.c-spacer-header {
		height: 116px;
	}
	/* /Spacers */


	/* Spacers */
	.c-spacer {
		clear: both;
		height: 30px;
	}
	.c-spacer-halfhalf,
	.c-spacer-small {
		clear: both;
		height: 10px;
	}
	.c-spacer-half {
		clear: both;
		height: 15px;
	}
	.c-spacer-double {
		clear: both;
		height: 60px;
	}
	.c-spacer-section {
		clear: both;
		height: 120px;
	}
	/* /Spacers */


	.bento-grid-1,
	#footer .footer-grid {
		display: block;
	}
	.bento-grid-1 .c-col {
		min-height: 420px;
		margin-bottom: 20px;
	}
	
	#footer .footer-links,
	#footer .footer-copy {
		text-align: center;
	}

	.columns-2-desktop {
		column-count: auto;
		column-gap: 0;
	}

}
/* Responsive */
