:root {
  --color-white: #fffdf8;
	--color-black: #000000;
	--color-cream: #E9E6E0;
	--color-red: #FA3921;
	--color-blue: #55C0CA;
	--color-grey: #CDCDCD;
	--color-pink: #f29797;
	--color-teal: #00363d;
	--color-green: #A3FFAB;
	--line-width: 1px;
}
@media (min-width: 768px) {
	:root {
		--line-width: 2px;
	}
}



@font-face {
	font-family: 'ABC Monument Grotesk';
	src:
		url('/fonts/ABCMonumentGrotesk-Regular.woff2') format('woff2'),
		url('/fonts/ABCMonumentGrotesk-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ABC Monument Grotesk';
	src:
		url('/fonts/ABCMonumentGroteskMono-Medium.woff2') format('woff2'),
		url('/fonts/ABCMonumentGroteskMono-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}



/* Light Italic */
@font-face {
	font-family: 'Gestura Display';
	src:
		url('/fonts/GesturaDisplay-LightItalic.woff2') format('woff2'),
		url('/fonts/GesturaDisplay-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

/* Regular Italic */
@font-face {
	font-family: 'Gestura Display';
	src:
		url('/fonts/GesturaDisplay-RegularItalic.woff2') format('woff2'),
		url('/fonts/GesturaDisplay-RegularItalic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}



/* Semibold */
@font-face {
	font-family: 'Rework Display';
	src:
		url('/fonts/ReworkDisplay-Semibold.woff2') format('woff2'),
		url('/fonts/ReworkDisplay-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* Bold */
@font-face {
	font-family: 'Rework Display';
	src:
		url('/fonts/ReworkDisplay-Bold.woff2') format('woff2'),
		url('/fonts/ReworkDisplay-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}




html {
	width: 100%;
	scroll-behavior: smooth;
}
body {
	background-color: var(--color-cream);
	color: var(--color-black);
	font-family: 'ABC Monument Grotesk', Helvetica, Arial, sans-serif; 
	font-weight: 400;
	font-style: normal;
	line-height: 1.3;
}

@media (max-width: 767px) {
	body {
		font-size: 12px;
	}
}
@media (min-width: 768px) {
	body {
		font-size: 14px;
	}
}
@media (min-width: 992px) {
	body {
		font-size: 17px;
	}
}
@media (min-width: 1400px) {
	body {
		font-size: 16px;
	}
}

a {
	color: var(--color-black);
	text-decoration: none;
}
a:hover {
	color: var(--color-black);
}




.img_full {
	display: block;
	width: 100%;
	height: auto;
}
.img_square {
	width: 100%;
	padding-bottom: 100%;
	background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
}

.relative {
	position: relative;
}
.abs_100 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gestura {
	font-family: 'Gestura Display', serif;
	line-height: 1;
}
.rework {
	font-family: 'Rework Display', sans-serif;
	line-height: 1;
}

.font_700 {
	font-weight: 700;
}
.font_600 {
	font-weight: 600;
}
.font_500 {
	font-weight: 500;
}
.font_400 {
	font-weight: 400;
}
.font_300 {
	font-weight: 300;
}




.header {
	font-weight: 600;
	text-transform: uppercase;
	font-family: 'Rework Display';
	line-height: 1;
}
.header em {
	font-weight: 400;
	text-transform: none;
	font-family: 'Gestura Display';
}


h1, h2, h3 {
	margin-bottom: 0;
	line-height: inherit;
}
h3 {
	font-size: 50px;
}

.header_huge {
	font-size: 100px;
}
.header_big {
	font-size: 38px;
}
.header_med {
	font-size: 30px;
}
.header_small {
	font-size: 16px;
}
.space_top {
	padding-top: 30px;
}
.space_top_big {
	padding-top: 40px;
}
.space_bot {
	padding-bottom: 30px;
}
.space_bot_big {
	padding-bottom: 40px;
}
/* tablet */
@media (min-width: 768px) {	
	h3 {
		font-size: 100px;
	}
	.header_huge {
		font-size: 140px;
	}
	.header_big {
		font-size: 65px;
	}
	.header_med {
		font-size: 45px;
	}
	.header_small {
		font-size: 22px;
	}
	.space_top {
		padding-top: 40px;
	}
	.space_top_big {
		padding-top: 60px;
	}
	.space_bot {
		padding-bottom: 40px;
	}
	.space_bot_big {
		padding-bottom: 60px;
	}
}

@media (min-width: 992px) {
	h3 {
		font-size: 130px;
	}
	.header_huge {
		font-size: 150px;
	}
	.header_big {
		font-size: 87px;
	}
	.header_med {
		font-size: 50px;
	}
	.header_small {
		font-size: 24px;
	}
	.space_top {
		padding-top: 50px;
	}
	.space_top_big {
		padding-top: 70px;
	}
	.space_bot {
		padding-bottom: 50px;
	}
	.space_bot_big {
		padding-bottom: 70px;
	}
}
/* desktop */
@media (min-width: 1200px) {
	h3 {
		font-size: 152px;
	}
	.header_huge {
		font-size: 160px;
	}
	.header_big {
		font-size: 105px;
	}
	.header_med {
		font-size: 50px;
	}
	.header_small {
		font-size: 24px;
	}
	.space_top {
		padding-top: 60px;
	}
	.space_top_big {
		padding-top: 120px;
	}
	.space_bot {
		padding-bottom: 60px;
	}
	.space_bot_big {
		padding-bottom: 120px;
	}
}
/* large desktop */
@media (min-width: 1400px) {
	h3 {
		font-size: 179px;
	}
	.header_huge {
		font-size: 180px;
	}
	.header_big {
		font-size: 120px;
	}
	.header_med {
		font-size: 60px;
	}
	.header_small {
		font-size: 28px;
	}
	.space_top {
		padding-top: 64px;
	}
	.space_top_big {
		padding-top: 128px;
	}
	.space_bot {
		padding-bottom: 64px;
	}
	.space_bot_big {
		padding-bottom: 128px;
	}
}


.button {
	font-weight: 500;
	border: none;
	font-size: 14px;
	padding: 16px 20px;
	border: var(--line-width) solid transparent;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	background-color: var(--color-white);
	transition: border 0.2s ease, background-color 0.2s ease;
	line-height: 1;
	-webkit-appearance: none;
	border-radius: 0;
	white-space: nowrap;
}
.button:hover, .button_border {
	border: var(--line-width) solid var(--color-black);
}
@media (max-width: 767px) {
	.button {
		font-size: 10px;
		padding: 8px;
	}
}
.button_red_outline {
	color: var(--color-red);
	border-color: var(--color-red);
}
.button_white_outline {
	color: var(--color-white);
	border-color: var(--color-white);
}
.button_black_outline {
	color: var(--color-black);
	border-color: var(--color-black);
}

.button.bg_trans:hover {
	background-color: var(--color-white);
}

.bg_white {
	background-color: var(--color-white);
}
.bg_cream {
	background-color: var(--color-cream);
}
.bg_blue {
	background-color: var(--color-blue);
}
.bg_red {
	background-color: var(--color-red);
}
.bg_grey {
	background-color: var(--color-grey);
}
.bg_pink {
	background-color: var(--color-pink);
}
.bg_teal {
	background-color: var(--color-teal);
}
.bg_green {
	background-color: var(--color-green);
}
.bg_trans {
	background-color: transparent;
}

.bg_image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	/* min-height: 100svh; */
}

.red {
	color: var(--color-red);
}
.white {
	color: var(--color-white);
}
.pink {
	color: var(--color-pink);
}
.teal {
	color: var(--color-teal);
}
.cream {
	color: var(--color-cream);
}

.top_border {
	border-top: var(--line-width) solid var(--color-black);
}
.bottom_border {
	border-bottom: var(--line-width) solid var(--color-black);
}


#dmn-partner-widget {
	margin: auto;
}



.reveal_wrap {
	overflow: hidden;
	display: block;
	position: relative;
}

.reveal {
	display: block;
	will-change: transform;
}

.reveal_onload {
	transform: translateY(100%);
}
.reveal.is-revealed {
	transform: translateY(0) !important;
}

.text_reveal_lines .line {
	display: block;
	overflow: hidden;
}

.text_reveal_lines .line > div {
	display: block;
	will-change: transform, opacity;
}

.js-photo-reveal img {
	will-change: transform, opacity;
}



.info_header {
	cursor: pointer;
	position: relative;
	text-transform: uppercase;
}
.info_bottom_border {
	border-bottom: var(--line-width) solid var(--color-black);
}
.info_plus {
	float:right;
}
.info_block {
}
.info_block iframe {
	max-width: 100%;
}
.info_block img {
	max-width: 100%;
}



@media (max-width: 767px) {
	.info_header {
		font-size: 16px;
		padding: 20px 0;
	}
	.info_block {
		padding-top: 10px;
		padding-bottom: 30px;
		font-size: 14px;
	}
}
@media (min-width: 768px) {
	.info_header {
		font-size: 30px;
		padding: 22px 0;
	}
	.info_block {
		padding-top: 20px;
		padding-bottom: 60px;
		font-size: 20px;
	}
}
@media (min-width: 992px) {
	
	.info_header {
		font-size: 40px;
		padding: 30px 0;
	}
	.info_block {
		width: 50%;
		font-size: 20px;
	}
}

@media (min-width: 1200px) {
	.info_block {
		font-size: 20px;
	}
}
.accordion_panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease;
}

.accordion_panel.active {
	max-height: 10000px; /* large enough for your longest panel */
	opacity: 1;
}


.breaker {
	background-color: #000;
	height: var(--line-width);
}


.letter_none {
	letter-spacing: 0%;
}
.letter_plus_1 {
	letter-spacing: 1%;
}
.letter_plus_2 {
	letter-spacing: 2%;
}
.letter_plus_3 {
	letter-spacing: 3%;
}
.letter_plus_4 {
	letter-spacing: 4%;
}
.letter_minus_1 {
	letter-spacing: -1%;
}
.letter_minus_2 {
	letter-spacing: -2%;
}
.letter_minus_3 {
	letter-spacing: -3%;
}
.letter_minus_4 {
	letter-spacing: -4%;
}
.letter_minus_5 {
	letter-spacing: -5%;
}
.letter_minus_6 {
	letter-spacing: -6%;
}
.letter_minus_7 {
	letter-spacing: -7%;
}
.letter_minus_8 {
	letter-spacing: -8%;
}
.letter_minus_9 {
	letter-spacing: -9%;
}










/* tablet */
@media (min-width: 768px) {	
	
}
/* desktop (mid) */
@media (min-width: 992px) {

}
/* desktop */
@media (min-width: 1200px) {

}
/* large desktop */
@media (min-width: 1400px) {

}
