:root {
	--font-size: 18px;
	--padding-l-r: 80px;
	--header-height: 65px;
	--off-black: #2F3237;
	--off-black-1: #1A1C1E;
	--red: #F39393;
	--yellow: #D6960E;
}
@media all and (max-width: 1600px) {
	:root {
		--padding-l-r: 40px;
	}
}
@media all and (max-width: 1400px) {
	:root {
		--font-size: 17px;
	}
}
@media all and (max-width: 800px) {
	:root {
		--padding-l-r: 20px;
		--font-size: 16px;
	}
}

html {
	font-family: 'Inter', sans-serif;
	line-height: 1.44;
}
body {
	background-color: #fff;
	color: var(--off-black);
	fill: var(--off-black);
	overflow-y: scroll;
}
a:hover {
	color: var(--yellow) !important;
	fill: var(--yellow) !important;
}
hr {
	background-color: #d1d1d1;
	border-color: #d1d1d1;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.44;
}
.alt-font {
	/* font-family: serif; */
}
.highlight {
	color: var(--red);
}
.highlight-2 {
	color: var(--yellow);
}
.white-text {
	color: #fff;
	fill: #fff;
}
.h-btn {
	stroke: #fff;
}
.h-btn:hover {
	stroke: var(--yellow) !important;
}
::selection {
	color: var(--yellow);
	background: #ddd;
}
::-moz-selection {
	color: var(--yellow);
	background: #ddd;
}

.slick-gallery {
	touch-action: auto !important; /* allow pinch to zoom */
}
/* .slick-gallery .slick-item img {
	width: auto;
	height: 44vw;
	max-height: 840px;
} */
/* .slick-prev,
.slick-next {
	width: 50px;
	height: 50px;
	margin-top: -25px;
} */
/* .slick-prev {
	background: url("../media/arrow-left.svg") no-repeat center center;
}
.slick-next {
	background: url("../media/arrow-right.svg") no-repeat center center;
} */
/* .slick-area {
	position: absolute;
	bottom: 0;
	width: 20%;
	height: 100%
}
.slick-area.left {
	left: 0;
	cursor: url('../media/cursor-left.png') 29 25, auto;
}
.slick-area.right {
	right: 0;
	cursor: url('../media/cursor-right.png') 29 25, auto;
}
*/
.slick-dots {
	position: relative;
	left: auto;
	bottom: auto;
	margin-top: 40px;
}

.slick-dots li button {
	width: 9px;
	height: 9px;
	border: none !important;
	background-color: #d9d9d9;
}
.slick-dots li:not(.slick-active) button:hover {
	background-color: #000 !important;
}
.slick-dots li.slick-active button {
	background-color: #000;
}
/* .slick-gallery[data-lazyload="ondemand"] .slick-item img[data-lazy]::after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 50%;
} */
/* @media all and (max-width: 800px) {
	.slick-area {
		display: none;
	}
} */

/* .social-shares:not(.text) > ul > li,
.social-links:not(.text) > ul > li {
	width: 1.3rem;
}
.social-shares > ul > li:not(:first-child),
.social-links > ul > li:not(:first-child) {
	margin-left: 0.7rem;
} */
.social-shares > ul > li a:hover,
.social-links > ul > li a:hover {
	border-color: var(--yellow);
}
.social-shares .linkedin,
.social-shares .email {
	display: none !important;
}

input:not([type="submit"]),
textarea,
select {
	color: #000;
	border-color: #000;
	padding: 0.8em 0.65em;
	/* background-color: transparent !important; */ /* important for apple */
}
input[type="radio"],
input[type="checkbox"] {
	padding: 0.5em;
}
input[type=radio]:checked {
	background-image: url('../media/radio.svg');
}
input[type=checkbox]:checked {
	background-image: url('../media/checkmark.svg');
}
input:not([type="submit"]):focus,
textarea:focus {
	border-color: var(--yellow) !important;
}
.btn,
.text-content .btn,
button,
input[type="submit"] {
	color: #000;
	background-color: transparent;
	border-color: #000;
	padding: 1.15em 3.2em;
    border-radius: 2em;
    line-height: 1;
}
.white-text .btn,
.text-content.white-text .btn
.white-text input[type="submit"] {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
}
.btn:hover,
.text-content .btn:hover,
button:hover,
input[type="submit"]:hover {
	background-color: var(--yellow) !important;
	border-color: var(--yellow) !important;
}
.btn:hover,
.text-content .btn:hover {
	color: #fff !important;
	fill: #fff !important;
}

