/*******************
  TITLES
*******************/

.title.huge > * {
	font-size: calc(5.25em + 2vw);
	line-height: 1em;
	font-weight: 700;
	text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
}
	@media screen and (max-width: 1000px) {
		.title.huge > * { font-size: calc(3.75em + 1.5vw); }
	}
.title.big > * {
	font-size: 2.5em;
	line-height: 1.2em;
	font-weight: 700;
}
.title.bigless > * {
	font-size: 2.185em;
	line-height: 1.2em;
	font-weight: 700;
}
	@media screen and (max-width: 1300px) {
		.title.bigless > * { font-size: 2em; }
	}
	@media screen and (max-width: 1150px) {
		.title.bigless > * { font-size: 1.85em; }
	}
.title.mediumplus > * {
	font-size: 1.875em;
	line-height: 1.25em;
	font-weight: 700;
}
	@media screen and (max-width: 1300px) {
		.title.mediumplus > * { font-size: 1.65em; }
	}
.title.medium > * {
	font-size: 1.5em;
	line-height: 1.25em;
	font-weight: 700;
}
.title.mediumless > * {
	font-size: 1.4em;
	line-height: 1.25em;
	font-weight: 400;
}
.title.small > * {
	font-size: 1.285em;
	line-height: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
}
.title.tiny > * {
	font-size: 1.1em;
	line-height: 1.8em;
	font-weight: 400;
}
.pretitle > * { font-size: 1.25em; text-transform: uppercase; }
	@media screen and (max-width: 700px) {
		.title.big > * { font-size: 2em; }
		.title.big-thin > * { font-size: 1.5em; }
		.title.medium > * { font-size: 1.25em; }
		.title.mediumless > * { font-size: 1.125em; }
		.title.small > * { font-size: 1.05em; }
/*		.title > * > br { display: none; }
*/	}



.pretitle {
	position: relative;
	display: inline-block;
	padding: 0.33em 0.75em;
}
.pretitle::before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--blue);
	transition: 0.3s 0.3s;
}
div.reveal .pretitle::before,
section.reveal .pretitle::before {
	width: 100%;
	opacity: 1;
}
.pretitle > * {
	z-index: 2;
	position: relative;
	font-family: 'Barlow Condensed',sans-serif;
	font-size: 1.625em;
	font-weight: 600;
	line-height: 1.25em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
}
.bg-blue .pretitle > * {
	color: var(--black);
}
.bg-blue .pretitle::before {
	background: #ffffff;
}

.pretitle.yellow {
	background: #fff;
}
.pretitle.yellow::before {
	background: var(--yellow);
}
.pretitle.yellow > * {
	color: var(--black);
}

.pretitle + .title {
	margin-top: 2.667em;
	margin-bottom: 1em;
}

	@media screen and (max-width: 550px) {
		.wrapper .pretitle {
			width: calc(100% + var(--gutter));
		}
	}