section:not(.no-margin) {
	margin-bottom: 90px;
}
section.large-margin {
	margin-bottom: 130px;
}
section.largest-margin {
	margin-bottom: 175px;
}
@media all and (max-width: 800px) {
	section:not(.no-margin) {
		margin-bottom: 40px;
	}
	section.large-margin {
		margin-bottom: 50px;
	}
	section.largest-margin {
		margin-bottom: 70px;
	}
}
.archive #title-block .title-type {
	display: none;
}

.block-title {
	margin-bottom: 5.55rem;
}
@media all and (max-width: 800px) {
	.block-title {
		margin-bottom: 40px;
	}
}

.container:not(.limited-width) {
	max-width: none;
}

#loading-screen {
	z-index: 110;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: var(--off-black-1);
	fill: #fff;
}
#loading-screen > div {
	width: 13rem;
	margin: 0 auto;
}
@media all and (max-width: 1200px) {
	#loading-screen > div {
		width: 10rem;
	}
}
@media all and (max-width: 800px) {
	#loading-screen > div {
		width: 7rem;
	}
}

.text-content {
	font-size: 1rem;
}
.text-content.larger-line-height {
	line-height: 1.53;
}
.text-content h1,
.text-content h2 {
	font-size: 3.1rem; /* 56px */
    font-weight: 300;
	line-height: 1.2;
    margin-bottom: 0.8em;
}
.text-content h3 {
	font-size: 2.3rem; /* 43px */
}
.text-content h4 {
	font-size: 2rem; /* 36px */
}
.text-content *.smallest-font { /* 14px */
	font-size: 0.77rem;
}
.text-content.smallest-font {
	font-size: 0.77rem;
}
.text-content *.smaller-font { /* 16px */
	font-size: 0.89rem;
}
.text-content.smaller-font {
	font-size: 0.89rem;
}
.text-content *.larger-font { /* 21px */
	font-size: 1.16rem;
}
.text-content.larger-font {
	font-size: 1.16rem;
}
.text-content *.largest-font { /* 24px */
	font-size: 1.33rem;
}
.text-content.largest-font {
	font-size: 1.33rem;
}
#main-block .text-content.entry-content a:not(.btn, .button) {
	text-decoration: underline;
}
.text-content .wp-caption:not(.gallery-item) {
	width: auto !important; /* fix wp inline width */
}
@media all and (max-width: 1400px) {
	.text-content h1,
	.text-content h2 {
		font-size: 2.8rem;
	}
	.text-content h3 {
		font-size: 2.15rem;
	}
	.text-content h4 {
		font-size: 1.9rem;
	}
}
@media all and (max-width: 1200px) {
	.text-content h1,
	.text-content h2 {
		font-size: 2.5rem;
	}
	.text-content h3 {
		font-size: 1.95rem;
	}
	.text-content h4 {
		font-size: 1.8rem;
	}
}
@media all and (max-width: 800px) {
	.text-content h1,
	.text-content h2 {
		font-size: 2.2rem;
	}
	.text-content h3 {
		font-size: 1.8rem;
	}
	.text-content h4 {
		font-size: 1.6rem;
	}
	.text-content *.smallest-font {
		font-size: 0.85rem;
	}
	.text-content.smallest-font {
		font-size: 0.785rem;
	}
	.text-content *.largest-font {
		font-size: 1.15rem;
	}
	.text-content.largest-font {
		font-size: 1.15rem;
	}
}

main > section .grid:not(.no-h-margin) {
	margin-left: -2.2rem;
}
main > section .grid:not(.no-h-margin) > .col {
	padding-left: 2.2rem;
}

.post-list > ul {
	margin-left: -2.5%;
	margin-top: -120px;
}
.post-list > ul > li {
	width: 22.5%;
	margin-left: 2.5%;
	margin-top: 120px;
}
.post-list.type-retailer > ul {
	margin-left: 0;
	margin-top: 0;
}
.post-list.type-retailer > ul > li {
	width: 100%;
	margin-left: 0;
	margin-top: 0;
	border-bottom: 1px solid #d1d1d1;
}
@media all and (max-width: 1200px) {
	.post-list > ul {
		margin-top: -80px;
		margin-left: -4%;
	}
	.post-list > ul > li {
		width: 46%;
		margin-left: 4%;
		margin-top: 80px;
	}
}
@media all and (max-width: 800px) {
	.post-list > ul {
		margin-left: 0;
		margin-top: -35px;
	}
	.post-list > ul > li {
		width: 100%;
		margin-left: 0;
		margin-top: 35px;
	}
}

.entry-summary a > .image::after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	background: linear-gradient(to right,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 100%);

	-o-transition: opacity 0.2s, visibility 0.2s;
	-moz-transition: opacity 0.2s, visibility 0.2s;
	-webkit-transition: opacity 0.2s, visibility 0.2s;
	transition: opacity 0.2s, visibility 0.2s;
}
.entry-summary a:hover > .image::after {
	opacity: 1;
	visibility: visible;
}
.entry-summary .image > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.type-post .entry-summary a > .text-content {
	padding-top: 1.5rem;
	max-width: 17.5rem;
}
.entry-summary .text-content h4 {
	font-size: 1.16em;
}
.entry-summary .text-content .top {
	display: flex;
	flex-direction: row;
	margin-bottom: 1em;
}
.entry-summary .text-content .top .term-list {
	font-size: 1em;
	text-transform: uppercase;
	margin-bottom: 0;
}
.entry-summary .text-content .top .date::before {
	content: '|';
	font-size: 0.95em;
	margin-left: 0.8em;
	margin-right: 0.8em;
}
@media all and (max-width: 1200px) {
	.entry-summary .text-content h4 {
		font-size: 1.05em;
	}
}

/* retailer */
.type-retailer .entry-summary a > .text-content {
	padding: 2.35rem 0;
}
li.type-retailer:first-child .entry-summary a > .text-content {
	padding-top: 0;
}
.type-retailer .entry-summary a > .text-content h4 {
	font-size: 1em;
}
@media all and (max-width: 800px) {
	.type-retailer .entry-summary a > .text-content {
		padding: 1.5rem 0;
	}
	.type-retailer .entry-summary a > .text-content h4 {
		font-size: 0.9em;
	}
}

.line-svg {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	position: relative;
	font-size: 1rem;
	font-weight: bold;
}
/* .line-svg > span {
	flex-shrink: 0;
} */
.line-svg > svg {
    stroke-width: 2px;
    stroke: var(--yellow);
    width: 85px;
    margin-left: 2rem;
	flex-shrink: 0;
}
.line-svg:hover {
	color: inherit !important;
}
.line-svg > svg,
.line-svg > svg > .arrow-line {
	-o-transition: transform 0.2s;
	-moz-transition: transform 0.2s;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}
.line-svg:hover > svg {
	-webkit-transform: translateX(-0.7rem);
	-ms-transform: translateX(-0.7rem);
	transform: translateX(-0.7rem);
}
.line-svg > svg > .arrow-line {
	transform-origin: right;
}
.line-svg:hover > svg > .arrow-1 {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}
.line-svg:hover > svg > .arrow-2 {
	-webkit-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

/* .line-svg::after {
	position: relative;
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 2rem;
	height: 1px;
	width: 4.66rem;
	background-color: var(--yellow);
} */

/* lead-block */
#lead-block > .container > .scroll-to {
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2.5rem;
	margin: 0 auto;
	width: 2.25rem;
	fill: #fff;
}
#lead-block.simple > .container > .scroll-to {
	display: none;
}
#lead-block > .container > .video-container {
    position: relative;
    font-size: 0;
    height: 100vh;
}
#lead-block.no-content > .container > .video-container {
	background-color: var(--off-black-1);
}
#lead-block.simple > .container > .video-container {
    height: 50vh;
}
#lead-block > .container > .video-container > img {
	z-index: -1;
}
#lead-block > .container > .video-container > img,
#lead-block > .container > .video-container > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#lead-block > .container > .video-container > img,
#lead-block > .container > .video-container > .text-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#lead-block > .container > .video-container > .text-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 55rem;
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--padding-l-r);
}
@media all and (max-width: 800px) {
	#lead-block:not(.no-margin) {
		margin-bottom: 50px !important;
	}
	#lead-block.simple > .container > .video-container {
	    height: 30vh;
	}
}


/* accordion */
.accordion > li {
	border-bottom: 1px solid #d1d1d1;
}
.accordion > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1;
	padding: 0.7em 0 0.7em 0;
}
.accordion > li > a:hover {
	color: inherit !important;
}
.accordion > li > a > svg {
	height: 0.6em;
	min-width: 0.6em;
	margin-right: 0.25em;

	-o-transition: fill 0.2s, transform 0.2s;
	-moz-transition: fill 0.2s, transform 0.2s;
	-webkit-transition: fill 0.2s, -webkit-transform 0.2s;
	transition: fill 0.2s, transform 0.2s;
}
.accordion > li > a > span {
	line-height: 1.4;
}
.accordion > li.active > a {
	color: var(--yellow);
	fill: var(--yellow);
}
.accordion > li.active > a > svg {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.accordion > li > .text-content {
	max-width: 26.66rem;
	padding: 0.5em 0 1.7em 0;
}
.company-accordion > li .content,
.accordion > li:not(:first-child) > .text-content {
	display: none;
}
.accordion > li > .text-content > p > a {
	color: var(--yellow);
}
@media all and (max-width: 800px) {
	.accordion > li > a {
		font-size: 1.5rem;
	}

}


/* tabs-section */
section.tabs-section > .container .grid:not(.no-v-margin) {
	padding-top: 55px;
	align-items: flex-end;
	margin-top: -60px;
	margin-left: -60px;
}
section.tabs-section > .container .grid:not(.no-v-margin) > .col {
	padding-top: 60px;
	padding-left: 60px;
}
section.tabs-section .tabs-nav {
	z-index: 1;
	position: relative;
}
section.tabs-section .tabs-nav ul > li.active,
section.tabs-section .tabs-nav ul > li > a:hover {
	color: var(--yellow) !important;
}
section.tabs-section .tabs-texts > div:not(:first-child) {
	display: none;
}
section.tabs-section .tabs-texts > div .slick-gallery .slick-dots {
	position: relative;
	left: auto;
	bottom: auto;
	margin-top: 40px;
}
@media all and (max-width: 1200px) {
	section.tabs-section > .container .grid {
		padding-top: 35px;
		margin-top: -40px;
		margin-left: -40px;
	}
	section.tabs-section > .container .grid > .col {
		padding-top: 40px;
		padding-left: 40px;
	}
}
@media all and (max-width: 800px) {
	section.tabs-section .tabs-texts > div .slick-gallery .slick-dots {
		margin-top: 20px;
	}
}


/* timeline scroll */
.timeline-block.timeline {
	position: relative;
}
.timeline-block.timeline .line {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 1rem;
	bottom: 1.1rem;
	left: 8rem;
	width: 0.7rem;
	padding-top: 0.35rem;
	padding-bottom: 0.35rem;
	margin-top: -0.35rem;
	margin-bottom: -0.35rem;
}
.timeline-block.timeline .line hr {
	position: relative;
	overflow: unset;
	width: 1px;
	height: 100%;
	margin: 0 auto;
	background-color: #d9d9d9;
}
.timeline-block.timeline .line hr::before,
.timeline-block.timeline .line hr:last-child::after {
	content: '';
	position: absolute;
	top: -0.35rem;
	left: -0.35rem;
	width: 0.7rem;
	height: 0.7rem;
	background-color: #d9d9d9;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.timeline-block.timeline .line hr:last-child::after {
	top: auto;
	bottom: -0.35rem;
}
.timeline-block.timeline .line.dark-line {
	z-index: 1;
	clip-path: inset(0 0 100% 0);

	/* -o-transition: clip-path 0.2s;
	-moz-transition: clip-path 0.2s;
	-webkit-transition: clip-path 0.2s;
	transition: clip-path 0.2s; */
}
.timeline-block.timeline .line.dark-line hr,
.timeline-block.timeline .line.dark-line hr::before,
.timeline-block.timeline .line.dark-line hr:last-child::after {
	background-color: var(--off-black);
}
.timeline-block.timeline > ul > li {
	position: relative;
}
.timeline-block.timeline > ul > li:not(:last-child) {
	margin-bottom: 4.2rem;
}
.timeline-block.timeline > ul > li > .point {
	width: 8rem;
}
.timeline-block.timeline > ul > li > .description {
	position: absolute;
	left: 12rem;
	right: 0;
	top: 50%;
	max-width: 44.5rem;

	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.timeline-block.timeline > ul > li h4 {
	font-weight: 300;
	line-height: 1;
}
@media all and (max-width: 800px) {
	.page-template-company #block-2 > .container > .text-content {
		margin-top: 55px;
	}
	.page-template-company #block-3 hr {
		margin-bottom: 55px;
	}
	.page-template-company #block-4 .block-title {
		padding-top: 3rem;
		padding-bottom: 1.5rem;
	}
	.timeline-block.timeline > ul > li > .point {
		width: auto;
	}
	.timeline-block.timeline .line {
		display: none;
	}
	.timeline-block.timeline > ul > li {
		display: flex;
		gap: 1.5rem;
	}
	.timeline-block.timeline > ul > li:not(:last-child) {
		margin-bottom: 2.5rem;
	}
	.timeline-block.timeline > ul > li > .description {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		max-width: none;

		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}